Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for outgoingLength (0.18 sec)

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

    type neverEnding byte
    
    func (b neverEnding) Read(p []byte) (n int, err error) {
    	for i := range p {
    		p[i] = byte(b)
    	}
    	return len(p), nil
    }
    
    // outgoingLength is a copy of the unexported
    // (*http.Request).outgoingLength method.
    func outgoingLength(req *http.Request) int64 {
    	if req.Body == nil || req.Body == http.NoBody {
    		return 0
    	}
    	if req.ContentLength != 0 {
    		return req.ContentLength
    	}
    	return -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top