From 81f1be5cc016add5e0b8a19c3159fbff96e07829 Mon Sep 17 00:00:00 2001 From: Kamil Kisiel Date: Thu, 17 Oct 2013 09:55:59 -0700 Subject: Add MaxLength to FilesystemStore. --- store.go | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'store.go') 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(). -- cgit v1.2.3