commit | 14e7f29e8655fa1ae2f9d409a135cbc07abb75da | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed Oct 27 17:41:07 2021 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Wed Oct 27 17:41:07 2021 +0200 |
tree | 51f290773fab69e9681d338ab66881027231313c | |
parent | e3b45184143a1561167ae2fd7ad41d4b0a845b58 [diff] |
MINOR: protocols: replace protocol_by_family() with protocol_lookup() At a few places we were still using protocol_by_family() instead of the richer protocol_lookup(). The former is limited as it enforces SOCK_STREAM and a stream protocol at the control layer. At least with protocol_lookup() we don't have this limitationn. The values were still set for now but later we can imagine making them configurable on the fly.