File: make_tld_serv.pl

package info (click to toggle)
whois 5.6.6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 584 kB
  • sloc: ansic: 2,412; perl: 203; makefile: 153; sh: 109
file content (26 lines) | stat: -rwxr-xr-x 577 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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.nixiregistry.in';
	$b = "\\x0C" if $b eq 'ARPA';
	$b = "\\x0D" if $b eq 'IP6';
	print qq|    "$a",\t"$b",\n|;
}