diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-22 01:12:52 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-22 01:12:52 +0000 |
commit | 8ecd9729cb7da906470a88decb77620ed3d7ffdf (patch) | |
tree | 23486d0498a03b341b7f2a6bca2543a7705fe63d /src/map/intif.c | |
parent | 0c74559d80136821bee587473b01dab5935ebf26 (diff) | |
download | hercules-8ecd9729cb7da906470a88decb77620ed3d7ffdf.tar.gz hercules-8ecd9729cb7da906470a88decb77620ed3d7ffdf.tar.bz2 hercules-8ecd9729cb7da906470a88decb77620ed3d7ffdf.tar.xz hercules-8ecd9729cb7da906470a88decb77620ed3d7ffdf.zip |
- Tested and fixed resolve_hostbyname.
- Applied said function around most of the code where needed. Removed includes for the OS/network system pretty much from every file (our socket.c file should handle this)
- Added clif_getip_long, which returns the ip as a long. Prevents having to include the files to define the int_addr structure in all files that include clif.h
- Made the GM mute request bypass the manner_system setting.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7285 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/intif.c')
-rw-r--r-- | src/map/intif.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index fff356d5c..09e83b831 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -2,20 +2,8 @@ // For more information, see LICENCE in the main folder
#include <sys/types.h>
-#ifdef _WIN32
-#include <winsock.h>
-#else
-#include <sys/socket.h>
-#include <netinet/in.h>
-#endif
#include <stdio.h>
#include <stdlib.h>
-#ifndef _WIN32
-#include <sys/time.h>
-#include <sys/ioctl.h>
-#include <unistd.h>
-#include <arpa/inet.h>
-#endif
#include <signal.h>
#include <fcntl.h>
#include <string.h>
|