diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-27 01:57:48 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-27 01:57:48 +0000 |
commit | 83a1a32f2a316090a1e120e24793fdf3ab977a57 (patch) | |
tree | 447a8a498e1da6da2bded1838154e898596ec0be | |
parent | b11015c2e16d37258271cccb1e6842e58ace5b90 (diff) | |
download | tinyproxy-83a1a32f2a316090a1e120e24793fdf3ab977a57.tar.gz tinyproxy-83a1a32f2a316090a1e120e24793fdf3ab977a57.zip |
(opensock): Changed a comment around to better state what the code is actually doing.
-rw-r--r-- | src/sock.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: sock.c,v 1.36 2002-05-26 18:51:17 rjkaes Exp $ +/* $Id: sock.c,v 1.37 2002-05-27 01:57:48 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 @@ -93,7 +93,7 @@ opensock(char *ip_addr, uint16_t port) return -1; } - /* Bind to our listening address*/ + /* Bind to the specified address */ if (config.bind_address) { memset(&bind_addr, 0, sizeof(bind_addr)); bind_addr.sin_family = AF_INET; |