Seeding from the 1.2 tree.

This commit is contained in:
Dan Mashal
2013-01-01 03:00:55 -08:00
parent d8c87c4ded
commit 87b806a563
1424 changed files with 260320 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
Synopsis:
$iptoname(<ip address>)
$nametoip(<hostname>)
Technical:
These functions are used to convert an IP address to a hostname, and vice
versa. The $iptoname() function returns the hostname associated with
the given IP address, and $nametoip() does the opposite.
Practical:
These functions are used to convert between IP addresses and Internet
hostnames. Obvious reasons aside, they are mostly useful when you know
which of the two the input will be. They return nothing if the address
could not be converted, or if the input was invalid. The $convert()
function should be used if the input is known to vary.
Returns:
iptoname: hostname for the given IP address
nametoip: IP address for the given hostname
Examples:
$iptoname(127.0.0.1) probably returns "localhost"
$nametoip(localhost) probably returns "127.0.0.1"
$iptoname(localhost) error, input is not an IP address
$nametoip(127.0.0.1) error, input is not a hostname
See Also:
convert(6)