MEDIUM: log-forward: use "dgram-bind" instead of "bind" for the listener
authorWilly Tarreau <w@1wt.eu>
Wed, 16 Sep 2020 13:07:22 +0000 (15:07 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 16 Sep 2020 13:07:22 +0000 (15:07 +0200)
commit76aaa7f5b7ae1bba6d4870ced9b5bb32f26a570e
tree0b54118c40753e93461fd6d795b0132cd6104cc9
parentf9feec2813beadee1cacd8d556def35d38eead0a
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.
doc/configuration.txt
src/log.c