type net/http.Client

14 uses

	net/http (current package)
		client.go#L57: type Client struct {
		client.go#L109: var DefaultClient = &Client{}
		client.go#L169: func (c *Client) send(req *Request, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {
		client.go#L187: func (c *Client) deadline() time.Time {
		client.go#L194: func (c *Client) transport() RoundTripper {
		client.go#L469: func (c *Client) Get(url string) (resp *Response, err error) {
		client.go#L487: func (c *Client) checkRedirect(req *Request, via []*Request) error {
		client.go#L584: func (c *Client) Do(req *Request) (*Response, error) {
		client.go#L590: func (c *Client) do(req *Request) (retres *Response, reterr error) {
		client.go#L743: func (c *Client) makeHeadersCopier(ireq *Request) func(*Request) {
		client.go#L839: func (c *Client) Post(url, contentType string, body io.Reader) (resp *Response, err error) {
		client.go#L876: func (c *Client) PostForm(url string, data url.Values) (resp *Response, err error) {
		client.go#L904: func (c *Client) Head(url string) (resp *Response, err error) {
		client.go#L919: func (c *Client) CloseIdleConnections() {