From: Nick Mathewson Date: Wed, 2 Jun 2004 18:12:49 +0000 (+0000) Subject: Only connection_dns_remove resolving exit connections X-Git-Tag: tor-0.0.7rc1~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0932505829b3c06b1ad4828005601dce3a74586b;p=thirdparty%2Ftor.git Only connection_dns_remove resolving exit connections svn:r1934 --- diff --git a/src/or/dns.c b/src/or/dns.c index 964230f722..3809fe7689 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -264,6 +264,9 @@ void connection_dns_remove(connection_t *conn) struct cached_resolve search; struct cached_resolve *resolve; + tor_assert(conn->type == CONN_TYPE_EXIT); + tor_assert(conn->state == EXIT_CONN_STATE_RESOLVING); + strncpy(search.address, conn->address, MAX_ADDRESSLEN); search.address[MAX_ADDRESSLEN-1] = 0;