Skip to content

Commit 55989e2

Browse files
committed
http2/h2c: use ResponseController for hijacking connections
Fixes golang/go#71999 Change-Id: I38b236e47bc5893c5a84ef33abbeab0828125bd2 Reviewed-on: https://go-review.googlesource.com/c/net/+/655615 Reviewed-by: Junyang Shao <[email protected]> Reviewed-by: Damien Neil <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 2914f46 commit 55989e2

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

http2/h2c/h2c.go

+4-10
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,8 @@ func (s h2cHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
132132
// of the body, and reforward the client preface on the net.Conn this function
133133
// creates.
134134
func initH2CWithPriorKnowledge(w http.ResponseWriter) (net.Conn, error) {
135-
hijacker, ok := w.(http.Hijacker)
136-
if !ok {
137-
return nil, errors.New("h2c: connection does not support Hijack")
138-
}
139-
conn, rw, err := hijacker.Hijack()
135+
rc := http.NewResponseController(w)
136+
conn, rw, err := rc.Hijack()
140137
if err != nil {
141138
return nil, err
142139
}
@@ -163,18 +160,15 @@ func h2cUpgrade(w http.ResponseWriter, r *http.Request) (_ net.Conn, settings []
163160
if err != nil {
164161
return nil, nil, err
165162
}
166-
hijacker, ok := w.(http.Hijacker)
167-
if !ok {
168-
return nil, nil, errors.New("h2c: connection does not support Hijack")
169-
}
170163

171164
body, err := io.ReadAll(r.Body)
172165
if err != nil {
173166
return nil, nil, err
174167
}
175168
r.Body = io.NopCloser(bytes.NewBuffer(body))
176169

177-
conn, rw, err := hijacker.Hijack()
170+
rc := http.NewResponseController(w)
171+
conn, rw, err := rc.Hijack()
178172
if err != nil {
179173
return nil, nil, err
180174
}

0 commit comments

Comments
 (0)