mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-22 06:37:54 -04:00
MINOR: quic: Export qc_send_app_pkts()
This is at least to make this function be callable by the mux.
This commit is contained in:
parent
edc81469a8
commit
c2f561ce1e
2 changed files with 2 additions and 1 deletions
|
|
@ -1197,6 +1197,7 @@ struct task *quic_lstnr_dghdlr(struct task *t, void *ctx, unsigned int state);
|
|||
int quic_lstnr_dgram_dispatch(unsigned char *buf, size_t len, void *owner,
|
||||
struct sockaddr_storage *saddr,
|
||||
struct quic_dgram *new_dgram, struct list *dgrams);
|
||||
int qc_send_app_pkts(struct quic_conn *qc, struct list *frms);
|
||||
|
||||
#endif /* USE_QUIC */
|
||||
#endif /* _HAPROXY_XPRT_QUIC_H */
|
||||
|
|
|
|||
|
|
@ -3278,7 +3278,7 @@ static int qc_qel_may_rm_hp(struct quic_conn *qc, struct quic_enc_level *qel)
|
|||
}
|
||||
|
||||
/* Sends application level packets from <qc> QUIC connection */
|
||||
static int qc_send_app_pkts(struct quic_conn *qc, struct list *frms)
|
||||
int qc_send_app_pkts(struct quic_conn *qc, struct list *frms)
|
||||
{
|
||||
int ret;
|
||||
struct qring *qr;
|
||||
|
|
|
|||
Loading…
Reference in a new issue