diff options
author | Luke Leighton <lkcl@samba.org> | 1999-12-02 16:31:24 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-12-02 16:31:24 +0000 |
commit | e9b8c7743a45b4d045892f9039075fb8cfbd84e5 (patch) | |
tree | f4375c000f75eca421511fca65bd376989361cfc /source3/include | |
parent | 10b82d30b782ad990fc3386a8f0101641780a14e (diff) | |
download | samba-e9b8c7743a45b4d045892f9039075fb8cfbd84e5.tar.gz samba-e9b8c7743a45b4d045892f9039075fb8cfbd84e5.tar.bz2 samba-e9b8c7743a45b4d045892f9039075fb8cfbd84e5.zip |
default SID map now reads in "trusted domains" from smb.conf.
(This used to be commit f0946d1ccafeb5f541935b41f2d54bcbc06797ed)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index fc7653009f..eb898c44de 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -295,9 +295,12 @@ char *rep_inet_ntoa(struct in_addr ip); /*The following definitions come from lib/sids.c */ +struct sid_map* add_sidmap_to_array(uint32 *len, struct sid_map ***array, + const struct sid_map *name); void get_sam_domain_name(void); BOOL get_member_domain_sid(void); void generate_wellknown_sids(void); +BOOL create_sidmap_table(void); BOOL generate_sam_sid(char *domain_name, DOM_SID *sid); BOOL map_domain_name_to_sid(DOM_SID *sid, char **nt_domain); BOOL map_domain_sid_to_name(DOM_SID *sid, char *nt_domain); |