MINOR: mux-h1: make the mux_h1_ops struct static

It was needlessly exported while it's only used inside the mux.
This commit is contained in:
Willy Tarreau 2019-01-10 10:00:08 +01:00
parent 6975296494
commit f77a158c87

View File

@ -2337,7 +2337,7 @@ static void h1_show_fd(struct buffer *msg, struct connection *conn)
/****************************************/
/* The mux operations */
const struct mux_ops mux_h1_ops = {
static const struct mux_ops mux_h1_ops = {
.init = h1_init,
.wake = h1_wake,
.attach = h1_attach,