projects
/
haproxy-2.5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5aa9241
)
MINOR: connection: Add a new xprt to connection.
author
Frédéric Lécaille
<flecaille@haproxy.com>
Mon, 23 Nov 2020 10:09:48 +0000
(11:09 +0100)
committer
Willy Tarreau
<w@1wt.eu>
Wed, 23 Dec 2020 10:57:26 +0000
(11:57 +0100)
Simply adds XPRT_QUIC new enum to integrate QUIC transport protocol.
include/haproxy/connection-t.h
patch
|
blob
|
history
diff --git
a/include/haproxy/connection-t.h
b/include/haproxy/connection-t.h
index
71272af
..
0a3af44
100644
(file)
--- 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 */
};