Protocol::HTTP3SourceProtocolHTTP3Server

class Server

An HTTP/3 server connection.

Definitions

def submit_response(stream_id, headers, body = nil)

Submit a response for the given stream and return the stream used for the response body.

Implementation

def submit_response(stream_id, headers, body = nil)
	Stream.new(self, stream_id).tap do
		native_submit_response(stream_id, headers, body)
	end
end