Class: Gem::Resolv::DNS::Resource::MINFO

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

Overview

Mailing list or mailbox information.

Constant Summary collapse

TypeValue =

:nodoc:

14

Constants inherited from Gem::Resolv::DNS::Resource

ClassHash, ClassInsensitiveTypes, ClassValue

Instance Attribute Summary collapse

Attributes inherited from Gem::Resolv::DNS::Resource

#ttl

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Gem::Resolv::DNS::Resource

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

Constructor Details

#initialize(rmailbx, emailbx) ⇒ MINFO

Returns a new instance of MINFO.



2351
2352
2353
2354
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 2351

def initialize(rmailbx, emailbx)
  @rmailbx = rmailbx
  @emailbx = emailbx
end

Instance Attribute Details

#emailbxObject (readonly)

Mailbox to use for error messages related to the mail list or mailbox.



2364
2365
2366
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 2364

def emailbx
  @emailbx
end

#rmailbxObject (readonly)

Domain name responsible for this mail list or mailbox.



2359
2360
2361
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 2359

def rmailbx
  @rmailbx
end

Class Method Details

.decode_rdata(msg) ⇒ Object

:nodoc:



2371
2372
2373
2374
2375
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 2371

def self.decode_rdata(msg) # :nodoc:
  rmailbx = msg.get_string
  emailbx = msg.get_string
  return self.new(rmailbx, emailbx)
end

Instance Method Details

#encode_rdata(msg) ⇒ Object

:nodoc:



2366
2367
2368
2369
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 2366

def encode_rdata(msg) # :nodoc:
  msg.put_name(@rmailbx)
  msg.put_name(@emailbx)
end