Module: Biryani::FrameType
- Defined in:
- lib/biryani/frame.rb
Constant Summary collapse
- DATA =
0x00- HEADERS =
0x01- PRIORITY =
0x02- RST_STREAM =
0x03- SETTINGS =
0x04- PUSH_PROMISE =
0x05- PING =
0x06- GOAWAY =
0x07- WINDOW_UPDATE =
0x08- CONTINUATION =
0x09
Class Method Summary collapse
Class Method Details
.unknown?(typ) ⇒ Boolean
15 16 17 |
# File 'lib/biryani/frame.rb', line 15 def self.unknown?(typ) typ.negative? || typ > 0x09 end |