From cc1ccefc0dc62b1736ac08a78dd7d614e912eb0c Mon Sep 17 00:00:00 2001 From: Boris Lytochkin Date: Sun, 17 Jul 2011 14:06:05 +0000 Subject: [PATCH] backport r313324 --- ext/snmp/snmp.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ext/snmp/snmp.c b/ext/snmp/snmp.c index bc0651a202..d548cb43ec 100644 --- a/ext/snmp/snmp.c +++ b/ext/snmp/snmp.c @@ -339,10 +339,12 @@ ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_snmp_get, 0, 0, 1) ZEND_ARG_INFO(0, object_id) + ZEND_ARG_INFO(0, use_orignames) ZEND_END_ARG_INFO() -ZEND_BEGIN_ARG_INFO_EX(arginfo_snmp_walk, 0, 0, 3) +ZEND_BEGIN_ARG_INFO_EX(arginfo_snmp_walk, 0, 0, 4) ZEND_ARG_INFO(0, object_id) + ZEND_ARG_INFO(0, suffix_keys) ZEND_ARG_INFO(0, non_repeaters) ZEND_ARG_INFO(0, max_repetitions) ZEND_END_ARG_INFO() @@ -1749,7 +1751,7 @@ PHP_METHOD(snmp, close) } /* }}} */ -/* {{{ proto mixed SNMP::get_assoc(mixed object_id) +/* {{{ proto mixed SNMP::get(mixed object_id [, bool preserve_keys]) Fetch a SNMP object returing scalar for single OID and array of oid->value pairs for multi OID request */ PHP_METHOD(snmp, get) { @@ -1757,7 +1759,7 @@ PHP_METHOD(snmp, get) } /* }}} */ -/* {{{ proto mixed SNMP::getnext(mixed object_id) +/* {{{ proto mixed SNMP::getnext(mixed object_id) Fetch a SNMP object returing scalar for single OID and array of oid->value pairs for multi OID request */ PHP_METHOD(snmp, getnext) { @@ -1765,7 +1767,7 @@ PHP_METHOD(snmp, getnext) } /* }}} */ -/* {{{ proto mixed SNMP::walk(mixed object_id) +/* {{{ proto mixed SNMP::walk(mixed object_id [, bool $suffix_as_key = FALSE [, int $non_repeaters [, int $max_repetitions ]]]) Return all objects including their respective object id withing the specified one as array of oid->value pairs */ PHP_METHOD(snmp, walk) { -- 2.40.0