| 782 | |
| 783 | |
| 784 | class LDAP_SearchResponseEntry(ASN1_Packet): |
| 785 | ASN1_codec = ASN1_Codecs.BER |
| 786 | ASN1_root = ASN1F_SEQUENCE( |
| 787 | LDAPDN("objectName", ""), |
| 788 | ASN1F_SEQUENCE_OF( |
| 789 | "attributes", |
| 790 | LDAP_PartialAttribute(), |
| 791 | LDAP_PartialAttribute, |
| 792 | ), |
| 793 | implicit_tag=ASN1_Class_LDAP.SearchResultEntry, |
| 794 | ) |
| 795 | |
| 796 | |
| 797 | class LDAP_SearchResponseResultDone(ASN1_Packet): |
no test coverage detected
searching dependent graphs…