We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e881604 commit c04e47fCopy full SHA for c04e47f
src/net/http/status.go
@@ -10,6 +10,7 @@ const (
10
StatusContinue = 100 // RFC 7231, 6.2.1
11
StatusSwitchingProtocols = 101 // RFC 7231, 6.2.2
12
StatusProcessing = 102 // RFC 2518, 10.1
13
+ StatusEarlyHints = 103 // RFC 8297
14
15
StatusOK = 200 // RFC 7231, 6.3.1
16
StatusCreated = 201 // RFC 7231, 6.3.2
@@ -79,6 +80,7 @@ var statusText = map[int]string{
79
80
StatusContinue: "Continue",
81
StatusSwitchingProtocols: "Switching Protocols",
82
StatusProcessing: "Processing",
83
+ StatusEarlyHints: "Early Hints",
84
85
StatusOK: "OK",
86
StatusCreated: "Created",
0 commit comments