ingress-nginx-helm/vendor/golang.org/x/net/http2/go111.go

30 lines
704 B
Go
Raw Normal View History

2018-07-12 13:19:04 -04: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.
// +build go1.11
package http2
2018-12-05 13:27:09 -03:00
import (
"net/http/httptrace"
"net/textproto"
)
2018-09-22 14:54:24 -03:00
2018-12-05 13:27:09 -03:00
func traceHasWroteHeaderField(trace *httptrace.ClientTrace) bool {
2018-07-12 13:19:04 -04:00
return trace != nil && trace.WroteHeaderField != nil
}
2018-12-05 13:27:09 -03:00
func traceWroteHeaderField(trace *httptrace.ClientTrace, k, v string) {
2018-07-12 13:19:04 -04:00
if trace != nil && trace.WroteHeaderField != nil {
trace.WroteHeaderField(k, []string{v})
}
}
2018-09-22 14:54:24 -03:00
2018-12-05 13:27:09 -03:00
func traceGot1xxResponseFunc(trace *httptrace.ClientTrace) func(int, textproto.MIMEHeader) error {
2018-09-22 14:54:24 -03:00
if trace != nil {
return trace.Got1xxResponse
}
return nil
}