Method: Dnsruby::RR::NAPTR#rdata_to_string
- Defined in:
- lib/Dnsruby/resource/NAPTR.rb
#rdata_to_string ⇒ Object
:nodoc: all
62 63 64 65 66 67 68 |
# File 'lib/Dnsruby/resource/NAPTR.rb', line 62 def rdata_to_string #:nodoc: all if (@order!=nil) return "#{@order} #{@preference} #{@flags} #{@service} #{@regexp} #{@replacement}" else return "" end end |