fix arginfo_get_next_local_ip parameter

posix_api
YuQing 2021-12-31 22:41:57 +08:00
parent 89e1a99129
commit c3f22aa867
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,6 @@
* You should have received a copy of the Lesser GNU General Public License * You should have received a copy of the Lesser GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
#include "php7_ext_wrapper.h" #include "php7_ext_wrapper.h"
#include "ext/standard/info.h" #include "ext/standard/info.h"
#include "ext/standard/file.h" #include "ext/standard/file.h"
@ -119,7 +118,8 @@ ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_get_first_local_ip, 0, 0, 0) ZEND_BEGIN_ARG_INFO_EX(arginfo_get_first_local_ip, 0, 0, 0)
ZEND_END_ARG_INFO() ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_get_next_local_ip, 0, 0, 0) ZEND_BEGIN_ARG_INFO_EX(arginfo_get_next_local_ip, 0, 0, 1)
ZEND_ARG_INFO(0, previous_ip)
ZEND_END_ARG_INFO() ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_is_private_ip, 0, 0, 1) ZEND_BEGIN_ARG_INFO_EX(arginfo_is_private_ip, 0, 0, 1)