diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2018-05-16 17:23:42 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-09-12 09:06:16 -0400 |
commit | fbd50f599408ae5d5e7bd7d8d63b23b9039524c7 (patch) | |
tree | b622a522b3b6b3d920b21cbfd6ed939e06de73f5 | |
parent | 9f5431c79fbe51af9445f00bb1a4d67d80e5ada5 (diff) | |
download | tor-fbd50f599408ae5d5e7bd7d8d63b23b9039524c7.tar.gz tor-fbd50f599408ae5d5e7bd7d8d63b23b9039524c7.zip |
Avoid mentioning ticket number in comments
-rw-r--r-- | src/core/mainloop/connection.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/core/mainloop/connection.c b/src/core/mainloop/connection.c index f1716ed8f0..aeaff3784a 100644 --- a/src/core/mainloop/connection.c +++ b/src/core/mainloop/connection.c @@ -146,8 +146,6 @@ * EADDRINUSE. * 2) If so, it will close the appropriate old listener connection and * 3) Attempts bind()'ing the new listener socket again. - * - * For further information, see ticket #17873. */ #if defined(__linux__) || defined(_WIN32) #define ENABLE_LISTENER_REBIND @@ -2705,8 +2703,7 @@ connection_read_proxy_handshake(connection_t *conn) * entry in <b>ports</b>. Add to <b>new_conns</b> new every connection we * launch. If we may need to perform socket rebind when creating new * listener that replaces old one, create a <b>listener_replacement_t</b> - * struct for affected pair and add it to <b>replacements</b>. For more - * information, see ticket #17873. + * struct for affected pair and add it to <b>replacements</b>. * * If <b>control_listeners_only</b> is true, then we only open control * listeners, and we do not remove any noncontrol listeners from |