mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-30 00:00:16 +01:00
ss-server: allow UPGRADE to UPGRADE
https://github.com/warmcat/libwebsockets/issues/2725
This commit is contained in:
parent
6a55f448e2
commit
c2d7e33eeb
1 changed files with 2 additions and 1 deletions
|
@ -181,7 +181,8 @@ const uint32_t ss_state_txn_validity[] = {
|
|||
(1 << LWSSSCS_TIMEOUT) |
|
||||
(1 << LWSSSCS_DESTROYING),
|
||||
|
||||
[LWSSSCS_SERVER_UPGRADE] = (1 << LWSSSCS_SERVER_TXN) |
|
||||
[LWSSSCS_SERVER_UPGRADE] = (1 << LWSSSCS_SERVER_UPGRADE) |
|
||||
(1 << LWSSSCS_SERVER_TXN) |
|
||||
(1 << LWSSSCS_TIMEOUT) |
|
||||
(1 << LWSSSCS_DISCONNECTED) |
|
||||
(1 << LWSSSCS_DESTROYING),
|
||||
|
|
Loading…
Add table
Reference in a new issue