diff options
author | Sara Golemon <pollita@php.net> | 2004-08-07 04:50:24 +0000 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2004-08-07 04:50:24 +0000 |
commit | 75f4ec8879782d78056b849b1fc4b5f7a3a53806 (patch) | |
tree | f33c8c5e9caeefe49b0bbbffb30203f87a55b950 /ext/standard/basic_functions.h | |
parent | f3d6620f002a138f54ae593b8bc0beb74f9c38d9 (diff) | |
download | php-git-75f4ec8879782d78056b849b1fc4b5f7a3a53806.tar.gz |
New Functions inet_pton() and inet_ntop()
Diffstat (limited to 'ext/standard/basic_functions.h')
-rw-r--r-- | ext/standard/basic_functions.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/standard/basic_functions.h b/ext/standard/basic_functions.h index 468d27c444..ead825bfe2 100644 --- a/ext/standard/basic_functions.h +++ b/ext/standard/basic_functions.h @@ -52,6 +52,12 @@ PHP_FUNCTION(usleep); PHP_FUNCTION(time_nanosleep); #endif PHP_FUNCTION(flush); +#ifdef HAVE_INET_NTOP +PHP_FUNCTION(inet_ntop); +#endif +#ifdef HAVE_INET_PTON +PHP_FUNCTION(inet_pton); +#endif PHP_FUNCTION(ip2long); PHP_FUNCTION(long2ip); |