aboutsummaryrefslogtreecommitdiff
path: root/src/or/hibernate.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2007-07-25 22:57:07 +0000
committerNick Mathewson <nickm@torproject.org>2007-07-25 22:57:07 +0000
commit7f3e2378b64f07f1bcebf80f7846a6580c29786a (patch)
treeac302f1c9fa0fbe25bce80628e713866bfe2797a /src/or/hibernate.c
parent025a81fc18428800d60b6a5093628cec5aaa8dad (diff)
downloadtor-7f3e2378b64f07f1bcebf80f7846a6580c29786a.tar
tor-7f3e2378b64f07f1bcebf80f7846a6580c29786a.tar.gz
r13908@catbus: nickm | 2007-07-25 18:55:47 -0400
Patch from Robert Hogan: set conn->dns_server_port correctly so that we can close dns server ports when they change, thus avoiding crashes and dangling references and other sources of unhappiness. svn:r10933
Diffstat (limited to 'src/or/hibernate.c')
-rw-r--r--src/or/hibernate.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/hibernate.c b/src/or/hibernate.c
index c6d661fe8..621e04289 100644
--- a/src/or/hibernate.c
+++ b/src/or/hibernate.c
@@ -771,6 +771,7 @@ hibernate_begin(hibernate_state_t new_state, time_t now)
while ((conn = connection_get_by_type(CONN_TYPE_OR_LISTENER)) ||
(conn = connection_get_by_type(CONN_TYPE_AP_LISTENER)) ||
(conn = connection_get_by_type(CONN_TYPE_AP_TRANS_LISTENER)) ||
+ (conn = connection_get_by_type(CONN_TYPE_AP_DNS_LISTENER)) ||
(conn = connection_get_by_type(CONN_TYPE_AP_NATD_LISTENER)) ||
(conn = connection_get_by_type(CONN_TYPE_DIR_LISTENER))) {
log_info(LD_NET,"Closing listener type %d", conn->type);