Closed xxxga0 closed 1 year ago
In these code:
private boolean decodeHandshake(ByteBuffer socketBufferNew) { ... if (handshakestate == HandshakeState.MATCHED) { ... write(d.createHandshake( d.postProcessHandshakeResponseAsServer(handshake, response))); draft = d; open(handshake); return true; } }
Why server accept handshake, the WebSocket open directly. Isn't it three-way handshake?
just read 1.3
Closing as there is no specific issue - the current implementation conforms to the spec and has been tested carefully.
In these code:
Why server accept handshake, the WebSocket open directly. Isn't it three-way handshake?