From: Roger Dingledine Date: Sun, 23 Jul 2006 06:41:02 +0000 (+0000) Subject: rewrite conn->address for GET commands as well as POST commands. X-Git-Tag: tor-0.1.1.23~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40cc536307fd17d8f11a933b20dfd28f4ab6317d;p=thirdparty%2Ftor.git rewrite conn->address for GET commands as well as POST commands. svn:r6815 --- diff --git a/src/or/directory.c b/src/or/directory.c index e8ff16f28d..c6af9b86a1 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -1673,7 +1673,6 @@ directory_handle_command_post(connection_t *conn, char *headers, return 0; } log_debug(LD_DIRSERV,"rewritten url as '%s'.", url); - http_set_address_origin(headers, conn); if (!strcmp(url,"/tor/")) { /* server descriptor post */ const char *msg; @@ -1754,6 +1753,7 @@ directory_handle_command(connection_t *conn) /* case 1, fall through */ } + http_set_address_origin(headers, conn); //log_debug(LD_DIRSERV,"headers %s, body %s.", headers, body); if (!strncasecmp(headers,"GET",3))