From 572714a458bbf3c8a121db721881d5be67753019 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Thu, 14 Oct 2004 08:45:07 +0000 Subject: [PATCH] bugfix: parse_addr_port() bites us again -- it returns addr in network order. svn:r2508 --- src/or/rendservice.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/or/rendservice.c b/src/or/rendservice.c index 2c86b4385f..090a3a7cf9 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -165,13 +165,13 @@ static rend_service_port_config_t *parse_port_config(const char *string) log_fn(LOG_WARN, "Port out of range"); return NULL; } - addr = 0x7F000001u; /* Default to 127.0.0.1 */ + addr = htonl(0x7F000001u); /* Default to 127.0.0.1 */ } result = tor_malloc(sizeof(rend_service_port_config_t)); result->virtual_port = virtport; result->real_port = realport; - result->real_address = addr; + result->real_address = ntohl(addr); return result; }