summaryrefslogtreecommitdiff
path: root/examples/hlapi/v1arch/asyncore/sync/agent/ntforg/v2c-inform.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hlapi/v1arch/asyncore/sync/agent/ntforg/v2c-inform.py')
-rw-r--r--examples/hlapi/v1arch/asyncore/sync/agent/ntforg/v2c-inform.py26
1 files changed, 13 insertions, 13 deletions
diff --git a/examples/hlapi/v1arch/asyncore/sync/agent/ntforg/v2c-inform.py b/examples/hlapi/v1arch/asyncore/sync/agent/ntforg/v2c-inform.py
index c1799993..9210d45a 100644
--- a/examples/hlapi/v1arch/asyncore/sync/agent/ntforg/v2c-inform.py
+++ b/examples/hlapi/v1arch/asyncore/sync/agent/ntforg/v2c-inform.py
@@ -18,21 +18,21 @@ Functionally similar to:
"""#
from pysnmp.hlapi.v1arch import *
-errorIndication, errorStatus, errorIndex, varBinds = next(
- sendNotification(
- SnmpDispatcher(),
- CommunityData('public'),
- UdpTransportTarget(('demo.snmplabs.com', 162)),
- 'inform',
- # SNMPv2-MIB::sysUpTime.0 = 12345
- ('1.3.6.1.2.1.1.3.0', TimeTicks(12345)),
- # SNMPv2-SMI::snmpTrapOID.0 = SNMPv2-MIB::warmStart
- ('1.3.6.1.6.3.1.1.4.1.0', ObjectIdentifier('1.3.6.1.6.3.1.1.5.2')),
- # SNMPv2-MIB::sysName.0
- ('1.3.6.1.2.1.1.1.0', OctetString('my system'))
- )
+iterator = sendNotification(
+ SnmpDispatcher(),
+ CommunityData('public'),
+ UdpTransportTarget(('demo.snmplabs.com', 162)),
+ 'inform',
+ # SNMPv2-MIB::sysUpTime.0 = 12345
+ ('1.3.6.1.2.1.1.3.0', TimeTicks(12345)),
+ # SNMPv2-SMI::snmpTrapOID.0 = SNMPv2-MIB::warmStart
+ ('1.3.6.1.6.3.1.1.4.1.0', ObjectIdentifier('1.3.6.1.6.3.1.1.5.2')),
+ # SNMPv2-MIB::sysName.0
+ ('1.3.6.1.2.1.1.1.0', OctetString('my system'))
)
+errorIndication, errorStatus, errorIndex, varBinds = next(iterator)
+
if errorIndication:
print(errorIndication)