mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-06 23:27:04 +02:00
17 lines
293 B
C
17 lines
293 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;
|
|
|
|
unsigned int curr;
|
|
unsigned int next;
|
|
int sent;
|
|
};
|
|
|
|
#endif /* _HAPROXY_QUIC_PACING_T_H */
|