ISSUE-217

This commit is contained in:
Andrea Spacca
2019-04-28 21:36:45 +02:00
parent cd602b9256
commit b5b58f9b3b
2 changed files with 37 additions and 14 deletions

View File

@ -59,7 +59,10 @@ import (
const SERVER_INFO = "transfer.sh"
// parse request with maximum memory of _24Kilobits
const _24K = (1 << 10) * 24
const _24K = (1 << 3) * 24
// parse request with maximum memory of _5Megabytes
const _5M = (1 << 20) * 5
type OptionFn func(*Server)