svn commit: samba r13621 - in branches/SAMBA_4_0/source/librpc/idl: .

metze at samba.org metze at samba.org
Wed Feb 22 10:23:14 GMT 2006


Author: metze
Date: 2006-02-22 10:23:14 +0000 (Wed, 22 Feb 2006)
New Revision: 13621

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13621

Log:
add an idl structure to parse saslauthd requests

metze

Modified:
   branches/SAMBA_4_0/source/librpc/idl/drsblobs.idl


Changeset:
Modified: branches/SAMBA_4_0/source/librpc/idl/drsblobs.idl
===================================================================
--- branches/SAMBA_4_0/source/librpc/idl/drsblobs.idl	2006-02-22 09:50:07 UTC (rev 13620)
+++ branches/SAMBA_4_0/source/librpc/idl/drsblobs.idl	2006-02-22 10:23:14 UTC (rev 13621)
@@ -163,4 +163,18 @@
 		[in] DsCompressedBlob blob
 		);
 
+	typedef [public,flag(NDR_NOALIGN|NDR_BIG_ENDIAN|NDR_PAHEX)] struct {
+		[value(strlen_m(authid))] uint16 authid_length;
+		[charset(UTF8)] uint8 authid[authid_length];
+		uint16 passwd_length;
+		uint8 passwd[passwd_length];
+		[value(strlen_m(service))] uint16 service_length;
+		[charset(UTF8)] uint8 service[service_length];
+		[value(strlen_m(realm))] uint16 realm_length;
+		[charset(UTF8)] uint8 realm[realm_length];
+	} saslauthdRequest;
+
+	void decode_saslauthd(
+		[in] saslauthdRequest req
+		);
 }



More information about the samba-cvs mailing list