summaryrefslogtreecommitdiff
path: root/examples/hlapi/v3arch/twisted/agent/ntforg/default-v1-trap.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hlapi/v3arch/twisted/agent/ntforg/default-v1-trap.py')
-rw-r--r--examples/hlapi/v3arch/twisted/agent/ntforg/default-v1-trap.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/examples/hlapi/v3arch/twisted/agent/ntforg/default-v1-trap.py b/examples/hlapi/v3arch/twisted/agent/ntforg/default-v1-trap.py
index 756ce58d..bf409536 100644
--- a/examples/hlapi/v3arch/twisted/agent/ntforg/default-v1-trap.py
+++ b/examples/hlapi/v3arch/twisted/agent/ntforg/default-v1-trap.py
@@ -25,7 +25,7 @@ from pysnmp.hlapi.v3arch.twisted import *
def success(args, hostname):
- (errorStatus, errorIndex, varBinds) = args
+ errorStatus, errorIndex, varBinds = args
if errorStatus:
print('%s: %s at %s' % (
@@ -34,6 +34,7 @@ def success(args, hostname):
errorIndex and varBinds[int(errorIndex) - 1][0] or '?'
)
)
+
else:
for varBind in varBinds:
print(' = '.join([x.prettyPrint() for x in varBind]))
@@ -45,7 +46,8 @@ def failure(errorIndication, hostname):
# noinspection PyUnusedLocal
def run(reactor, hostname):
- d = sendNotification(
+
+ deferred = sendNotification(
SnmpEngine(),
CommunityData('public', mpModel=0),
UdpTransportTarget((hostname, 162)),
@@ -60,8 +62,10 @@ def run(reactor, hostname):
('1.3.6.1.2.1.1.1.0', OctetString('my system'))
)
)
- d.addCallback(success, hostname).addErrback(failure, hostname)
- return d
+
+ deferred.addCallback(success, hostname).addErrback(failure, hostname)
+
+ return deferred
react(run, ['demo.snmplabs.com'])