commit | 76aaa7f5b7ae1bba6d4870ced9b5bb32f26a570e | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed Sep 16 15:07:22 2020 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Wed Sep 16 15:07:22 2020 +0200 |
tree | 0b54118c40753e93461fd6d795b0132cd6104cc9 | |
parent | f9feec2813beadee1cacd8d556def35d38eead0a [diff] |
MEDIUM: log-forward: use "dgram-bind" instead of "bind" for the listener The use of "bind" wasn't that wise but was temporary. The problem is that it will not allow to coexist with tcp. Let's explicitly call it "dgram-bind" so that datagram listeners are expected here, leaving some room for stream listeners later. This is the only change.