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