aboutsummaryrefslogtreecommitdiffstats
path: root/src/kube2msb/vendor/golang.org/x/net/context/ctxhttp/cancelreq_go14.go
blob: 56bcbadb85fcc2a69db540797f41511cf16e5a6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2015 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.5

package ctxhttp

import "net/http"

type requestCanceler interface {
	CancelRequest(*http.Request)
}

func canceler(client *http.Client, req *http.Request) func() {
	rc, ok := client.Transport.(requestCanceler)
	if !ok {
		return func() {}
	}
	return func() {
		rc.CancelRequest(req)
	}
}