From 472eb3bd0d8598c2230fc1d8959fcc7e0a450cac Mon Sep 17 00:00:00 2001 From: ultramage Date: Sun, 17 Feb 2008 19:11:02 +0000 Subject: Reverting r12212. As expected, Linux is incompatible. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12213 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/common/socket.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/common/socket.c') diff --git a/src/common/socket.c b/src/common/socket.c index 58c7b6c5e..2dd860715 100644 --- a/src/common/socket.c +++ b/src/common/socket.c @@ -1153,6 +1153,8 @@ int socket_getips(uint32* ips, int max) fd = sSocket(AF_INET, SOCK_STREAM, 0); + memset(buf, 0x00, sizeof(buf)); + // The ioctl call will fail with Invalid Argument if there are more // interfaces than will fit in the buffer ic.ifc_len = sizeof(buf); @@ -1173,7 +1175,11 @@ int socket_getips(uint32* ips, int max) if( ad != INADDR_LOOPBACK && ad != INADDR_ANY ) ips[num++] = (uint32)ad; } + #if (defined(BSD) && BSD >= 199103) || defined(_AIX) || defined(__APPLE__) pos += ir->ifr_addr.sa_len + sizeof(ir->ifr_name); + #else// not AIX or APPLE + pos += sizeof(struct ifreq); + #endif//not AIX or APPLE } } sClose(fd); -- cgit v1.2.3-60-g2f50