http3: change status codes to const (#3683)

Signed-off-by: Avi Rosenberg <avrumi96@gmail.com>
This commit is contained in:
Avi Rosenberg 2023-01-28 00:40:59 +02:00 committed by GitHub
parent 3f9d8feab2
commit 7b2c69451e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View file

@ -81,7 +81,7 @@ func (w *responseWriter) WriteHeader(status int) {
func (w *responseWriter) Write(p []byte) (int, error) {
if !w.headerWritten {
w.WriteHeader(200)
w.WriteHeader(http.StatusOK)
}
if !bodyAllowedForStatus(w.status) {
return 0, http.ErrBodyNotAllowed
@ -112,9 +112,9 @@ func bodyAllowedForStatus(status int) bool {
switch {
case status >= 100 && status <= 199:
return false
case status == 204:
case status == http.StatusNoContent:
return false
case status == 304:
case status == http.StatusNotModified:
return false
}
return true