commit | f172558b2746b35d1301a5deb392bb8f63b0bf6c | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Aug 28 15:30:11 2020 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri Aug 28 18:51:36 2020 +0200 |
tree | f4412eb94b8015ac97ccc4f7470452b60e4073df | |
parent | 0d06df64487bc225763ab294e67c40b98f99566b [diff] |
MINOR: tcp/udp/unix: make use of proto->addrcmp() to compare addresses The new addrcmp() protocol member points to the function to be used to compare two addresses of the same family. When picking an FD from a previous process, we can now use the address specific address comparison functions instead of having to rely on a local implementation. This will help move that code to a more central place.