commit | 5e3d83a2214ede08e89e8f67ab72133f9e1d5cae | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Mon Nov 23 11:09:48 2020 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Wed Dec 23 11:57:26 2020 +0100 |
tree | 2d6d89dba05fd47a25135e85cac19c551c3deab6 | |
parent | 5aa92411fb9c88f54e0ef6b81b84c4ea5e695d2a [diff] |
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 71272af..0a3af44 100644 --- a/include/haproxy/connection-t.h +++ b/include/haproxy/connection-t.h
@@ -283,6 +283,7 @@ XPRT_RAW = 0, XPRT_SSL = 1, XPRT_HANDSHAKE = 2, + XPRT_QUIC = 3, XPRT_ENTRIES /* must be last one */ };