Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrRedirectLimitExceeded is the error returned when the request responded // with too many redirects ErrRedirectLimitExceeded = errors.New("gentleman: Request exceeded redirect count") // RedirectLimit defines the maximum number of redirects to follow in a request RedirectLimit = 10 // SensitiveHeaders is a map of sensitive HTTP headers that a user // doesn't want passed on a redirect. This is the global variable SensitiveHeaders = []string{ "WWW-Authenticate", "Authorization", "Proxy-Authorization", } )
Functions ¶
Types ¶
type Options ¶
type Options struct { // Limit is the acceptable amount of redirects that we should expect // before returning an error be default this is set to 30. You can change this // globally by modifying the `Limit` variable Limit int // Trusted is a flag that will enable all headers to be // forwarded to the redirect location. Otherwise, the headers specified in // `SensitiveHeaders` will be removed from the request Trusted bool // TrustedHostSuffixes is a list of host suffixes that will be forwarded all // headers. Hosts not in the list will have the headers specified in // `SensitiveHeaders` removed. If `Trusted` is set, this value is ignored. // // Using suffixes can create some unexpected collisions. For instance, a // suffix of `trusted.com` will match a URL with `untrusted.com`. Consider // always including a leading `.` to only match your true trusted hosts if // practical, e.g. `.trusted.com`. TrustedHostSuffixes []string // SensitiveHeaders is a map of sensitive HTTP headers that a user // doesn't want passed on a redirect SensitiveHeaders []string }
Options store the redirect policy options
Click to show internal directories.
Click to hide internal directories.