#include <haproxy/api.h> | |
#include <haproxy/listener.h> | |
#include <haproxy/proxy-t.h> | |
static int bind_parse_quic_force_retry(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) | |
{ | |
conf->quic_force_retry = 1; | |
return 0; | |
} | |
static struct bind_kw_list bind_kws = { "QUIC", { }, { | |
{ "quic-force-retry", bind_parse_quic_force_retry, 0 }, | |
{ NULL, NULL, 0 }, | |
}}; | |
INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws); |