Sha256: 3034d6386dfe7c69fe59943b8fab3589229a486a3af14522b1fcb7e3d6937467
Contents?: true
Size: 1.53 KB
Versions: 4
Compression:
Stored size: 1.53 KB
Contents
# This file is part of PacketGen # See https://github.com/sdaubert/packetgen for more informations # Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net> # This program is published under MIT license. # frozen_string_literal: true module PacketGen module Header class DNS # Define a DNS Ressource Record Section # @author Sylvain Daubert class RRSection < Types::Array # @api private # @param [DNS] dns # @param [Types::Int] counter def initialize(dns, counter) @dns = dns @counter = counter end # Read RR section from a string # @param [String] str binary string # @return [RRSection] self def read(str) clear return self if str.nil? force_binary str while str.length > 0 and self.size < @counter.to_i rr = RR.new(@dns).read(str) rr = OPT.new(@dns).read(str) if rr.has_type?('OPT') str.slice!(0, rr.sz) self.push rr end self end private def record_from_hash(hsh) if hsh.has_key? :rtype case hsh.delete(:rtype) when 'Question' Question.new(@dns, hsh) when 'OPT' OPT.new(@dns, hsh) when 'RR' RR.new(@dns, hsh) else raise TypeError, 'rtype should be a Question, OPT or RR' end else hsh end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems