| 209 | |
| 210 | |
| 211 | class SNMPresponse(ASN1_Packet): |
| 212 | ASN1_codec = ASN1_Codecs.BER |
| 213 | ASN1_root = ASN1F_SNMP_PDU_RESPONSE(ASN1F_INTEGER("id", 0), |
| 214 | ASN1F_enum_INTEGER("error", 0, SNMP_error), # noqa: E501 |
| 215 | ASN1F_INTEGER("error_index", 0), |
| 216 | ASN1F_SEQUENCE_OF("varbindlist", [], SNMPvarbind) # noqa: E501 |
| 217 | ) |
| 218 | |
| 219 | |
| 220 | class SNMPset(ASN1_Packet): |
nothing calls this directly
no test coverage detected