From 99b3252594a99f371c994eb10b6f962172bf36e2 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 9 Jan 2023 16:20:52 -0500 Subject: [PATCH] issue #356 --- http2.d | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/http2.d b/http2.d index f7b2f4f..965168a 100644 --- a/http2.d +++ b/http2.d @@ -4877,9 +4877,15 @@ class WebSocket { /++ Closes the connection, sending a graceful teardown message to the other side. + + Code 1000 is the normal closure code. + + History: + The default `code` was changed to 1000 on January 9, 2023. Previously it was 0, + but also ignored anyway. +/ /// Group: foundational - void close(int code = 0, string reason = null) + void close(int code = 1000, string reason = null) //in (reason.length < 123) in { assert(reason.length < 123); } do {