dnscrypt-proxy/vendor/golang.org/x/net/http2/not_go111.go

22 lines
534 B
Go
Raw Normal View History

2018-08-10 01:39:33 +02:00
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2021-02-20 18:55:58 +01:00
//go:build !go1.11
2018-08-10 01:39:33 +02:00
// +build !go1.11
package http2
2018-11-15 13:38:08 +01:00
import (
"net/http/httptrace"
"net/textproto"
)
2018-08-10 01:39:33 +02:00
2018-11-15 13:38:08 +01:00
func traceHasWroteHeaderField(trace *httptrace.ClientTrace) bool { return false }
2018-08-10 01:39:33 +02:00
2018-11-15 13:38:08 +01:00
func traceWroteHeaderField(trace *httptrace.ClientTrace, k, v string) {}
2018-08-10 01:39:33 +02:00
2018-11-15 13:38:08 +01:00
func traceGot1xxResponseFunc(trace *httptrace.ClientTrace) func(int, textproto.MIMEHeader) error {
2018-08-10 01:39:33 +02:00
return nil
}