mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
Fix inet_pton/ntop() on BSD
This commit is contained in:
parent
592b17d4d1
commit
37b8c079d6
@ -420,10 +420,10 @@ function_entry basic_functions[] = {
|
||||
PHP_FE(number_format, NULL)
|
||||
PHP_FE(fmod, NULL)
|
||||
#ifdef HAVE_INET_NTOP
|
||||
PHP_FE(inet_ntop, NULL)
|
||||
PHP_NAMED_FE(inet_ntop, php_inet_ntop, NULL)
|
||||
#endif
|
||||
#ifdef HAVE_INET_PTON
|
||||
PHP_FE(inet_pton, NULL)
|
||||
PHP_NAMED_FE(inet_pton, php_inet_pton, NULL)
|
||||
#endif
|
||||
PHP_FE(ip2long, NULL)
|
||||
PHP_FE(long2ip, NULL)
|
||||
@ -1282,7 +1282,7 @@ PHP_FUNCTION(constant)
|
||||
#ifdef HAVE_INET_NTOP
|
||||
/* {{{ proto string inet_ntop(string in_addr)
|
||||
Converts a packed inet address to a human readable IP address string */
|
||||
PHP_FUNCTION(inet_ntop)
|
||||
PHP_NAMED_FUNCTION(php_inet_ntop)
|
||||
{
|
||||
char *address;
|
||||
int address_len, af = AF_INET;
|
||||
@ -1315,7 +1315,7 @@ PHP_FUNCTION(inet_ntop)
|
||||
#ifdef HAVE_INET_PTON
|
||||
/* {{{ proto string inet_pton(string ip_address)
|
||||
Converts a human readable IP address to a packed binary string */
|
||||
PHP_FUNCTION(inet_pton)
|
||||
PHP_NAMED_FUNCTION(php_inet_pton)
|
||||
{
|
||||
int ret, af = AF_INET;
|
||||
char *address;
|
||||
|
@ -53,10 +53,10 @@ PHP_FUNCTION(time_nanosleep);
|
||||
#endif
|
||||
PHP_FUNCTION(flush);
|
||||
#ifdef HAVE_INET_NTOP
|
||||
PHP_FUNCTION(inet_ntop);
|
||||
PHP_NAMED_FUNCTION(php_inet_ntop);
|
||||
#endif
|
||||
#ifdef HAVE_INET_PTON
|
||||
PHP_FUNCTION(inet_pton);
|
||||
PHP_NAMED_FUNCTION(php_inet_pton);
|
||||
#endif
|
||||
PHP_FUNCTION(ip2long);
|
||||
PHP_FUNCTION(long2ip);
|
||||
|
Loading…
Reference in New Issue
Block a user