diff --git a/http3/response_writer.go b/http3/response_writer.go index d18c70be..3d927185 100644 --- a/http3/response_writer.go +++ b/http3/response_writer.go @@ -3,6 +3,7 @@ package http3 import ( "bufio" "bytes" + "fmt" "net/http" "strconv" "strings" @@ -55,7 +56,12 @@ func (w *responseWriter) WriteHeader(status int) { return } - if status < 100 || status >= 200 { + // http status must be 3 digits + if status < 100 || status > 999 { + panic(fmt.Sprintf("invalid WriteHeader code %v", status)) + } + + if status >= 200 { w.headerWritten = true // Add Date header. // This is what the standard library does. diff --git a/http3/response_writer_test.go b/http3/response_writer_test.go index 044ec463..c803adb7 100644 --- a/http3/response_writer_test.go +++ b/http3/response_writer_test.go @@ -178,4 +178,9 @@ var _ = Describe("Response Writer", func() { Expect(n).To(Equal(0)) Expect(err).To(Equal(http.ErrContentLength)) }) + + It(`panics when writing invalid status`, func() { + Expect(func() { rw.WriteHeader(99) }).To(Panic()) + Expect(func() { rw.WriteHeader(1000) }).To(Panic()) + }) })