Class: Resolv::DNS::Resource::HINFO

Inherits:
Resolv::DNS::Resource show all
Defined in:
lib/resolv.rb

Constant Summary collapse

TypeValue =
13

Constants inherited from Resolv::DNS::Resource

ClassHash, ClassInsensitiveTypes, ClassValue

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Resolv::DNS::Resource

#==, #eql?, get_class, #hash

Constructor Details

#initialize(cpu, os) ⇒ HINFO

Returns a new instance of HINFO.



1539
1540
1541
1542
# File 'lib/resolv.rb', line 1539

def initialize(cpu, os)
  @cpu = cpu
  @os = os
end

Instance Attribute Details

#cpuObject (readonly)

Returns the value of attribute cpu



1543
1544
1545
# File 'lib/resolv.rb', line 1543

def cpu
  @cpu
end

#osObject (readonly)

Returns the value of attribute os



1543
1544
1545
# File 'lib/resolv.rb', line 1543

def os
  @os
end

Class Method Details

.decode_rdata(msg) ⇒ Object



1550
1551
1552
1553
1554
# File 'lib/resolv.rb', line 1550

def self.decode_rdata(msg)
  cpu = msg.get_string
  os = msg.get_string
  return self.new(cpu, os)
end

Instance Method Details

#encode_rdata(msg) ⇒ Object



1545
1546
1547
1548
# File 'lib/resolv.rb', line 1545

def encode_rdata(msg)
  msg.put_string(@cpu)
  msg.put_string(@os)
end