From: Aaron Jacobs Date: Sun, 22 Feb 2015 23:44:39 +0000 (+1100) Subject: net/http: Removed some unused constants in request.go. X-Git-Tag: go1.5beta1~1928 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d5630142fdba6280c47458cf30165d3d62d44fc3;p=gostls13.git net/http: Removed some unused constants in request.go. Change-Id: I05cdf357249166a45105703e9317793aa2088844 Reviewed-on: https://go-review.googlesource.com/5560 Reviewed-by: Andrew Gerrand --- diff --git a/src/net/http/request.go b/src/net/http/request.go index f7a7f19b9b..639a579bdf 100644 --- a/src/net/http/request.go +++ b/src/net/http/request.go @@ -25,9 +25,6 @@ import ( ) const ( - maxValueLength = 4096 - maxHeaderLines = 1024 - chunkSize = 4 << 10 // 4 KB chunks defaultMaxMemory = 32 << 20 // 32 MB )