Documentation ¶
Index ¶
- Constants
- func AppendForwardedForHeader(req *http.Request)
- func ChooseBindAddressForInterface(intfName string) (net.IP, error)
- func ChooseHostInterface() (net.IP, error)
- func CloneHeader(in http.Header) http.Header
- func CloneRequest(req *http.Request) *http.Request
- func CloseIdleConnectionsFor(transport http.RoundTripper)
- func FormatURL(scheme string, host string, port int, path string) *url.URL
- func GetClientIP(req *http.Request) net.IP
- func GetHTTPClient(req *http.Request) string
- func IPNetEqual(ipnet1, ipnet2 *net.IPNet) bool
- func IsConnectionRefused(err error) bool
- func IsConnectionReset(err error) bool
- func IsHTTP2ConnectionLost(err error) bool
- func IsNoRoutesError(err error) bool
- func IsProbableEOF(err error) bool
- func IsTimeout(err error) bool
- func JoinPreservingTrailingSlash(elem ...string) string
- func JoinSchemeNamePort(scheme, name, port string) string
- func NewProxierWithNoProxyCIDR(delegate func(req *http.Request) (*url.URL, error)) func(req *http.Request) (*url.URL, error)
- func NewWarningHeader(code int, agent, text string) (string, error)
- func ResolveBindAddress(bindAddress net.IP) (net.IP, error)
- func SetOldTransportDefaults(t *http.Transport) *http.Transport
- func SetTransportDefaults(t *http.Transport) *http.Transport
- func SourceIPs(req *http.Request) []net.IP
- func SplitSchemeNamePort(id string) (scheme, name, port string, valid bool)
- func TLSClientConfig(transport http.RoundTripper) (*tls.Config, error)
- type AddressFamily
- type AddressFamilyPreference
- type DialFunc
- type Dialer
- type DialerFunc
- type PortRange
- type RoundTripperWrapper
- type Route
- type RouteFile
- type TLSClientConfigHolder
- type WarningHeader
Constants ¶
const (
// LoopbackInterfaceName is the default name of the loopback interface
LoopbackInterfaceName = "lo"
)
Variables ¶
This section is empty.
Functions ¶
func AppendForwardedForHeader ¶
Prepares the X-Forwarded-For header for another forwarding hop by appending the previous sender's IP address to the X-Forwarded-For chain.
func ChooseBindAddressForInterface ¶ added in v0.17.0
ChooseBindAddressForInterface choose a global IP for a specific interface, with priority given to IPv4. This is required in case of network setups where default routes are present, but network interfaces use only link-local addresses (e.g. as described in RFC5549). e.g when using BGP to announce a host IP over link-local ip addresses and this ip address is attached to the lo interface.
func ChooseHostInterface ¶
ChooseHostInterface is a method used fetch an IP for a daemon. If there is no routing info file, it will choose a global IP from the system interfaces. Otherwise, it will use IPv4 and IPv6 route information to return the IP of the interface with a gateway on it (with priority given to IPv4). For a node with no internet connection, it returns error.
func CloneHeader ¶
CloneHeader creates a deep copy of an http.Header.
func CloneRequest ¶
CloneRequest creates a shallow copy of the request along with a deep copy of the Headers.
func CloseIdleConnectionsFor ¶ added in v0.23.0
func CloseIdleConnectionsFor(transport http.RoundTripper)
CloseIdleConnectionsFor close idles connections for the Transport. If the Transport is wrapped it iterates over the wrapped round trippers until it finds one that implements the CloseIdleConnections method. If the Transport does not have a CloseIdleConnections method then this function does nothing.
func GetClientIP ¶
Extracts and returns the clients IP from the given request. Looks at X-Forwarded-For header, X-Real-Ip header and request.RemoteAddr in that order. Returns nil if none of them are set or is set to an invalid value.
func GetHTTPClient ¶
func IPNetEqual ¶
IPNetEqual checks if the two input IPNets are representing the same subnet. For example,
10.0.0.1/24 and 10.0.0.0/24 are the same subnet. 10.0.0.1/24 and 10.0.0.0/25 are not the same subnet.
func IsConnectionRefused ¶ added in v0.16.4
Returns if the given err is "connection refused" error
func IsConnectionReset ¶
Returns if the given err is "connection reset by peer" error.
func IsHTTP2ConnectionLost ¶ added in v0.28.0
Returns if the given err is "http2: client connection lost" error.
func IsNoRoutesError ¶
IsNoRoutesError checks if an error is of type noRoutesError
func IsProbableEOF ¶
IsProbableEOF returns true if the given error resembles a connection termination scenario that would justify assuming that the watch is empty. These errors are what the Go http stack returns back to us which are general connection closure errors (strongly correlated) and callers that need to differentiate probable errors in connection behavior between normal "this is disconnected" should use the method.
func IsTimeout ¶ added in v0.15.12
IsTimeout returns true if the given error is a network timeout error
func JoinPreservingTrailingSlash ¶
JoinPreservingTrailingSlash does a path.Join of the specified elements, preserving any trailing slash on the last non-empty segment
func JoinSchemeNamePort ¶
JoinSchemeNamePort returns a string that specifies the scheme, name, and port:
- "<name>"
- "<name>:<port>"
- "<scheme>:<name>:<port>"
None of the parameters may contain a ':' character Name is required Scheme must be "", "http", or "https"
func NewProxierWithNoProxyCIDR ¶
func NewProxierWithNoProxyCIDR(delegate func(req *http.Request) (*url.URL, error)) func(req *http.Request) (*url.URL, error)
NewProxierWithNoProxyCIDR constructs a Proxier function that respects CIDRs in NO_PROXY and delegates if no matching CIDRs are found
func NewWarningHeader ¶ added in v0.19.0
func ResolveBindAddress ¶ added in v0.17.0
ResolveBindAddress returns the IP address of a daemon, based on the given bindAddress: If bindAddress is unset, it returns the host's default IP, as with ChooseHostInterface(). If bindAddress is unspecified or loopback, it returns the default IP of the same address family as bindAddress. Otherwise, it just returns bindAddress.
func SetOldTransportDefaults ¶
SetOldTransportDefaults applies the defaults from http.DefaultTransport for the Proxy, Dial, and TLSHandshakeTimeout fields if unset
func SetTransportDefaults ¶
SetTransportDefaults applies the defaults from http.DefaultTransport for the Proxy, Dial, and TLSHandshakeTimeout fields if unset
func SourceIPs ¶
SourceIPs splits the comma separated X-Forwarded-For header and joins it with the X-Real-Ip header and/or req.RemoteAddr, ignoring invalid IPs. The X-Real-Ip is omitted if it's already present in the X-Forwarded-For chain. The req.RemoteAddr is always the last IP in the returned list. It returns nil if all of these are empty or invalid.
func SplitSchemeNamePort ¶
SplitSchemeNamePort takes a string of the following forms:
- "<name>", returns "", "<name>","", true
- "<name>:<port>", returns "", "<name>","<port>",true
- "<scheme>:<name>:<port>", returns "<scheme>","<name>","<port>",true
Name must be non-empty or valid will be returned false. Scheme must be "http" or "https" if specified Port is returned as a string, and it is not required to be numeric (could be used for a named port, for example).
func TLSClientConfig ¶
func TLSClientConfig(transport http.RoundTripper) (*tls.Config, error)
Types ¶
type AddressFamily ¶
type AddressFamily uint
type AddressFamilyPreference ¶ added in v0.17.0
type AddressFamilyPreference []AddressFamily
type Dialer ¶
type Dialer interface { // Dial connects to the host specified by req's URL, writes the request to the connection, and // returns the opened net.Conn. Dial(req *http.Request) (net.Conn, error) }
Dialer dials a host and writes a request to it.
type DialerFunc ¶
DialerFunc implements Dialer for the provided function.
type PortRange ¶
PortRange represents a range of TCP/UDP ports. To represent a single port, set Size to 1.
func ParsePortRange ¶
ParsePortRange parses a string of the form "min-max", inclusive at both ends, and initializes a new PortRange from it.
func ParsePortRangeOrDie ¶
func (*PortRange) Set ¶
Set parses a string of the form "value", "min-max", or "min+offset", inclusive at both ends, and sets the PortRange from it. This is part of the flag.Value and pflag.Value interfaces.
type RoundTripperWrapper ¶
type RoundTripperWrapper interface { http.RoundTripper WrappedRoundTripper() http.RoundTripper }
type TLSClientConfigHolder ¶
type WarningHeader ¶ added in v0.19.0
type WarningHeader struct { // Codeindicates the type of warning. 299 is a miscellaneous persistent warning Code int // Agent contains the name or pseudonym of the server adding the Warning header. // A single "-" is recommended when agent is unknown. Agent string // Warning text Text string }
WarningHeader contains a single RFC2616 14.46 warnings header
func ParseWarningHeader ¶ added in v0.19.0
func ParseWarningHeader(header string) (result WarningHeader, remainder string, err error)
ParseWarningHeader extracts one RFC2616 14.46 warning from the specified header, returning an error if the header does not contain a correctly formatted warning. Any remaining content in the header is returned.
func ParseWarningHeaders ¶ added in v0.19.0
func ParseWarningHeaders(headers []string) ([]WarningHeader, []error)
ParseWarningHeaders extract RFC2616 14.46 warnings headers from the specified set of header values. Multiple comma-separated warnings per header are supported. If errors are encountered on a header, the remainder of that header are skipped and subsequent headers are parsed. Returns successfully parsed warnings and any errors encountered.