| 200 | |
| 201 | |
| 202 | class SNMPnext(ASN1_Packet): |
| 203 | ASN1_codec = ASN1_Codecs.BER |
| 204 | ASN1_root = ASN1F_SNMP_PDU_NEXT(ASN1F_INTEGER("id", 0), |
| 205 | ASN1F_enum_INTEGER("error", 0, SNMP_error), |
| 206 | ASN1F_INTEGER("error_index", 0), |
| 207 | ASN1F_SEQUENCE_OF("varbindlist", [], SNMPvarbind) # noqa: E501 |
| 208 | ) |
| 209 | |
| 210 | |
| 211 | class SNMPresponse(ASN1_Packet): |
no test coverage detected
searching dependent graphs…