From fff322664c5a20d1f2988ddde2f507b1fb33bf4d Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Fri, 6 Jan 2023 19:17:19 -0500 Subject: [PATCH] websocket close code, issue #356 --- http2.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http2.d b/http2.d index b405a44..f7b2f4f 100644 --- a/http2.d +++ b/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;