Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for WriteRSTStream (0.16 sec)

  1. src/net/http/h2_bundle.go

    	}
    	return &http2RSTStreamFrame{fh, http2ErrCode(binary.BigEndian.Uint32(p[:4]))}, nil
    }
    
    // WriteRSTStream writes a RST_STREAM frame.
    //
    // It will perform exactly one Write to the underlying Writer.
    // It is the caller's responsibility to not call other Write methods concurrently.
    func (f *http2Framer) WriteRSTStream(streamID uint32, code http2ErrCode) error {
    	if !http2validStreamID(streamID) && !f.AllowIllegalWrites {
    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