MINOR: connection: Add a new xprt to connection.

Simply adds XPRT_QUIC new enum to integrate QUIC transport protocol.
This commit is contained in:
Frdric Lcaille 2020-11-23 11:09:48 +01:00 committed by Willy Tarreau
parent 5aa92411fb
commit 5e3d83a221

View file

@ -283,6 +283,7 @@ enum {
XPRT_RAW = 0,
XPRT_SSL = 1,
XPRT_HANDSHAKE = 2,
XPRT_QUIC = 3,
XPRT_ENTRIES /* must be last one */
};