On Apr 24, 2006, at 9:31 AM, Chris wrote:
I created a module that extends Net::DNS::Resolver to make zone
transfers
a little easier. It looks up the nameserver records for a zone, and
then performs transfers from each nameserver until it gets a response.
SYNOSIS
use Net::DNS;
use Net::DNS::Resolver::ForceAxfer;
I think "force" might be too strong a word here. It's really just
"trying very hard" or something. Maybe
Net::DNS::Resolver::TransferKit or something?
In general I try to stay away from verbs (and verb-ified nouns, like
"Forcer") in module names. What if you want to add another
capability, do you add another verb? =)
-Ken