aboutsummaryrefslogtreecommitdiff
path: root/strings.go
diff options
context:
space:
mode:
authorGravatar Gürkan Yeşilyurt <gurkanyesilyurt07@gmail.com> 2024-04-08 19:23:23 +0300
committerGravatar GitHub <noreply@github.com> 2024-04-08 18:23:23 +0200
commita77e9c6b7907610f423cb3ac1cf447a5b292c6fa (patch)
treeaed2cad166e397f11b83db4fc17880909c9c4608 /strings.go
parentchore(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 (#1748) (diff)
downloadfasthttp-a77e9c6b7907610f423cb3ac1cf447a5b292c6fa.tar.gz
fasthttp-a77e9c6b7907610f423cb3ac1cf447a5b292c6fa.tar.bz2
fasthttp-a77e9c6b7907610f423cb3ac1cf447a5b292c6fa.zip
add support for CHIPS (Cookies Having Independent Partitioned State) (#1752)
* add support for CHIPS (Cookies Having Independent Partitioned State) * fix comment lines * Update cookie.go fix lint error: should omit comparison to bool constant
Diffstat (limited to 'strings.go')
-rw-r--r--strings.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/strings.go b/strings.go
index a9e4072..36ed029 100644
--- a/strings.go
+++ b/strings.go
@@ -63,6 +63,7 @@ var (
strCookiePath = []byte("path")
strCookieHTTPOnly = []byte("HttpOnly")
strCookieSecure = []byte("secure")
+ strCookiePartitioned = []byte("Partitioned")
strCookieMaxAge = []byte("max-age")
strCookieSameSite = []byte("SameSite")
strCookieSameSiteLax = []byte("Lax")