ID: 26907
User updated by: piegtas at hotmail dot com
Reported By: piegtas at hotmail dot com
-Status: Open
+Status: Closed
Bug Type: Feature/Change Request
Operating System: All Unix
PHP Version: 4.3.4
New Comment:
Solved width my own fix
Previous Comments:
------------------------------------------------------------------------
[2004-01-14 13:42:57] piegtas at hotmail dot com
Description:
------------
I made a patch to add SNMP v2c support for
snmpget/snmpwalk/snmprealwalk
I add a sixth parameter to those functions for use like this example:
snmpwalk("router.dot.com", "readcomm", "ifHCInOctets", 1, 2, 2);
This is my patch:
diff -u ext/snmp/snmp.c ext/snmp.1/snmp.c
--- ext/snmp/snmp.c Wed Jan 14 12:38:15 2004
+++ ext/snmp.1/snmp.c Wed Jan 14 12:35:47 2004
@@ -392,6 +392,7 @@
long timeout=SNMP_DEFAULT_TIMEOUT;
long retries=SNMP_DEFAULT_RETRIES;
int myargc = ZEND_NUM_ARGS();
+ long myvers = SNMP_VERSION_1;
char type = (char) 0;
char *value = (char *) 0;
char hostname[MAX_NAME_LEN];
@@ -437,6 +438,16 @@
convert_to_long_ex(a5);
retries = Z_LVAL_PP(a5);
}
+
+ if(myargc > 5) {
+ convert_to_long_ex(a6);
+ switch(Z_LVAL_PP(a6)) {
+ case 1: myvers = SNMP_VERSION_1;
+ break;
+ case 2: myvers = SNMP_VERSION_2c;
+ break;
+ }
+ }
}
snmp_sess_init(&session);
@@ -448,7 +459,7 @@
session.peername = hostname;
session.remote_port = remote_port;
- session.version = SNMP_VERSION_1;
+ session.version = (int)myvers;
/*
* FIXME: potential memory leak
* This is a workaround for an "artifact" (Mike Slifcak)
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=26907&edit=1