rr

2014-02-17 Thread qq1083704...@gmail.com
发自我的小米手机

Re: Perl documentation (Net::DNS::RR::MX)

2001-04-23 Thread Sean O'Leary
ut from the basic info how to use it. > >For instance, I'm interested in being able to do MX lookups via Perl so I >found Net::DNS::RR::MX which appears to be what I'm looking for... I don't know if this is too late or whatever, but take a look at the Net::DNS documentation.

Re: Perl documentation (Net::DNS::RR::MX)

2001-04-22 Thread Matt Cauthorn
res, $name); if (@mx) { foreach $rr (@mx) { print $rr->preference, " ", $rr->exchange, "\n"; } } else { print "can't find MX records for $name: ", $res->errorstring, "\n"; } Run from the command l

Re: Perl documentation (Net::DNS::RR::MX)

2001-04-19 Thread Peter Scott
#x27;t figure out from the basic info how to use it. > >For instance, I'm interested in being able to do MX lookups via Perl so I >found Net::DNS::RR::MX which appears to be what I'm looking for... > >METHODS >preference > print "preference = ", $rr->pre

Perl documentation (Net::DNS::RR::MX)

2001-04-19 Thread Matthew Goodell
, I'm interested in being able to do MX lookups via Perl so I found Net::DNS::RR::MX which appears to be what I'm looking for... METHODS preference print "preference = ", $rr->preference, "\n"; Returns the preference for this mail exchange. exchange p