1
0
mirror of https://github.com/golang/go synced 2024-09-30 17:38:33 -06:00

net/http: Removed some unused constants in request.go.

Change-Id: I05cdf357249166a45105703e9317793aa2088844
Reviewed-on: https://go-review.googlesource.com/5560
Reviewed-by: Andrew Gerrand <adg@golang.org>
This commit is contained in:
Aaron Jacobs 2015-02-23 10:44:39 +11:00 committed by Andrew Gerrand
parent 02d80b9e93
commit d5630142fd

View File

@ -25,9 +25,6 @@ import (
)
const (
maxValueLength = 4096
maxHeaderLines = 1024
chunkSize = 4 << 10 // 4 KB chunks
defaultMaxMemory = 32 << 20 // 32 MB
)