class PacketFu::TcpOption::EOL
End of Line option. Usually used to terminate a string of options.
Public Class Methods
new(args={})
click to toggle source
Calls superclass method
PacketFu::TcpOption.new
# File lib/packetfu/protos/tcp/option.rb, line 101 def initialize(args={}) super( args.merge(:kind => 0) ) end
Public Instance Methods
decode()
click to toggle source
# File lib/packetfu/protos/tcp/option.rb, line 107 def decode "EOL" end