Module: HTTP::Protocol

Defined in:
lib/http/protocol/cgi.rb,
lib/http/protocol/url.rb,
lib/http/protocol/error.rb,
lib/http/protocol/headers.rb,
lib/http/protocol/methods.rb,
lib/http/protocol/version.rb,
lib/http/protocol/reference.rb,
lib/http/protocol/http2/frame.rb,
lib/http/protocol/http2/client.rb,
lib/http/protocol/http2/framer.rb,
lib/http/protocol/http2/padded.rb,
lib/http/protocol/http2/server.rb,
lib/http/protocol/http2/stream.rb,
lib/http/protocol/http1/connection.rb,
lib/http/protocol/http2/connection.rb,
lib/http/protocol/http2/data_frame.rb,
lib/http/protocol/http2/ping_frame.rb,
lib/http/protocol/http2/flow_control.rb,
lib/http/protocol/http2/goaway_frame.rb,
lib/http/protocol/http2/headers_frame.rb,
lib/http/protocol/http2/priority_frame.rb,
lib/http/protocol/http2/settings_frame.rb,
lib/http/protocol/http2/continuation_frame.rb,
lib/http/protocol/http2/push_promise_frame.rb,
lib/http/protocol/http2/reset_stream_frame.rb,
lib/http/protocol/http2/window_update_frame.rb

Defined Under Namespace

Modules: CGI, HTTP1, HTTP2, Methods, URL Classes: BadRequest, ConnectionClosed, Error, FlowControlError, FrameSizeError, HandshakeError, Headers, InternalError, ProtocolError, Reference, StreamClosed, StreamLimitExceeded

Constant Summary collapse

CONTENT_LENGTH =
'content-length'.freeze
TRANSFER_ENCODING =
'transfer-encoding'.freeze
CHUNKED =
'chunked'.freeze
CONNECTION =
'connection'.freeze
CLOSE =
'close'.freeze
KEEP_ALIVE =
'keep-alive'.freeze
HOST =
'host'.freeze
UPGRADE =
'upgrade'.freeze
VERSION =
"0.17.0"