Class: PacketGen::Header::TCP::WS
- Inherits:
-
Option
- Object
- Types::Fields
- Base
- Option
- PacketGen::Header::TCP::WS
- Defined in:
- lib/packetgen/header/tcp/option.rb
Overview
Window Size TCP option
Constant Summary
Constants inherited from Option
Option::ECHOREPLY_KIND, Option::ECHO_KIND, Option::EOL_KIND, Option::MSS_KIND, Option::NOP_KIND, Option::SACKOK_KIND, Option::SACK_KIND, Option::TS_KIND, Option::WS_KIND
Instance Attribute Summary
Attributes inherited from Option
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ WS
constructor
A new instance of WS.
- #to_human ⇒ String
Methods inherited from Option
#has_length?, #inspect, #read, #to_s
Methods inherited from Base
bind_header, #header_id, inherited, #ip_header, known_headers, #parse?, #protocol_name
Methods inherited from Types::Fields
#[], #[]=, #body=, define_bit_fields_on, define_field, define_field_after, define_field_before, #fields, #force_binary, inherited, #inspect, #read, #sz, #to_h, #to_s
Constructor Details
#initialize(options = {}) ⇒ WS
Returns a new instance of WS.
160 161 162 163 |
# File 'lib/packetgen/header/tcp/option.rb', line 160 def initialize(={}) super .merge!(kind: WS_KIND, length: 3) self[:value] = Types::Int8.new([:value]) end |
Instance Method Details
#to_human ⇒ String
166 167 168 |
# File 'lib/packetgen/header/tcp/option.rb', line 166 def to_human "WS:#{value}" end |