Echo Reply option.
# File lib/packetfu/protos/tcp/option.rb, line 264 def initialize(args={}) super( args.merge(:kind => 7, :optlen => 6 ) ) end
ECHOREPLY options with lengths other than 6 are malformed.
# File lib/packetfu/protos/tcp/option.rb, line 273 def decode if self[:optlen].to_i == 6 "ECHOREPLY:#{self[:value]}" else "ECHOREPLY-bad:#{self[:value]}" end end