From: Michael Wallner Date: Fri, 8 Aug 2014 09:34:48 +0000 (+0200) Subject: add missing PHP_FEs X-Git-Tag: RELEASE_0_8_0~4 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-ares;a=commitdiff_plain;h=d200b6a8f6372b2954d330f46dc6814377defe74 add missing PHP_FEs --- diff --git a/php_ares.c b/php_ares.c index 252c152..54b0f4c 100644 --- 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} }; /* }}} */