not_go17.go 511 B

12345678910111213141516171819202122
  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 "net/http"
  7. type fakeContext struct{}
  8. func (fakeContext) Done() <-chan struct{} { return nil }
  9. func (fakeContext) Err() error { panic("should not be called") }
  10. func reqContext(r *http.Request) fakeContext {
  11. return fakeContext{}
  12. }
  13. func setResponseUncompressed(res *http.Response) {
  14. // Nothing.
  15. }