source: trunk/server/source3/librpc/idl/secrets.idl

Last change on this file was 745, checked in by Silvan Scherrer, 13 years ago

Samba Server: updated trunk to 3.6.0

File size: 603 bytes
Line 
1#include "idl_types.h"
2
3import "security.idl";
4
5/*
6 IDL structures for secrets code
7*/
8
9[
10 pointer_default(unique)
11]
12 interface secrets
13{
14
15 /*
16 * s3 on-disc storage structure for trusted domains, do not change !
17 */
18
19 typedef [flag(NDR_NOALIGN),public] struct {
20 [value(strlen_m_term(uni_name))] uint32 uni_name_len;
21 [charset(UTF16)] uint16 uni_name[32]; /* unicode domain name */
22 [value(strlen(pass))] uint32 pass_len;
23 astring pass; /* trust relationship's password */
24 time_t mod_time;
25 dom_sid domain_sid; /* remote domain's sid */
26 } TRUSTED_DOM_PASS;
27
28}
29
Note: See TracBrowser for help on using the repository browser.