diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:11:53 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:11:53 +0000 |
commit | 655cb1b8222b0a587bbdd5c1357d55682332c665 (patch) | |
tree | 65a83d3c36e6d4c4d57cec63f63d2019b2dfc93b /make_tld_serv.pl | |
parent | Initial commit. (diff) | |
download | whois-655cb1b8222b0a587bbdd5c1357d55682332c665.tar.xz whois-655cb1b8222b0a587bbdd5c1357d55682332c665.zip |
Adding upstream version 5.5.21.upstream/5.5.21
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'make_tld_serv.pl')
-rwxr-xr-x | make_tld_serv.pl | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/make_tld_serv.pl b/make_tld_serv.pl new file mode 100755 index 0000000..e538c53 --- /dev/null +++ b/make_tld_serv.pl @@ -0,0 +1,26 @@ +#!/usr/bin/perl +# SPDX-License-Identifier: GPL-2.0-or-later + +use warnings; +use strict; + +while (<>) { + chomp; + s/#.*$//; + s/^\s+//; s/\s+$//; + next if /^$/; + + die "format error: $_" if not + (my ($a, $b) = /^\.(\w[\w\d\.-]+)\s+([\w\d\.:-]+|[A-Z]+\s+.*)$/); + + $b =~ s/^W(?:EB)?\s+/\\x01/; + $b =~ s/^VERISIGN\s+/\\x04" "/; + $b = "\\x03" if $b eq 'NONE'; + $b =~ s/^RECURSIVE\s+/\\x08" "/; + $b = "\\x08$b" if $b eq 'whois.flexireg.net'; + $b = "\\x08$b" if $b eq 'whois.registry.in'; + $b = "\\x0C" if $b eq 'ARPA'; + $b = "\\x0D" if $b eq 'IP6'; + print qq| "$a",\t"$b",\n|; +} + |