go17.go 377 B

12345678910111213141516
  1. // Copyright 2016 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build go1.7
  5. package http2
  6. import (
  7. "context"
  8. "net/http"
  9. )
  10. func reqContext(r *http.Request) context.Context { return r.Context() }
  11. func setResponseUncompressed(res *http.Response) { res.Uncompressed = true }