pysnmp
pysnmp copied to clipboard
Fix SnmpEngineTime overflow after 2038
After 2038, we cannot just store time.time() inside snmpEngineTime as it has a maximum value of 2147483647. Therefore, we wrap it. RFC 3411 allows that (but when wrapping, we should increment snmpEngineBoots, something that's not done here).
Fix #35