Closed
Description
Go version
go version go1.23.6 linux/amd64
Output of go env
in your module/workspace:
AR='ar'
CC='clang'
CGO_CFLAGS='-O2 -g'
CGO_CPPFLAGS=''
CGO_CXXFLAGS='-O2 -g'
CGO_ENABLED='1'
CGO_FFLAGS='-O2 -g'
CGO_LDFLAGS='-O2 -g'
CXX='clang++'
GCCGO='gccgo'
GO111MODULE=''
GOAMD64='v1'
GOARCH='amd64'
GOBIN=''
GOCACHE='REDACTED'
GOCACHEPROG=''
GODEBUG=''
GOENV='REDACTED'
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOGCCFLAGS='-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build3067490271=/tmp/go-build -gno-record-gcc-switches'
GOHOSTARCH='amd64'
GOHOSTOS='linux'
GOINSECURE=''
GOMOD='REDACTED'
GOMODCACHE='REDACTED'
GONOPROXY='REDACTED'
GONOSUMDB='REDACTED'
GOOS='linux'
GOPATH='REDACTED'
GOPRIVATE='REDACTED'
GOPROXY='https://proxy.golang.org,direct'
GOROOT='REDACTED'
GOSUMDB='sum.golang.org'
GOTELEMETRY='local'
GOTELEMETRYDIR='REDACTED'
GOTMPDIR=''
GOTOOLCHAIN='go1.23.6'
GOTOOLDIR='REDACTED'
GOVCS=''
GOVERSION='go1.23.6'
GOWORK=''
PKG_CONFIG='pkg-config'
What did you do?
Use a custom http.ResponseWriter
that has the Unwrap() http.ResponseWriter
method with h2c.NewHandler
.
What did you see happen?
The handler didn't work properly, and with the GODEBUG=http2debug=2
env I see:
h2c: connection does not support Hijack
What did you expect to see?
The handler to work; the h2c handler to use http.NewResponseController to hijack a connection.