2016-07-27 19:24:39 +02:00
|
|
|
This module collects IP validation routines to make input validation, and
|
2008-01-14 12:15:31 +01:00
|
|
|
untainting easier and more readable.
|
|
|
|
|
|
|
|
All functions return an untainted value if the test passes, and undef if it
|
|
|
|
fails. This means that you should always check for a defined status
|
|
|
|
explicitly. Don't assume the return will be true. (e.g. is_username('0'))
|
|
|
|
|
|
|
|
The value to test is always the first (and often only) argument.
|
|
|
|
|
|
|
|
WWW: http://search.cpan.org/dist/Data-Validate-IP/
|