1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-26 23:33:15 +03:00

updated the 3.0 branch from the head branch - ready for alpha18

(This used to be commit 03ac082dcb)
This commit is contained in:
Andrew Tridgell
2002-07-15 10:35:28 +00:00
parent ec167dc9cc
commit e90b652848
374 changed files with 27163 additions and 17298 deletions

View File

@@ -35,6 +35,8 @@
#define SECRETS_DOMAIN_SID "SECRETS/SID"
#define SECRETS_SAM_SID "SAM/SID"
#define SECRETS_LDAP_BIND_PW "SECRETS/LDAP_BIND_PW"
/* Authenticated user info is stored in secrets.tdb under these keys */
#define SECRETS_AUTH_USER "SECRETS/AUTH_USER"
@@ -48,12 +50,26 @@ struct machine_acct_pass {
time_t mod_time;
};
/* structure for storing trusted domain password */
/*
* storage structure for trusted domain
*/
struct trusted_dom_pass {
int pass_len;
fstring pass;
size_t uni_name_len;
smb_ucs2_t uni_name[32]; /* unicode domain name */
size_t pass_len;
fstring pass; /* trust relationship's password */
time_t mod_time;
DOM_SID domain_sid; /* remote domain's sid */
DOM_SID domain_sid; /* remote domain's sid */
};
/*
* trusted domain entry/entries returned by secrets_get_trusted_domains
* (used in _lsa_enum_trust_dom call)
*/
typedef struct trustdom {
smb_ucs2_t *name;
DOM_SID sid;
} TRUSTDOM;
#endif /* _SECRETS_H */