gitee.com/zhaochuninhefei/gmgo@v0.0.31-0.20240209061119-069254a02979/gmhttp/httputil/httputil.go (about)

     1  // Copyright 2014 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 httputil provides HTTP utility functions, complementing the
     6  // more common ones in the net/http package.
     7  package httputil
     8  
     9  import (
    10  	"io"
    11  
    12  	"gitee.com/zhaochuninhefei/gmgo/gmhttp/internal"
    13  )
    14  
    15  // NewChunkedReader returns a new chunkedReader that translates the data read from r
    16  // out of HTTP "chunked" format before returning it.
    17  // The chunkedReader returns io.EOF when the final 0-length chunk is read.
    18  //
    19  // NewChunkedReader is not needed by normal applications. The http package
    20  // automatically decodes chunking when reading response bodies.
    21  //goland:noinspection GoUnusedExportedFunction
    22  func NewChunkedReader(r io.Reader) io.Reader {
    23  	return internal.NewChunkedReader(r)
    24  }
    25  
    26  // NewChunkedWriter returns a new chunkedWriter that translates writes into HTTP
    27  // "chunked" format before writing them to w. Closing the returned chunkedWriter
    28  // sends the final 0-length chunk that marks the end of the stream but does
    29  // not send the final CRLF that appears after trailers; trailers and the last
    30  // CRLF must be written separately.
    31  //
    32  // NewChunkedWriter is not needed by normal applications. The http
    33  // package adds chunking automatically if handlers don't set a
    34  // Content-Length header. Using NewChunkedWriter inside a handler
    35  // would result in double chunking or chunking with a Content-Length
    36  // length, both of which are wrong.
    37  func NewChunkedWriter(w io.Writer) io.WriteCloser {
    38  	return internal.NewChunkedWriter(w)
    39  }
    40  
    41  // ErrLineTooLong is returned when reading malformed chunked data
    42  // with lines that are too long.
    43  //goland:noinspection GoUnusedGlobalVariable
    44  var ErrLineTooLong = internal.ErrLineTooLong