mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-23 15:19:36 -04: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
1 changed files with 3 additions and 2 deletions
|
|
@ -42,13 +42,14 @@
|
|||
|
||||
/* QUIC handshake states for both clients and servers. */
|
||||
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_HANDSHAKE,
|
||||
QUIC_HS_ST_CLIENT_HANDSHAKE_FAILED,
|
||||
|
||||
QUIC_HS_ST_SERVER_INITIAL,
|
||||
QUIC_HS_ST_SERVER_HANDSHAKE,
|
||||
QUIC_HS_ST_SERVER_HANDSHAKE_FAILED,
|
||||
|
||||
/* Common to servers and clients */
|
||||
QUIC_HS_ST_COMPLETE,
|
||||
|
|
|
|||
Loading…
Reference in a new issue