projects
/
m6w6
/
ext-ares
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
| inline |
side by side
(parent:
d57d621
)
add missing PHP_FEs
author
Michael Wallner
<mike@php.net>
Fri, 8 Aug 2014 09:34:48 +0000
(11:34 +0200)
committer
Michael Wallner
<mike@php.net>
Fri, 8 Aug 2014 09:34:48 +0000
(11:34 +0200)
php_ares.c
patch
|
blob
|
history
diff --git
a/php_ares.c
b/php_ares.c
index 252c152520646e544503e1ab319ccf313d40d023..54b0f4cbbd2bf2517eb6d2f89e2b6e6bd24708ff 100644
(file)
--- a/
php_ares.c
+++ b/
php_ares.c
@@
-2256,6
+2256,15
@@
zend_function_entry ares_functions[] = {
PHP_FE(ares_select, ai_ares_select)
PHP_FE(ares_fds, ai_ares_fds)
PHP_FE(ares_timeout, NULL)
+#ifdef HAVE_ARES_SET_LOCAL_DEV
+ PHP_FE(ares_set_local_dev, NULL)
+#endif
+#ifdef HAVE_ARES_SET_LOCAL_IP4
+ PHP_FE(ares_set_local_ip4, NULL)
+#endif
+#ifdef HAVE_ARES_SET_LOCAL_IP6
+ PHP_FE(ares_set_local_ip6, NULL)
+#endif
{NULL, NULL, NULL}
};
/* }}} */