tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 7d7af19f1b282554df5117c5c963736d0253a8d5
parent 326c473b793d6dfa5fcdb3dbd5a73e5f0d502d54
Author: Nick Mathewson <nickm@torproject.org>
Date:   Thu, 28 Jun 2018 13:39:49 -0400

Use tor_ntohs in compress.c; avoid a winsocks dependency

Diffstat:
Msrc/lib/compress/compress.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/compress/compress.c b/src/lib/compress/compress.c @@ -281,7 +281,7 @@ detect_compression_method(const char *in, size_t in_len) if (in_len > 2 && fast_memeq(in, "\x1f\x8b", 2)) { return GZIP_METHOD; } else if (in_len > 2 && (in[0] & 0x0f) == 8 && - (ntohs(get_uint16(in)) % 31) == 0) { + (tor_ntohs(get_uint16(in)) % 31) == 0) { return ZLIB_METHOD; } else if (in_len > 2 && fast_memeq(in, "\x5d\x00\x00", 3)) {