mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-09-22 22:31:28 +02:00
MINOR: quic_tls: Client/serveur state reordering
This is to ensure that expressions which compare the current state with others are not polluted by the "handshake failed" special state.
This commit is contained in:
parent
2cb130c980
commit
682bb38c34
@ -42,13 +42,14 @@
|
|||||||
|
|
||||||
/* QUIC handshake states for both clients and servers. */
|
/* QUIC handshake states for both clients and servers. */
|
||||||
enum quic_handshake_state {
|
enum quic_handshake_state {
|
||||||
|
QUIC_HS_ST_CLIENT_HANDSHAKE_FAILED,
|
||||||
|
QUIC_HS_ST_SERVER_HANDSHAKE_FAILED,
|
||||||
|
|
||||||
QUIC_HS_ST_CLIENT_INITIAL,
|
QUIC_HS_ST_CLIENT_INITIAL,
|
||||||
QUIC_HS_ST_CLIENT_HANDSHAKE,
|
QUIC_HS_ST_CLIENT_HANDSHAKE,
|
||||||
QUIC_HS_ST_CLIENT_HANDSHAKE_FAILED,
|
|
||||||
|
|
||||||
QUIC_HS_ST_SERVER_INITIAL,
|
QUIC_HS_ST_SERVER_INITIAL,
|
||||||
QUIC_HS_ST_SERVER_HANDSHAKE,
|
QUIC_HS_ST_SERVER_HANDSHAKE,
|
||||||
QUIC_HS_ST_SERVER_HANDSHAKE_FAILED,
|
|
||||||
|
|
||||||
/* Common to servers and clients */
|
/* Common to servers and clients */
|
||||||
QUIC_HS_ST_COMPLETE,
|
QUIC_HS_ST_COMPLETE,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user