| 774 | |
| 775 | |
| 776 | class LDAP_PartialAttribute(ASN1_Packet): |
| 777 | ASN1_codec = ASN1_Codecs.BER |
| 778 | ASN1_root = ASN1F_SEQUENCE( |
| 779 | AttributeType("type", ""), |
| 780 | ASN1F_SET_OF("values", [], LDAP_AttributeValue), |
| 781 | ) |
| 782 | |
| 783 | |
| 784 | class LDAP_SearchResponseEntry(ASN1_Packet): |
no test coverage detected