haproxy/include/haproxy/quic_rules.h
Amaury Denoyelle f91be2657e MINOR: quic: pass quic_dgram as obj_type for quic-initial rules
To extend quic-initial rules, pass quic_dgram instance to argument for
the various actions. As such, quic_dgram is now supported as an obj_type
and can be used in session origin field.
2024-07-25 15:39:39 +02:00

17 lines
385 B
C

#ifndef _HAPROXY_QUIC_RULES_H
#define _HAPROXY_QUIC_RULES_H
#include <haproxy/action-t.h>
#include <haproxy/quic_sock-t.h>
struct listener;
struct quic_dgram;
extern struct action_kw_list quic_init_actions_list;
int quic_init_exec_rules(struct listener *li, struct quic_dgram *dgram);
struct action_kw *action_quic_init_custom(const char *kw);
#endif /* _HAPROXY_QUIC_RULES_H */