summaryrefslogtreecommitdiffstats
path: root/make_as_del.pl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-09 13:11:53 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-09 13:11:53 +0000
commit655cb1b8222b0a587bbdd5c1357d55682332c665 (patch)
tree65a83d3c36e6d4c4d57cec63f63d2019b2dfc93b /make_as_del.pl
parentInitial commit. (diff)
downloadwhois-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_as_del.pl')
-rwxr-xr-xmake_as_del.pl33
1 files changed, 33 insertions, 0 deletions
diff --git a/make_as_del.pl b/make_as_del.pl
new file mode 100755
index 0000000..0248678
--- /dev/null
+++ b/make_as_del.pl
@@ -0,0 +1,33 @@
+#!/usr/bin/perl
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+use warnings;
+use strict;
+
+my $last_l = 0;
+
+while (<>) {
+ chomp;
+ s/#.*$//;
+ s/^\s+//; s/\s+$//;
+ next if /^$/;
+
+ my ($fh, $fl, $lh, $ll, $s, $f, $l);
+ my $comment = '';
+ if (($fh, $fl, $lh, $ll, $s) =
+ /^(\d+)\.(\d+)\s+(\d+)\.(\d+)\s+([\w\.-]+)$/) {
+ $f = ($fh << 16) + $fl;
+ $l = ($lh << 16) + $ll;
+ $comment = qq|\t/* $fh.$fl $lh.$ll */|;
+ } elsif (($f, $l, $s) = /^(\d+)\s+(\d+)\s+([\w\.-]+)$/) {
+ } else {
+ die "format error: $_";
+ }
+
+ die "constraint violated: $l < $last_l" if $l < $last_l;
+ $last_l = $l;
+
+ my $server = ($s =~ /\./) ? $s : "whois.$s.net";
+ print qq|{ ${f}u, ${l}u,\t"$server" },$comment\n|;
+}
+