ceph-csi/vendor/golang.org/x/net/http2/go111.go

30 lines
704 B
Go
Raw Normal View History

2018-07-18 14:47:22 +00: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-11-26 18:23:56 +00:00
import (
"net/http/httptrace"
"net/textproto"
)
2018-07-18 14:47:22 +00:00
2018-11-26 18:23:56 +00:00
func traceHasWroteHeaderField(trace *httptrace.ClientTrace) bool {
2018-07-18 14:47:22 +00:00
return trace != nil && trace.WroteHeaderField != nil
}
2018-11-26 18:23:56 +00:00
func traceWroteHeaderField(trace *httptrace.ClientTrace, k, v string) {
2018-07-18 14:47:22 +00:00
if trace != nil && trace.WroteHeaderField != nil {
trace.WroteHeaderField(k, []string{v})
}
}
2018-11-26 18:23:56 +00:00
func traceGot1xxResponseFunc(trace *httptrace.ClientTrace) func(int, textproto.MIMEHeader) error {
2018-07-18 14:47:22 +00:00
if trace != nil {
return trace.Got1xxResponse
}
return nil
}