github.com/miolini/go@v0.0.0-20160405192216-fca68c8cb408/src/net/http/http.go (about)

     1  // Copyright 2016 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package http
     6  
     7  // maxInt64 is the effective "infinite" value for the Server and
     8  // Transport's byte-limiting readers.
     9  const maxInt64 = 1<<63 - 1
    10  
    11  // TODO(bradfitz): move common stuff here. The other files have accumulated
    12  // generic http stuff in random places.