logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Net::Domain::TLD - Work with TLD names

Authors

Alexander Pavlovic <alex.pavlovic@devradius.com> Ricardo SIGNES <rjbs@cpan.org> perl v5.40.0 2024-09-14 Net::Domain::TLD(3pm)

Description

The purpose of this module is to provide user with current list of available top level domain names including new ICANN additions and ccTLDs Currently TLD definitions have been acquired from the following sources: http://www.icann.org/tlds/http://www.dnso.org/constituency/gtld/gtld.htmlhttp://www.iana.org/cctld/cctld-whois.htm https://www.iana.org/domains/root/db

Name

Net::Domain::TLD - Work with TLD names

Public Methods

Each public function/method is described here. These are how you should interact with this module. "tlds" This routine returns the tlds requested. my @all_tlds = tlds; #array of tlds my $all_tlds = tlds; #hashref of tlds and their descriptions my @cc_tlds = tlds('cc'); #array of just 'cc' type tlds my $cc_tlds = tlds('cc'); #hashref of just 'cc' type tlds and their descriptions Valid types are: cc - country code domains ccidn - internationalized country code top-level domain gtld_open - generic domains that anyone can register gtld_restricted - generic restricted registration domains gtld_new - new gTLDs new_open - recently added generic domains new_restricted - new restricted registration domains reserved - RFC2606 restricted names, not returned by tlds "tld_exists" This routine returns true if the given domain exists and false otherwise. die "no such domain" unless tld_exists($tld); #call without tld type die "no such domain" unless tld_exists($tld, 'new_open'); #call with tld type

Synopsis

use Net::Domain::TLD qw(tlds tld_exists); my @ccTLDs = tlds('cc'); print "TLD ok\n" if tld_exists('ac','cc');

See Also