MINOR: connection: use uint64_t for the hashes
authorWilly Tarreau <w@1wt.eu>
Wed, 6 Oct 2021 15:09:41 +0000 (17:09 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 6 Oct 2021 23:41:14 +0000 (01:41 +0200)
commitfd21c6c6fd29471b73254c7db4f75052ce175ce2
tree973598d8a6c13a1807648973484f26b0d58e1387
parent74f9817565ddc191dd47d1d7aa367aa73900df96
MINOR: connection: use uint64_t for the hashes

The hash type stored everywhere is XXH64_hash_t, which annoyingly forces
everyone to include the huge xxhash file. We know it's an uint64_t because
that's its purpose and the type is only made to abstract it on machines
where uint64_t is not availble. Let's switch the type to uint64_t
everywhere and avoid including xxhash from the type file.
include/haproxy/connection-t.h
include/haproxy/connection.h
src/connection.c