s3:idmap_ad: add support for ADS_AUTH_SASL_{STARTTLS,LDAPS}
[Samba.git] / source4 / librpc / idl / sasl_helpers.idl
blob5f5d52115e9523f2ca11b87771444f973fd53973
1 #include "idl_types.h"
4 uuid("7512b2f4-5f4f-11e4-bbe6-3c970e8d8226"),
5 version(1.0),
6 pointer_default(unique),
7 helpstring("SASL helpers")
9 interface sasl_helpers {
10 typedef [public,flag(NDR_NOALIGN|NDR_BIG_ENDIAN|NDR_PAHEX)] struct {
11 [value(strlen_m(authid))] uint16 authid_length;
12 [charset(UTF8)] uint8 authid[authid_length];
13 uint16 passwd_length;
14 uint8 passwd[passwd_length];
15 [value(strlen_m(service))] uint16 service_length;
16 [charset(UTF8)] uint8 service[service_length];
17 [value(strlen_m(realm))] uint16 realm_length;
18 [charset(UTF8)] uint8 realm[realm_length];
19 } saslauthdRequest;