Class: Resolv::DNS::Resource::TXT

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

Overview

Unstructured text resource.

Constant Summary collapse

TypeValue =

:nodoc:

16

Constants inherited from Resolv::DNS::Resource

ClassHash, ClassInsensitiveTypes, ClassValue

Instance Attribute Summary collapse

Attributes inherited from Resolv::DNS::Resource

#ttl

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Resolv::DNS::Resource

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

Constructor Details

#initialize(first_string, *rest_strings) ⇒ TXT

Returns a new instance of TXT.



1992
1993
1994
# File 'lib/resolv.rb', line 1992

def initialize(first_string, *rest_strings)
  @strings = [first_string, *rest_strings]
end

Instance Attribute Details

#stringsObject (readonly)

Returns an Array of Strings for this TXT record.



1999
2000
2001
# File 'lib/resolv.rb', line 1999

def strings
  @strings
end

Class Method Details

.decode_rdata(msg) ⇒ Object

:nodoc:



2012
2013
2014
2015
# File 'lib/resolv.rb', line 2012

def self.decode_rdata(msg) # :nodoc:
  strings = msg.get_string_list
  return self.new(*strings)
end

Instance Method Details

#dataObject

Returns the concatenated string from strings.



2004
2005
2006
# File 'lib/resolv.rb', line 2004

def data
  @strings.join("")
end

#encode_rdata(msg) ⇒ Object

:nodoc:



2008
2009
2010
# File 'lib/resolv.rb', line 2008

def encode_rdata(msg) # :nodoc:
  msg.put_string_list(@strings)
end