diff options
author | Boris Lytochkin <lytboris@php.net> | 2011-02-01 07:45:30 +0000 |
---|---|---|
committer | Boris Lytochkin <lytboris@php.net> | 2011-02-01 07:45:30 +0000 |
commit | dc781e252070da65306a23340bf65e99396ee75e (patch) | |
tree | d5d9fbd24314e6671928dab7ce46a3ec722a1d3e /ext/snmp/php_snmp.h | |
parent | ca9b3511f855148458ef0b520965860b76a6761b (diff) | |
download | php-git-dc781e252070da65306a23340bf65e99396ee75e.tar.gz |
- Improved SNMP extension:
. Allow ~infinite OIDs in GET/GETNEXT/SET queries. Autochunk them to max_oids
upon request.
Diffstat (limited to 'ext/snmp/php_snmp.h')
-rw-r--r-- | ext/snmp/php_snmp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/snmp/php_snmp.h b/ext/snmp/php_snmp.h index a5d0055372..4cda3f8fc8 100644 --- a/ext/snmp/php_snmp.h +++ b/ext/snmp/php_snmp.h @@ -83,6 +83,7 @@ PHP_METHOD(SNMP, set); typedef struct _php_snmp_object { zend_object zo; struct snmp_session *session; + int max_oids; int valueretrieval; int quick_print; #ifdef HAVE_NET_SNMP |