type net/http.Client

20 uses

	net/http (current package)
		client.go#L57: type Client struct {
		client.go#L109: var DefaultClient = &Client{}
		client.go#L174: func (c *Client) send(req *Request, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {
		client.go#L197: func (c *Client) deadline() time.Time {
		client.go#L204: func (c *Client) transport() RoundTripper {
		client.go#L484: func (c *Client) Get(url string) (resp *Response, err error) {
		client.go#L502: func (c *Client) checkRedirect(req *Request, via []*Request) error {
		client.go#L591: func (c *Client) Do(req *Request) (*Response, error) {
		client.go#L597: func (c *Client) do(req *Request) (retres *Response, reterr error) {
		client.go#L760: func (c *Client) makeHeadersCopier(ireq *Request) func(req *Request, stripSensitiveHeaders, stripBodyHeaders bool) {
		client.go#L874: func (c *Client) Post(url, contentType string, body io.Reader) (resp *Response, err error) {
		client.go#L917: func (c *Client) PostForm(url string, data url.Values) (resp *Response, err error) {
		client.go#L951: func (c *Client) Head(url string) (resp *Response, err error) {
		client.go#L966: func (c *Client) CloseIdleConnections() {

	github.com/coder/websocket
		dial.go#L27: 	HTTPClient *http.Client

	github.com/gotd/td/telegram/dcs
		http.go#L59: 	client *http.Client
		http.go#L81: func newHTTPConn(client *http.Client, urls []string, maxDelay, waitAfter, maxWait int) *httpConn {
		http.go#L284: 	client     *http.Client
		http.go#L342: 	Client *http.Client
		http.go#L383: 		o.Client = &http.Client{