summaryrefslogtreecommitdiff
path: root/store.go
diff options
context:
space:
mode:
authorKamil Kisiel <kamil@kamilkisiel.net>2013-10-18 07:10:39 +0400
committerKamil Kisiel <kamil@kamilkisiel.net>2013-10-18 07:10:39 +0400
commitac7032cee41229d038a6c65cba4ccbedbe9268b9 (patch)
treedbfb535b7b2a2a0f7d76fb5efe2d160f3e9d2580 /store.go
parentba63748c4ac1e5314ce46afb09cd6b7cc99718f8 (diff)
parent81f1be5cc016add5e0b8a19c3159fbff96e07829 (diff)
Merge pull request #17 from gorilla/MaxLength
Add MaxLength to FilesystemStore.
Diffstat (limited to 'store.go')
-rw-r--r--store.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/store.go b/store.go
index fe31c08..a5cb867 100644
--- a/store.go
+++ b/store.go
@@ -137,6 +137,17 @@ type FilesystemStore struct {
path string
}
+// MaxLength restricts the maximum length of new sessions to l.
+// If l is 0 there is no limit to the size of a session, use with caution.
+// The default for a new FilesystemStore is 4096.
+func (s *FilesystemStore) MaxLength(l int) {
+ for _, c := range s.Codecs {
+ if codec, ok := c.(*securecookie.SecureCookie); ok {
+ codec.MaxLength(l)
+ }
+ }
+}
+
// Get returns a session for the given name after adding it to the registry.
//
// See CookieStore.Get().