Check for inet_addr/inet_aton.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3337 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guilhem Lavaux
1999-08-10 17:48:11 +00:00
parent 5391f772be
commit e96ac54e83
2 changed files with 12 additions and 0 deletions

View File

@@ -972,7 +972,15 @@ GSocketError GAddress_INET_SetHostName(GAddress *address, const char *hostname)
addr = &(((struct sockaddr_in *)address->m_addr)->sin_addr);
/* If it is a numeric host name, convert it now */
#if HAVE_INET_ATON
if (inet_aton(hostname, addr) == 0) {
#elif HAVE_INET_ADDR
/* Fix from Guillermo Rodriguez Garcia <guille@iies.es> */
if ( (addr->s_addr = inet_addr(hostname)) == -1 ) {
#else
/* Use gethostbyname by default */
if (1) {
#endif
struct in_addr *array_addr;
/* It is a real name, we solve it */