# Functions
No description provided by the author
HasToken reports whether token appears with v, ASCII case-insensitive, with space or comma boundaries.
ProxyFromEnvironment returns the URL of the proxy to use for a given request, as indicated by the environment variables HTTP_PROXY, HTTPS_PROXY and NO_PROXY (or the lowercase versions thereof).
ProxyURL returns a proxy function (for use in a Transport) that always returns the same URL.
# Constants
DefaultMaxIdleConnsPerHost is the default value of Transport's MaxIdleConnsPerHost.
# Variables
ErrBodyReadAfterClose is returned when reading a Request or Response Body after the body has been closed.
ErrLineTooLong is returned when reading request or response bodies with malformed chunked encoding.
ErrSkipAltProtocol is a sentinel error value defined by Transport.RegisterProtocol.
# Structs
ConnectMethod is the map key (in its String form) for keeping persistent TCP connections alive for subsequent HTTP requests.
Transport is an implementation of RoundTripper that supports HTTP, HTTPS, and HTTP proxies (for either HTTP or HTTPS with CONNECT).
transportRequest is a wrapper around a *http.Request that adds optional extra headers to write.