websocket close code, issue #356

This commit is contained in:
Adam D. Ruppe 2023-01-06 19:17:19 -05:00
parent 975e352656
commit fff322664c
1 changed files with 1 additions and 1 deletions

View File

@ -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;