Commit
92581043fb ("MINOR: haterm: add long options for QUIC and TCP
"bind" settings") added --tcp-bind-opts. The doc (and commit) says that
it applies to TCP bind lines but it only applied to the TCP/SSL ones,
not the clear ones. Let's fix it. No backport needed, this is only 3.4.
}
/* clear HTTP */
- hbuf_appendf(&fbuf, "\tbind %s:%s shards by-thread\n", ip, port1);
+ hbuf_appendf(&fbuf, "\tbind %s:%s shards by-thread%s%s\n", ip, port1,
+ tcp_bind_opt ? " " : "",
+ tcp_bind_opt ? tcp_bind_opt : "");
has_bind = 1;
if (port2) {
has_ssl = 1;