Move chunkerBufSize to more appropiate location

This commit is contained in:
Alexander Neumann
2015-05-01 17:40:50 +02:00
parent 9010d7bb3a
commit 0662c14fee
2 changed files with 4 additions and 4 deletions
+4 -1
View File
@@ -21,7 +21,10 @@ type poolStats struct {
max int
}
const maxCiphertextSize = crypto.Extension + chunker.MaxSize
const (
maxCiphertextSize = crypto.Extension + chunker.MaxSize
chunkerBufSize = 512 * chunker.KiB
)
func (s *poolStats) Get(k string) {
s.m.Lock()