Sha256: 842c83f3416fbc721a8f39ef2ec9ccf7a2ef91d888c060df99b32145541312fd
Contents?: true
Size: 368 Bytes
Versions: 15
Compression:
Stored size: 368 Bytes
Contents
module PacketGen module Header class DNS # DNS option # @author Sylvain Daubert class Option < Types::TLV # Force {#type} and {#length} fields to be {Types::Int16} # @see TLV#initialize def initialize(options={}) super options.merge!(t: Types::Int16, l: Types::Int16) end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems