From: Frédéric Lécaille Date: Mon, 23 Nov 2020 10:09:48 +0000 (+0100) Subject: MINOR: connection: Add a new xprt to connection. X-Git-Tag: v2.4-dev5~75 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5e3d83a2214ede08e89e8f67ab72133f9e1d5cae;p=thirdparty%2Fhaproxy.git MINOR: connection: Add a new xprt to connection. Simply adds XPRT_QUIC new enum to integrate QUIC transport protocol. --- diff --git a/include/haproxy/connection-t.h b/include/haproxy/connection-t.h index 71272af112..0a3af4418a 100644 --- a/include/haproxy/connection-t.h +++ b/include/haproxy/connection-t.h @@ -283,6 +283,7 @@ enum { XPRT_RAW = 0, XPRT_SSL = 1, XPRT_HANDSHAKE = 2, + XPRT_QUIC = 3, XPRT_ENTRIES /* must be last one */ };