# File lib/dnsruby/message/message.rb, line 257
    def section_rrsets(type = nil, include_opt = false)
      ret = {}
      %w(answer authority additional).each do |section|
        ret[section] = self.send(section).rrsets(type, include_opt)
      end
      ret
    end