haproxy/src/cfgparse-quic.c
Amaury Denoyelle c8b4ce4a47 MINOR: quic: add config parse source file
Create a new dedicated source file for QUIC related options parsing on
the bind line.
2022-01-12 11:08:48 +01:00

9 lines
225 B
C

#include <haproxy/api.h>
#include <haproxy/listener.h>
#include <haproxy/proxy-t.h>
static struct bind_kw_list bind_kws = { "QUIC", { }, {
{ NULL, NULL, 0 },
}};
INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);