Solaris 10 doesn't know AF_LOCAL

This commit is contained in:
Pieter Noordhuis 2010-12-23 11:09:07 +00:00
parent 736d447380
commit 78055bd4ca

View File

@ -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);