mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-10 00:57:02 +02:00
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.
17 lines
385 B
C
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 */
|