]> granicus.if.org Git - php/commitdiff
backport r313324
authorBoris Lytochkin <lytboris@php.net>
Sun, 17 Jul 2011 14:06:05 +0000 (14:06 +0000)
committerBoris Lytochkin <lytboris@php.net>
Sun, 17 Jul 2011 14:06:05 +0000 (14:06 +0000)
ext/snmp/snmp.c

index bc0651a202f48e8237e0bd36b7d26f35cd3551ed..d548cb43ecfa5b9060f2da0c949626193c9ec780 100644 (file)
@@ -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)
 {