File tree Expand file tree Collapse file tree 1 file changed +15
-10
lines changed
Expand file tree Collapse file tree 1 file changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -86,22 +86,27 @@ void WebSocketsServerCore::begin(void) {
8686 client->isSSL = false ;
8787 client->ssl = NULL ;
8888#endif
89- client->cUrl = " " ;
90- client->cCode = 0 ;
91- client->cKey = " " ;
92- client->cAccept = " " ;
93- client->cProtocol = " " ;
94- client->cExtensions = " " ;
95- client->cVersion = 0 ;
89+ client->cUrl = " " ;
90+ client->cCode = 0 ;
91+
92+ client->cIsClient = false ;
9693 client->cIsUpgrade = false ;
9794 client->cIsWebsocket = false ;
9895
99- client->base64Authorization = " " ;
100- client->plainAuthorization = " " ;
101- client->extraHeaders = " " ;
96+ client->cSessionId = " " ;
97+ client->cKey = " " ;
98+ client->cAccept = " " ;
99+ client->cProtocol = " " ;
100+ client->cExtensions = " " ;
101+ client->cVersion = 0 ;
102102
103103 client->cWsRXsize = 0 ;
104104
105+ client->base64Authorization = " " ;
106+ client->plainAuthorization = " " ;
107+
108+ client->extraHeaders = " " ;
109+
105110#if (WEBSOCKETS_NETWORK_TYPE == NETWORK_ESP8266_ASYNC)
106111 client->cHttpLine = " " ;
107112#endif
You can’t perform that action at this time.
0 commit comments