class PowerDNS::Pipe::Question
Question
wraps any type of question line from the server
Public Instance Methods
axfr?()
click to toggle source
# File lib/powerdns_pipe.rb 46 def axfr? 47 tag == "AXFR" 48 end
query?()
click to toggle source
# File lib/powerdns_pipe.rb 42 def query? 43 tag == "Q" 44 end
to_s()
click to toggle source
# File lib/powerdns_pipe.rb 38 def to_s 39 [tag, name, qclass, qtype, id, remote_ip_address, local_ip_address].join("\t") 40 end