From: teor (Tim Wilson-Brown) Date: Fri, 29 Apr 2016 01:03:59 +0000 (+1000) Subject: Comment-only change to clarify routerstatus_t IPv4 byte order X-Git-Tag: tor-0.2.8.3-alpha~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=225448ad34a75b6eea9ab17e306e67578ce86760;p=thirdparty%2Ftor.git Comment-only change to clarify routerstatus_t IPv4 byte order --- diff --git a/src/or/or.h b/src/or/or.h index 592f29502e..6694bb4ece 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2215,7 +2215,7 @@ typedef struct routerstatus_t { /** Digest of the router's most recent descriptor or microdescriptor. * 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. */ + uint32_t addr; /**< IPv4 address for this router, in host order. */ uint16_t or_port; /**< OR port for this router. */ uint16_t dir_port; /**< Directory port for this router. */ tor_addr_t ipv6_addr; /**< IPv6 address for this router. */