summaryrefslogtreecommitdiffstats
path: root/scan_ldapbindrequest.c
diff options
context:
space:
mode:
Diffstat (limited to 'scan_ldapbindrequest.c')
-rw-r--r--scan_ldapbindrequest.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/scan_ldapbindrequest.c b/scan_ldapbindrequest.c
new file mode 100644
index 0000000..0ce7e12
--- /dev/null
+++ b/scan_ldapbindrequest.c
@@ -0,0 +1,17 @@
+#include "ldap.h"
+
+size_t scan_ldapbindrequest(const char* src,const char* max,
+ unsigned long* version,struct string* name,
+ unsigned long* method) {
+ size_t res,tmp;
+ if (!(res=scan_asn1INTEGER(src,max,(signed long*)version))) return 0;
+ if (!(tmp=scan_ldapstring(src+res,max,name))) return 0;
+ res+=tmp;
+ {
+ enum asn1_tagclass tc;
+ enum asn1_tagtype tt;
+ if (!(tmp=scan_asn1tag(src+res,max,&tc,&tt,method))) return 0;
+ if (tc!=PRIVATE || tt!=PRIMITIVE) return 0;
+ }
+ return res;
+}