Removed the call to inet_aton() since the gethostbyname() function handles

the dotted-decimal case itself.
This commit is contained in:
Robert James Kaes 2002-04-18 21:53:33 +00:00
parent 60f0a86c75
commit 1db154464e
2 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2002-04-18 Robert James Kaes <rjkaes@flarenet.com>
* src/sock.c (lookup_domain): Removed the call to inet_aton()
since the gethostbyname() will handle the dotted-decimal case
anyway.
* src/reqs.c: Added a new show_stats field in the conn_s structure
so that we will process the client's headers properly before
trying to send a HTTP response back.

View File

@ -1,4 +1,4 @@
/* $Id: sock.c,v 1.29 2002-04-18 18:48:22 rjkaes Exp $
/* $Id: sock.c,v 1.30 2002-04-18 21:53:33 rjkaes Exp $
*
* Sockets are created and destroyed here. When a new connection comes in from
* a client, we need to copy the socket and the create a second socket to the
@ -50,11 +50,13 @@ lookup_domain(struct in_addr *addr, const char *domain)
if (!addr || !domain)
return -1;
#if 0
/*
* First check to see if the domain is in dotted-decimal format.
*/
if (inet_aton(domain, (struct in_addr *)addr) != 0)
return 0;
#endif
/*
* Okay, it's an alpha-numeric domain, so look it up.