mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 00:52:38 +00:00
Solaris 10 doesn't know AF_LOCAL
This commit is contained in:
parent
736d447380
commit
78055bd4ca
@ -35,6 +35,10 @@
|
||||
#define ANET_ERR -1
|
||||
#define ANET_ERR_LEN 256
|
||||
|
||||
#if defined(__sun)
|
||||
#define AF_LOCAL AF_UNIX
|
||||
#endif
|
||||
|
||||
int anetTcpConnect(char *err, char *addr, int port);
|
||||
int anetTcpNonBlockConnect(char *err, char *addr, int port);
|
||||
int anetUnixConnect(char *err, char *path);
|
||||
|
Loading…
Reference in New Issue
Block a user