Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for flow_on_data_length (0.2 sec)

  1. src/net/http/h2_bundle.go

    	}
    	if f.Length > 0 {
    		// Check whether the client has flow control quota.
    		if !http2takeInflows(&sc.inflow, &st.inflow, f.Length) {
    			return sc.countError("flow_on_data_length", http2streamError(id, http2ErrCodeFlowControl))
    		}
    
    		if len(data) > 0 {
    			st.bodyBytes += int64(len(data))
    			wrote, err := st.body.Write(data)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top