1
0
mirror of https://github.com/dutchcoders/transfer.sh.git synced 2020-11-18 19:53:40 -08:00

Merge pull request #132 from iftahbe/master

ISSUE-131 fix mistake with request max memory
This commit is contained in:
Andrea Spacca 2018-06-27 21:40:00 +02:00 committed by GitHub
commit b347a4d998
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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