It is a valid address that is munged into an inet address form...
The formula, if I remember correctly is:
(x>>24)+"."+((x>>16)&255)+"."+((x>>8)& ;255)+"."+(x&255)
Doing the match, that number equals IP address (dotted quad form):
0.5.82.113
###This is only proof of concept, I just whipped up!
Quick perl script to demunge that: (NOT Tested!)
#!/usr/local/bin/perl
use strict
my $inet = shift || usage();
$inet =~ /^\d+$/ or usage();
demunge($inet);
sub demunge {
my $x=shift;
print "And the dotted quad is

n";
print (x>>24),".",((x>>16)&255),".",((x>>8)& ;255),".",(x&255),"\n";
}
sub usage {
die "Please enter a valid inet address\n";
}
__END__
--
Terra
--Within complexity lives simplicity--
FutureQuest
[This message has been edited by ccTech (edited 08-05-99)]