diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-03-28 14:43:33 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-03-28 14:43:33 -0400 |
commit | cb083b5d3e21307b2dd762a1e891b71a9bd69eda (patch) | |
tree | 59a00ea9695378cda68b602db30930bce73dc91e /src/or/or.h | |
parent | 794a25f8c11971cf71f472820c2d3cd6a0f29b94 (diff) | |
parent | 216bc353d3c724e8348408800f389c0c76c2bbc6 (diff) | |
download | tor-cb083b5d3e21307b2dd762a1e891b71a9bd69eda.tar.gz tor-cb083b5d3e21307b2dd762a1e891b71a9bd69eda.zip |
Merge remote-tracking branch 'asn-github/t-25432'
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h index 6ff5902da5..25fc6cdf37 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2343,10 +2343,10 @@ typedef struct routerstatus_t { * If it's a descriptor, we only use the first DIGEST_LEN bytes. */ char descriptor_digest[DIGEST256_LEN]; uint32_t addr; /**< IPv4 address for this router, in host order. */ - uint16_t or_port; /**< OR port for this router. */ + uint16_t or_port; /**< IPv4 OR port for this router. */ uint16_t dir_port; /**< Directory port for this router. */ tor_addr_t ipv6_addr; /**< IPv6 address for this router. */ - uint16_t ipv6_orport; /**<IPV6 OR port for this router. */ + uint16_t ipv6_orport; /**< IPv6 OR port for this router. */ unsigned int is_authority:1; /**< True iff this router is an authority. */ unsigned int is_exit:1; /**< True iff this router is a good exit. */ unsigned int is_stable:1; /**< True iff this router stays up a long time. */ |