summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelie <elie>2014-06-16 20:51:03 +0000
committerelie <elie>2014-06-16 20:51:03 +0000
commit6d03e67c04e36aec99bf25af3770f0d76e65e62c (patch)
treecb3d5dcb50a56c7f8edd59508cb94dcff68ca0e7
parent43dbc9e5b8c99150c8eb7f4f8a821c425420495d (diff)
downloadpysnmp-6d03e67c04e36aec99bf25af3770f0d76e65e62c.tar.gz
BULK API correction
-rw-r--r--pysnmp/entity/rfc3413/cmdgen.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pysnmp/entity/rfc3413/cmdgen.py b/pysnmp/entity/rfc3413/cmdgen.py
index 7000d38..ec639f7 100644
--- a/pysnmp/entity/rfc3413/cmdgen.py
+++ b/pysnmp/entity/rfc3413/cmdgen.py
@@ -465,10 +465,10 @@ class BulkCommandGeneratorSingleRun(CommandGenerator):
def sendVarBinds(self,
snmpEngine,
targetName,
- nonRepeaters,
- maxRepetitions,
contextEngineId,
contextName,
+ nonRepeaters,
+ maxRepetitions,
varBinds,
cbFun,
cbCtx=None):
@@ -612,10 +612,10 @@ def _sendBulkReq(self,
cbFun = __sendReqCbFun
return self.sendVarBinds(snmpEngine,
targetName,
- nonRepeaters,
- maxRepetitions,
contextEngineId,
contextName,
+ nonRepeaters,
+ maxRepetitions,
varBinds,
cbFun,
cbCtx)