commit | fd21c6c6fd29471b73254c7db4f75052ce175ce2 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed Oct 06 17:09:41 2021 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Thu Oct 07 01:41:14 2021 +0200 |
tree | 973598d8a6c13a1807648973484f26b0d58e1387 | |
parent | 74f9817565ddc191dd47d1d7aa367aa73900df96 [diff] |
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.