mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-15 08:42:16 +02:00
Move several functions in relation with the retransmissions from TX part (quic_tx.c) to quic_retransmit.c new C file.
21 lines
599 B
C
21 lines
599 B
C
#ifndef _HAPROXY_QUIC_RETRANSMIT_H
|
|
#define _HAPROXY_QUIC_RETRANSMIT_H
|
|
|
|
#ifdef USE_QUIC
|
|
#ifndef USE_OPENSSL
|
|
#error "Must define USE_OPENSSL"
|
|
#endif
|
|
|
|
#include <haproxy/list-t.h>
|
|
#include <haproxy/quic_conn-t.h>
|
|
#include <haproxy/quic_tls-t.h>
|
|
|
|
void qc_prep_fast_retrans(struct quic_conn *qc,
|
|
struct quic_pktns *pktns,
|
|
struct list *frms1, struct list *frms2);
|
|
void qc_prep_hdshk_fast_retrans(struct quic_conn *qc,
|
|
struct list *ifrms, struct list *hfrms);
|
|
|
|
#endif /* USE_QUIC */
|
|
#endif /* _HAPROXY_QUIC_RETRANSMIT_H */
|