https://github.com/coreos/etcd
Raw File
Tip revision: 9f5189cd001593cf304ce45ad319777b2fe884f8 authored by Gyu-Ho Lee on 12 February 2016, 19:13:20 UTC
tools/v3benchmark: fix import pb path
Tip revision: 9f5189c
cancelreq.go
// 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.

// borrowed from golang/net/context/ctxhttp/cancelreq.go

// +build go1.5

package client

import "net/http"

func requestCanceler(tr CancelableTransport, req *http.Request) func() {
	ch := make(chan struct{})
	req.Cancel = ch

	return func() {
		close(ch)
	}
}
back to top