Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for outgoingLength (0.15 sec)

  1. src/net/http/transfer.go

    		t.Close = rr.Close
    		t.TransferEncoding = rr.TransferEncoding
    		t.Header = rr.Header
    		t.Trailer = rr.Trailer
    		t.Body = rr.Body
    		t.BodyCloser = rr.Body
    		t.ContentLength = rr.outgoingLength()
    		if t.ContentLength < 0 && len(t.TransferEncoding) == 0 && t.shouldSendChunkedRequestBody() {
    			t.TransferEncoding = []string{"chunked"}
    		}
    		// If there's a body, conservatively flush the headers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. src/net/http/client.go

    		if reqMethod != "GET" && reqMethod != "HEAD" {
    			redirectMethod = "GET"
    		}
    	case 307, 308:
    		redirectMethod = reqMethod
    		shouldRedirect = true
    		includeBody = true
    
    		if ireq.GetBody == nil && ireq.outgoingLength() != 0 {
    			// We had a request body, and 307/308 require
    			// re-sending it, but GetBody is not defined. So just
    			// return this response to the user instead of an
    			// error, like we did in Go 1.7 and earlier.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
Back to top