diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-02-05 19:40:26 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-02-05 19:40:26 +0000 |
commit | a51deb9a9c7bf33ba353e008724c150bddde144b (patch) | |
tree | 5797a9e4129ba027269bb48f4e3d4571f98fe473 /src/or | |
parent | 2866c53eec8cd592955f15cec1a317e04aaafc7f (diff) | |
download | tor-a51deb9a9c7bf33ba353e008724c150bddde144b.tar.gz tor-a51deb9a9c7bf33ba353e008724c150bddde144b.zip |
r17903@catbus: nickm | 2008-02-05 14:40:03 -0500
Remove some dead code; fix some XXX020s; turn some XXX020s into XXXX_IP6s (i.e., "needs to be fixed when we add ipv6 support").
svn:r13382
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/or.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/or.h b/src/or/or.h index 1b858a3327..6c5e67f735 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -860,7 +860,7 @@ typedef struct connection_t { * could write? */ time_t timestamp_created; /**< When was this connection_t created? */ - /* XXXX020 make this ipv6-capable */ + /* XXXX_IP6 make this ipv6-capable */ int socket_family; /**< Address family of this connection's socket. Usually * AF_INET, but it can also be AF_UNIX, or in the future * AF_INET6 */ @@ -1129,7 +1129,7 @@ typedef struct addr_policy_t { maskbits_t maskbits; /**< Accept/reject all addresses <b>a</b> such that the * first <b>maskbits</b> bits of <b>a</b> match * <b>addr</b>. */ - /* XXXX020 make this ipv6-capable */ + /* XXXX_IP6 make this ipv6-capable */ uint32_t addr; /**< Base address to accept or reject. */ uint16_t prt_min; /**< Lowest port number to accept/reject. */ uint16_t prt_max; /**< Highest port number to accept/reject. */ @@ -1956,7 +1956,7 @@ static INLINE origin_circuit_t *TO_ORIGIN_CIRCUIT(circuit_t *x) /** An entry specifying a set of addresses and ports that should be remapped * to another address and port before exiting this exit node. */ typedef struct exit_redirect_t { - /* XXXX020 make this whole mess ipv6-capable. (Does anybody use it? */ + /* XXXX_IP6 make this whole mess ipv6-capable. (Does anybody use it? */ uint32_t addr; uint16_t port_min; |