http

package
v3.4.0 Latest Latest
Warning

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

Go to latest
Published: Sep 23, 2023 License: GPL-3.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// ContentTypeBinary for binary Content-Type
	ContentTypeBinary = "application/octet-stream"
	// ContentTypeForm for URL encoded form Content-Type
	ContentTypeForm = "application/x-www-form-urlencoded"
	// ContentTypeJSON for JSON Content-Type
	ContentTypeJSON = "application/json; charset=utf-8"
	// ContentTypeHTML for HTML Content-Type
	ContentTypeHTML = "text/html; charset=utf-8"
	// ContentTypeText for text Content-Type
	ContentTypeText = "text/plain; charset=utf-8"
)
View Source
const DefaultTimeout = time.Duration(5 * time.Second)

DefaultTimeout is the default HTTP request timeout

View Source
const UserAgent = "Mozilla/5.0 (compatible; Feedpushr/1.0; +https://github.com/ncarlier/feedpushr)"

UserAgent used by HTTP client

Variables

View Source
var DefaultClient = &http.Client{
	Timeout:   DefaultTimeout,
	Transport: DefaultTransport,
}

DefaultClient is the default HTTP client with timeout

View Source
var DefaultTransport = &http.Transport{
	Proxy: http.ProxyFromEnvironment,
	DialContext: (&net.Dialer{
		Timeout:   5 * time.Second,
		KeepAlive: 15 * time.Second,
	}).DialContext,

	MaxIdleConns:          50,
	IdleConnTimeout:       20 * time.Second,
	TLSHandshakeTimeout:   10 * time.Second,
	ExpectContinueTimeout: 1 * time.Second,
}

DefaultTransport is the default HTTP client transport

Functions

func New

func New(timeout time.Duration) *http.Client

New HTTP client

Types

This section is empty.

Jump to

Keyboard shortcuts

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