mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-06 23:27:04 +02:00
21 lines
356 B
C
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 */
|