diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-21 18:35:31 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-21 18:35:31 +0000 |
commit | 24e8dbbb519e35a0d895d2978d45c6002f625dee (patch) | |
tree | 8681376a190e1ddde503f77b53bbc9853177480e /src | |
parent | 2fffc25ea8895cbd7748b4a84565091a91490995 (diff) | |
download | hercules-24e8dbbb519e35a0d895d2978d45c6002f625dee.tar.gz hercules-24e8dbbb519e35a0d895d2978d45c6002f625dee.tar.bz2 hercules-24e8dbbb519e35a0d895d2978d45c6002f625dee.tar.xz hercules-24e8dbbb519e35a0d895d2978d45c6002f625dee.zip |
- Whoops, somehow socket.h wasn't udpated correctly -.-
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7282 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/common/socket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/socket.h b/src/common/socket.h index 01165126e..4d8d36807 100644 --- a/src/common/socket.h +++ b/src/common/socket.h @@ -157,7 +157,7 @@ void set_defaultconsoleparse(int (*defaultparse)(char*)); //Resolves the hostname and stores the string representation of the string in ip.
//Meant to simplify calls to gethostbyname without the need of all the
//required network includes.
-int resolve_hostbyname(char* hostname, char *ip);
+in_addr_t resolve_hostbyname(char* hostname, char *ip);
extern unsigned int addr_[16]; // ip addresses of local host (host byte order)
extern unsigned int naddr_; // # of ip addresses
|