Documentation
¶
Overview ¶
Package stickyheader DO NOT MODIFY THIS! cookie.go is copied from net/http/cookie.go in go 1.23.0 or above, and modified a little bit. Since ParseSetCookie func is introduced in Go 1.23.0. See doc https://pkg.go.dev/net/http#ParseSetCookie Up to now(2024.11.30), https://github.com/traefik/yaegi (latest version is v0.16.1) only supports Go version 1.21 and 1.22 in this case, when using this func in yaegi, there will be a compile error: package http "net/http" has no symbol ParseSetCookie so, in order to use this func, we need to copy this file from net/http/cookie.go in Go 1.23.0 please remove it and directly use http.ParseSetCookie when yaegi supports Go 1.23.0
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func IsPrint ¶
IsPrint returns whether s is ASCII and printable according to https://tools.ietf.org/html/rfc20#section-4.2.
func IsTokenRune ¶
func ParseSetCookie ¶
ParseSetCookie parses a Set-Cookie header value and returns a cookie. It returns an error on syntax error.
Types ¶
type Config ¶
type Config struct { CacheSize int `json:"cacheSize,omitempty"` HeaderName string `json:"headerName,omitempty"` CookieName string `json:"cookieName,omitempty"` }
Config the plugin configuration.
func CreateConfig ¶
func CreateConfig() *Config
CreateConfig creates the default plugin configuration.
type CookieManager ¶
type CookieManager struct { Config *Config // contains filtered or unexported fields }
func (*CookieManager) ServeHTTP ¶
func (c *CookieManager) ServeHTTP(rw http.ResponseWriter, req *http.Request)