mirror of https://github.com/adamdruppe/arsd.git
websocket close code, issue #356
This commit is contained in:
parent
975e352656
commit
fff322664c
2
http2.d
2
http2.d
|
@ -4889,7 +4889,7 @@ class WebSocket {
|
|||
wss.fin = true;
|
||||
wss.masked = this.isClient;
|
||||
wss.opcode = WebSocketOpcode.close;
|
||||
wss.data = cast(ubyte[]) reason.dup;
|
||||
wss.data = [ubyte((code >> 8) & 0xff), ubyte(code & 0xff)] ~ cast(ubyte[]) reason.dup;
|
||||
wss.send(&llsend);
|
||||
|
||||
readyState_ = CLOSING;
|
||||
|
|
Loading…
Reference in New Issue