mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
don't fake-implement the http.CloseNotifier interface
This commit is contained in:
parent
d1489e5045
commit
93b1ff8e2c
3 changed files with 0 additions and 13 deletions
|
@ -1,6 +1,5 @@
|
||||||
run:
|
run:
|
||||||
skip-files:
|
skip-files:
|
||||||
- http3/response_writer_closenotifier.go
|
|
||||||
- internal/handshake/unsafe_test.go
|
- internal/handshake/unsafe_test.go
|
||||||
|
|
||||||
linters-settings:
|
linters-settings:
|
||||||
|
|
|
@ -81,9 +81,6 @@ func (w *responseWriter) Write(p []byte) (int, error) {
|
||||||
|
|
||||||
func (w *responseWriter) Flush() {}
|
func (w *responseWriter) Flush() {}
|
||||||
|
|
||||||
// This is a NOP. Use http.Request.Context
|
|
||||||
func (w *responseWriter) CloseNotify() <-chan bool { return make(<-chan bool) }
|
|
||||||
|
|
||||||
// test that we implement http.Flusher
|
// test that we implement http.Flusher
|
||||||
var _ http.Flusher = &responseWriter{}
|
var _ http.Flusher = &responseWriter{}
|
||||||
|
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
package http3
|
|
||||||
|
|
||||||
import "net/http"
|
|
||||||
|
|
||||||
// The CloseNotifier is a deprecated interface, and staticcheck will report that from Go 1.11.
|
|
||||||
// By defining it in a separate file, we can exclude this file from staticcheck.
|
|
||||||
|
|
||||||
// test that we implement http.CloseNotifier
|
|
||||||
var _ http.CloseNotifier = &responseWriter{}
|
|
Loading…
Add table
Add a link
Reference in a new issue