Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var AddressForbidden error = errors.New("address forbidden, you may need to set AllowedUntrustedInternalConnections to allow an integration access to your internal network")
Functions ¶
func IsReservedIP ¶
Types ¶
type Client ¶
func NewHTTPClient ¶
func NewHTTPClient(enableInsecureConnections bool, allowHost func(host string) bool, allowIP func(ip net.IP) bool) *Client
NewHTTPClient returns a variation the default implementation of Client. It uses a Transport with the same settings as the default Transport but with the following modifications:
- shorter timeout for dial and TLS handshake (defined as constant "connectTimeout")
- timeout for the end-to-end request (defined as constant "requestTimeout")
type DialContextFunction ¶
type HTTPService ¶
Wraps the functionality for creating a new http.Client to encapsulate that and allow it to be mocked when testing
func MakeHTTPService ¶
func MakeHTTPService(configService configservice.ConfigService) HTTPService
type HTTPServiceImpl ¶
type HTTPServiceImpl struct {
// contains filtered or unexported fields
}
func (*HTTPServiceImpl) Close ¶
func (h *HTTPServiceImpl) Close()
func (*HTTPServiceImpl) MakeClient ¶
func (h *HTTPServiceImpl) MakeClient(trustURLs bool) *Client
Click to show internal directories.
Click to hide internal directories.