diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-10-23 03:57:34 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-10-23 03:57:34 +0000 |
commit | a746b9d0b207fb0adf647923ba4662d5b31b017d (patch) | |
tree | 08cb4552768a16e0b174b3ffe7cbc1887333900b /src | |
parent | 56a97665298ef524c5ca21e11e46f76497a073f0 (diff) | |
download | tinyproxy-a746b9d0b207fb0adf647923ba4662d5b31b017d.tar.gz tinyproxy-a746b9d0b207fb0adf647923ba4662d5b31b017d.zip |
Moved the zero-length string setting to outside the tests in getpeer_*()
functions. Also added a more robust error reporting for DNS errors.
Diffstat (limited to '')
-rw-r--r-- | src/sock.c | 19 |
1 files changed, 15 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: sock.c,v 1.10 2001-10-22 16:52:34 rjkaes Exp $ +/* $Id: sock.c,v 1.11 2001-10-23 03:57:34 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 @@ -160,9 +160,13 @@ char *getpeer_ip(int fd, char *ipaddr) assert(fd >= 0); assert(ipaddr != NULL); + /* + * Make sure the user's buffer is initialized to an empty string. + */ + *ipaddr = '\0'; + if (getpeername(fd, (struct sockaddr*)&name, &namelen) != 0) { - log_message(LOG_ERR, "geetpeer_ip: 'could not get peer name' (\"%s\": %d)", strerror(errno), errno); - *ipaddr = '\0'; + log_message(LOG_ERR, "geetpeer_ip: 'could not get peer's IP address' (\"%s\": %d)", strerror(errno), errno); } else { strlcpy(ipaddr, inet_ntoa(*(struct in_addr*)&name.sin_addr.s_addr), @@ -185,9 +189,13 @@ char *getpeer_string(int fd, char *string) assert(fd >= 0); assert(string != NULL); + /* + * Make sure the user's buffer is initialized to an empty string. + */ + *string = '\0'; + if (getpeername(fd, (struct sockaddr *)&name, &namelen) != 0) { log_message(LOG_ERR, "getpeer_string: 'could not get peer name' (\"%s\": %d)", strerror(errno), errno); - *string = '\0'; } else { LOCK(); peername = gethostbyaddr((char *)&name.sin_addr.s_addr, @@ -195,6 +203,9 @@ char *getpeer_string(int fd, char *string) AF_INET); if (peername) strlcpy(string, peername->h_name, PEER_STRING_LENGTH); + else + log_message(LOG_ERR, "getpeer_string: 'gethostbyaddr()' returned an error (\"%s\": %d).", hstrerror(h_errno), h_errno); + UNLOCK(); } |