diff options
author | Linus Nordberg <linus@nordberg.se> | 2011-11-24 18:29:56 +0100 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-11-30 11:55:45 -0500 |
commit | f786307ab7f601a3cb41c46df0a09758671a0bcf (patch) | |
tree | f4176da46b8baf23f3055fc1240c0c1c4aca3ca6 /src/common/address.h | |
parent | 5bee213d236943dac2e08e04c1525e96a62f13f7 (diff) | |
download | tor-f786307ab7f601a3cb41c46df0a09758671a0bcf.tar.gz tor-f786307ab7f601a3cb41c46df0a09758671a0bcf.zip |
First chunk of support for bridges on IPv6
Comments below focus on changes, see diff for added code.
New type tor_addr_port_t holding an IP address and a TCP/UDP port.
New flag in routerinfo_t, ipv6_preferred. This should go in the
node_t instead but not now.
Replace node_get_addr() with
- node_get_prim_addr() for primary address, i.e. IPv4 for now
- node_get_pref_addr() for preferred address, IPv4 or IPv6.
Rename node_get_addr_ipv4h() node_get_prim_addr_ipv4h() for
consistency. The primary address will not allways be an IPv4 address.
Same for node_get_orport() -> node_get_prim_orport().
Rewrite node_is_a_configured_bridge() to take all OR ports into account.
Extend argument list to extend_info_from_node and
extend_info_from_router with a flag indicating if we want to use the
routers primary address or the preferred address. Use the preferred
address in as few situtations as possible for allowing clients to
connect to bridges over IPv6.
Diffstat (limited to 'src/common/address.h')
-rw-r--r-- | src/common/address.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/address.h b/src/common/address.h index bc225a65ea..4568c32bf9 100644 --- a/src/common/address.h +++ b/src/common/address.h @@ -31,6 +31,13 @@ typedef struct tor_addr_t } addr; } tor_addr_t; +/** Holds an IP address and a TCP/UDP port. */ +typedef struct tor_addr_port_t +{ + tor_addr_t addr; + uint16_t port; +} tor_addr_port_t; + static INLINE const struct in6_addr *tor_addr_to_in6(const tor_addr_t *a); static INLINE uint32_t tor_addr_to_ipv4n(const tor_addr_t *a); static INLINE uint32_t tor_addr_to_ipv4h(const tor_addr_t *a); |