diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-13 19:03:18 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-13 19:03:18 +0000 |
commit | c86d22226ff952b33cf4fbee23f0172b86230024 (patch) | |
tree | 870703936553ad4277d8ceced86367c480beb6ea | |
parent | 6c2d7ebaa4b1c7cba0ce2c47b633666337b2f9b8 (diff) | |
download | tinyproxy-c86d22226ff952b33cf4fbee23f0172b86230024.tar.gz tinyproxy-c86d22226ff952b33cf4fbee23f0172b86230024.zip |
Added additional error handling for the bind() and listen() system calls
when setting up the listening socket.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/sock.c | 14 |
2 files changed, 13 insertions, 3 deletions
@@ -2,6 +2,8 @@ * src/sock.c (opensock): If the Listen directive is in use, then we should bind outgoing address to this address. + (listen_sock): Added error handling for the bind() and listen() + calls when setting up the listening socket. 2002-04-12 Robert James Kaes <rjkaes@flarenet.com> @@ -1,4 +1,4 @@ -/* $Id: sock.c,v 1.24 2002-04-13 05:20:19 rjkaes Exp $ +/* $Id: sock.c,v 1.25 2002-04-13 19:03:18 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 @@ -206,9 +206,17 @@ listen_sock(uint16_t port, socklen_t * addrlen) addr.sin_addr.s_addr = inet_addr("0.0.0.0"); } - bind(listenfd, (struct sockaddr *) &addr, sizeof(addr)); + if (bind(listenfd, (struct sockaddr *) &addr, sizeof(addr)) < 0) { + log_message(LOG_ERR, "Unable to bind listening socket because of %s", + strerror(errno)); + return -1; + } - listen(listenfd, MAXLISTEN); + if (listen(listenfd, MAXLISTEN) < 0) { + log_message(LOG_ERR, "Unable to start listening socket because of %s", + strerror(errno)); + return -1; + } *addrlen = sizeof(addr); |