renamed a struct,

started ldapsearchresultentry formatter
fixed scan_ldapmessage to accept PRIMITIVE messages, too (unbind)
This commit is contained in:
leitner
2002-01-14 21:23:33 +00:00
parent 4fba39bb48
commit 5413d2bdeb
12 changed files with 250 additions and 28 deletions

6
fmt_ldapstring.c Normal file
View File

@@ -0,0 +1,6 @@
#include "asn1.h"
#include "ldap.h"
int fmt_ldapstring(char* dest,struct string* s) {
return fmt_asn1OCTETSTRING(dest,s->s,s->l);
}