Changeset 740 for vendor/current/source4/param/secrets.h
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source4/param/secrets.h
r414 r740 27 27 #define SECRETS_KRBTGT_SEARCH "(&((|(realm=%s)(flatname=%s))(samAccountName=krbtgt)))" 28 28 #define SECRETS_PRINCIPAL_SEARCH "(&(|(realm=%s)(flatname=%s))(servicePrincipalName=%s))" 29 #define SECRETS_LDAP_FILTER "( objectclass=ldapSecret)"29 #define SECRETS_LDAP_FILTER "(&(objectclass=ldapSecret)(cn=SAMDB Credentials))" 30 30 31 31 /** … … 39 39 struct loadparm_context; 40 40 struct tevent_context; 41 struct ldb_message; 42 struct ldb_context; 43 44 #include "librpc/gen_ndr/misc.h" 45 41 46 struct tdb_wrap *secrets_init(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx); 42 struct ldb_context *secrets_db_connect(TALLOC_CTX *mem_ctx, struct tevent_context *ev_ctx, struct loadparm_context *lp_ctx); 43 struct dom_sid *secrets_get_domain_sid(TALLOC_CTX *mem_ctx, struct tevent_context *ev_ctx, struct loadparm_context *lp_ctx, const char *domain); 47 struct ldb_context *secrets_db_connect(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx); 48 struct dom_sid *secrets_get_domain_sid(TALLOC_CTX *mem_ctx, 49 struct loadparm_context *lp_ctx, 50 const char *domain, 51 enum netr_SchannelType *sec_channel_type, 52 char **errstring); 53 char *keytab_name_from_msg(TALLOC_CTX *mem_ctx, struct ldb_context *ldb, struct ldb_message *msg); 44 54 45 55
Note:
See TracChangeset
for help on using the changeset viewer.