mirror of
https://github.com/mmatczuk/go-http-tunnel.git
synced 2026-05-15 06:06:03 -06:00
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20171123081856-c7086645de24 to 0.7.0. - [Release notes](https://github.com/golang/net/releases) - [Commits](https://github.com/golang/net/commits/v0.7.0) --- updated-dependencies: - dependency-name: golang.org/x/net dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
722 B
Go
30 lines
722 B
Go
// 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.
|
|
|
|
//go:build go1.11
|
|
// +build go1.11
|
|
|
|
package http2
|
|
|
|
import (
|
|
"net/http/httptrace"
|
|
"net/textproto"
|
|
)
|
|
|
|
func traceHasWroteHeaderField(trace *httptrace.ClientTrace) bool {
|
|
return trace != nil && trace.WroteHeaderField != nil
|
|
}
|
|
|
|
func traceWroteHeaderField(trace *httptrace.ClientTrace, k, v string) {
|
|
if trace != nil && trace.WroteHeaderField != nil {
|
|
trace.WroteHeaderField(k, []string{v})
|
|
}
|
|
}
|
|
|
|
func traceGot1xxResponseFunc(trace *httptrace.ClientTrace) func(int, textproto.MIMEHeader) error {
|
|
if trace != nil {
|
|
return trace.Got1xxResponse
|
|
}
|
|
return nil
|
|
}
|