Versions in this module Expand all Collapse all v0 v0.1.1 May 11, 2026 Changes in this version type HTTPProxyConfig + Binding *binding.ConnectivityBinding v0.1.0 May 7, 2026 Changes in this version + var ErrNoURL = errors.New("httpclient: destination has no URL") + func FetchCSRF(ctx context.Context, client *http.Client, fetchURL string) (string, error) + func New(dest *destination.Destination, cfg Config) (*http.Client, string, error) + type Config struct + Dialer Dialer + DisableCookieJar bool + ExtraHeaders http.Header + HTTPProxy *HTTPProxyConfig + TLSConfig *tls.Config + Timeout time.Duration + type Dialer interface + Dial func(ctx context.Context, host string, port uint16, locationID string) (net.Conn, error) + type HTTPProxyConfig struct + LocationID string + ProxyHost string + ProxyPort string + TokenSource TokenSource + type TokenSource interface + Token func(ctx context.Context) (string, error)