mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-24 23:58:34 -04:00
Defines an API for xprt_qstrm so that the QMux transport parameters can be retrieved by the MUX layer on its initialization. This concerns both local and remote parameters. Functions xprt_qstrm_lparams/rparams() are defined and exported for this. They are both used in qmux_init() if QMux protocol is active.
7 lines
251 B
C
7 lines
251 B
C
#ifndef _HAPROXY_XPRT_QSTRM_H
|
|
#define _HAPROXY_XPRT_QSTRM_H
|
|
|
|
const struct quic_transport_params *xprt_qstrm_lparams(const void *context);
|
|
const struct quic_transport_params *xprt_qstrm_rparams(const void *context);
|
|
|
|
#endif /* _HAPROXY_XPRT_QSTRM_H */
|