haproxy/include/haproxy/quic_pacing-t.h
2024-10-31 09:45:45 +00:00

21 lines
356 B
C

#ifndef _HAPROXY_QUIC_PACING_T_H
#define _HAPROXY_QUIC_PACING_T_H
#include <haproxy/api-t.h>
#include <haproxy/quic_cc-t.h>
struct quic_pacer {
struct list frms;
const struct quic_cc_path *path;
//int next;
//unsigned int curr;
//int pkt_ms;
//int sent;
int burst;
int budget;
int last_sent;
int next;
};
#endif /* _HAPROXY_QUIC_PACING_T_H */