ldhttp

package
v4.0.0-...-2a44fb3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 29, 2020 License: Apache-2.0 Imports: 9 Imported by: 8

Documentation

Overview

Package ldhttp provides helper functions for custom HTTP configuration. You will not need to use this package unless you need to extend the default Go HTTP client behavior, for instance, to specify additional trusted CA certificates.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewHTTPTransport

func NewHTTPTransport(options ...TransportOption) (*http.Transport, *net.Dialer, error)

NewHTTPTransport creates a customized http.Transport struct using the specified options. It returns both the Transport and an associated net.Dialer.

To configure the LaunchDarkly SDK, rather than calling this function directly, it is simpler to use ld.NewHTTPClientFactory().

Types

type TransportOption

type TransportOption interface {
	// contains filtered or unexported methods
}

TransportOption is the interface for optional configuration parameters that can be passed to NewHTTPTransport.

func CACertFileOption

func CACertFileOption(filePath string) TransportOption

CACertFileOption specifies a CA certificate to be added to the trusted root CA list for HTTPS requests, when used with NewHTTPTransport. It reads the certificate data from a file in PEM format.

func CACertOption

func CACertOption(certData []byte) TransportOption

CACertOption specifies a CA certificate to be added to the trusted root CA list for HTTPS requests, when used with NewHTTPTransport.

func ConnectTimeoutOption

func ConnectTimeoutOption(timeout time.Duration) TransportOption

ConnectTimeoutOption specifies the maximum time to wait for a TCP connection, when used with NewHTTPTransport.

func ProxyOption

func ProxyOption(url url.URL) TransportOption

ProxyOption specifies a proxy URL to be used for all requests, when used with NewHTTPTransport. This overrides any setting of the HTTP_PROXY, HTTPS_PROXY, or NO_PROXY environment variables.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL