mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +09:00
15 lines
443 B
Python
15 lines
443 B
Python
#
|
|
# SNMPv2c message syntax
|
|
#
|
|
# ASN.1 source from:
|
|
# http://www.ietf.org/rfc/rfc1901.txt
|
|
#
|
|
from pyasn1.type import univ, namedtype, namedval
|
|
|
|
class Message(univ.Sequence):
|
|
componentType = namedtype.NamedTypes(
|
|
namedtype.NamedType('version', univ.Integer(namedValues = namedval.NamedValues(('version-2c', 1)))),
|
|
namedtype.NamedType('community', univ.OctetString()),
|
|
namedtype.NamedType('data', univ.Any())
|
|
)
|
|
|