From 5e3d83a2214ede08e89e8f67ab72133f9e1d5cae Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Mon, 23 Nov 2020 11:09:48 +0100 Subject: [PATCH] MINOR: connection: Add a new xprt to connection. Simply adds XPRT_QUIC new enum to integrate QUIC transport protocol. --- include/haproxy/connection-t.h | 1 + 1 file changed, 1 insertion(+) 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 */ }; -- 2.47.3