diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 15:45:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 15:45:37 +0000 |
commit | e0801e6bd6cc1241afafea33ba8ef701fec2e5c5 (patch) | |
tree | b5cf84f45181b3dbc14d58833d88683fb7f3465e /make_ip_del.pl | |
parent | Initial commit. (diff) | |
download | whois-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_ip_del.pl')
-rwxr-xr-x | make_ip_del.pl | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/make_ip_del.pl b/make_ip_del.pl new file mode 100755 index 0000000..7ed5c93 --- /dev/null +++ b/make_ip_del.pl @@ -0,0 +1,29 @@ +#!/usr/bin/perl + +use warnings; +use strict; + +while (<>) { + chomp; + s/#.*$//; + s/^\s+//; s/\s+$//; + next if /^$/; + + die "format error: $_" if not /^([\d\.]+)\/(\d+)\s+([\w\.]+)$/; + my $m = $2; my $s = $3; + + my ($i1, $i2, $i3, $i4) = split(/\./, $1); + print '{ ' . (($i1 << 24) + ($i2 << 16) + ($i3 << 8) + $i4) . 'UL, '. + ((~(0xffffffff >> $m)) & 0xffffffff) . 'UL, "'; + if ($s =~ /\./) { + print $s; + } elsif ($s eq 'UNKNOWN') { + print "\\005"; + } elsif ($s eq 'UNALLOCATED') { + print "\\006"; + } else { + print "whois.$s.net"; + } + print qq|" },\n|; +} + |