Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NewServerConn (0.11 sec)

  1. src/net/http/httputil/persist.go

    	pipereq         map[*http.Request]uint
    
    	pipe textproto.Pipeline
    }
    
    // NewServerConn is an artifact of Go's early HTTP implementation.
    // It is low-level, old, and unused by Go's current HTTP stack.
    // We should have deleted it before Go 1.
    //
    // Deprecated: Use the Server in package [net/http] instead.
    func NewServerConn(c net.Conn, r *bufio.Reader) *ServerConn {
    	if r == nil {
    		r = bufio.NewReader(c)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top