summaryrefslogtreecommitdiffstats
path: root/make_as_del.pl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 15:45:37 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 15:45:37 +0000
commite0801e6bd6cc1241afafea33ba8ef701fec2e5c5 (patch)
treeb5cf84f45181b3dbc14d58833d88683fb7f3465e /make_as_del.pl
parentInitial commit. (diff)
downloadwhois-e0801e6bd6cc1241afafea33ba8ef701fec2e5c5.tar.xz
whois-e0801e6bd6cc1241afafea33ba8ef701fec2e5c5.zip
Adding upstream version 5.5.17.upstream/5.5.17upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'make_as_del.pl')
-rwxr-xr-xmake_as_del.pl28
1 files changed, 28 insertions, 0 deletions
diff --git a/make_as_del.pl b/make_as_del.pl
new file mode 100755
index 0000000..10ab071
--- /dev/null
+++ b/make_as_del.pl
@@ -0,0 +1,28 @@
+#!/usr/bin/perl
+
+use warnings;
+use strict;
+
+my $last_l = 0;
+
+while (<>) {
+ chomp;
+ s/#.*$//;
+ s/^\s+//; s/\s+$//;
+ next if /^$/;
+
+ die "format error: $_" if not (/^([\d\.]+)\s+([\d\.]+)\s+([\w\.]+)$/);
+ my $f = $1; my $l = $2; my $s = $3;
+
+ die "constraint violated: $l < $last_l" if $l < $last_l;
+ $last_l = $l;
+
+ print "{ ${f}, ${l}, \"";
+ if ($s =~ /\./) {
+ print "$s";
+ } else {
+ print "whois.$s.net";
+ }
+ print qq(" },\n);
+}
+