class Resolv::DNS::Resource::HINFO
Host Information resource.
Attributes
cpu[R]
CPU architecture for this resource.
os[R]
Operating system for this resource.
Public Class Methods
new(cpu, os)
click to toggle source
Creates a new HINFO
running os
on cpu
.
# File lib/logstash/filters/dns/resolv_9270.rb, line 1933 def initialize(cpu, os) @cpu = cpu @os = os end