MINOR: connection: report the mux names in "haproxy -vv"

Since the mux names appear at a few places (dumps etc), let's list
them in front of supported mux protocols in "haproxy -vv".
This commit is contained in:
Willy Tarreau 2019-05-22 11:44:03 +02:00
parent b106ce1c3d
commit ca2a3cc8d5
1 changed files with 2 additions and 2 deletions

View File

@ -1002,8 +1002,8 @@ static inline void list_mux_proto(FILE *out)
else
side = "NONE";
fprintf(out, " %15s : mode=%-10s side=%s\n",
(proto.len ? proto.ptr : "<default>"), mode, side);
fprintf(out, " %15s : mode=%-10s side=%-8s mux=%s\n",
(proto.len ? proto.ptr : "<default>"), mode, side, item->mux->name);
}
}