commit | ed1748553a867be7d1dda6fc64d2714d6ce9022e | [log] [tgz] |
---|---|---|
author | Bjoern Jacke <bjacke@samba.org> | Tue Jan 12 19:24:43 2021 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Thu Oct 14 21:22:52 2021 +0200 |
tree | d7a6e2cd0028a8fdbe8e75a80079f2f0708f3eeb | |
parent | 1dbf578ee0fd45ca7d0c5d1a234a876d140206a0 [diff] |
MINOR: proto_tcp: use chunk_appendf() to ouput socket setup errors Right now only the last warning or error is reported from tcp_bind_listener(), but it is useful to report all warnings and no only the last one, so we now emit them delimited by commas. Previously we used a fixed buffer of 100 bytes, which was too small to store more than one message, so let's extend it. Signed-off-by: Bjoern Jacke <bjacke@samba.org>