Module: HTTP2

Defined in:
lib/http/2/error.rb,
lib/http/2/buffer.rb,
lib/http/2/framer.rb,
lib/http/2/stream.rb,
lib/http/2/emitter.rb,
lib/http/2/version.rb,
lib/http/2/compressor.rb,
lib/http/2/connection.rb,
lib/http/2/flow_buffer.rb

Defined Under Namespace

Modules: Emitter, Error, FlowBuffer, Header Classes: Buffer, Connection, Framer, Stream

Constant Summary collapse

VERSION =
"0.6.1"
DEFAULT_FLOW_WINDOW =

Default connection and stream flow control window (64KB).

65535
DEFAULT_PRIORITY =

Default stream priority (lower values are higher priority).

2**30
CONNECTION_HEADER =

Default connection “fast-fail” preamble string as defined by the spec.

"PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n"
MAX_FRAME_SIZE =

Maximum size of a DATA payload (16383 bytes, ~16K).

2**14-1