mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-09 16:47:18 +02:00
Implement a new app_ops layer for quic interop. This layer uses HTTP/0.9 on top of QUIC. Implementation is minimal, with the intent to be able to pass interoperability test suite from https://github.com/marten-seemann/quic-interop-runner. It is instantiated if the negotiated ALPN is "hq-interop".
7 lines
148 B
C
7 lines
148 B
C
#ifndef _HAPROXY_HQ_INTEROP_H_
|
|
#define _HAPROXY_HQ_INTEROP_H_
|
|
|
|
extern const struct qcc_app_ops hq_interop_ops;
|
|
|
|
#endif /* _HAPROXY_HQ_INTEROP_H_ */
|