diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-01-26 09:55:38 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-01-26 09:55:38 +0000 |
commit | 06c79a1757fa953237239288a8736f30db61f193 (patch) | |
tree | 24b1107bd70b045ec1eef4dadf8db57a85744d37 /source3/nsswitch/winbindd_proto.h | |
parent | 4691c931e8a75b01d461395239f463258c1b12be (diff) | |
download | samba-06c79a1757fa953237239288a8736f30db61f193.tar.gz samba-06c79a1757fa953237239288a8736f30db61f193.tar.bz2 samba-06c79a1757fa953237239288a8736f30db61f193.zip |
Change the winbind interface to use seperate 'domain' and 'username' feilds for
the sid->uid and uid->sid conversions.
Remove some duplicate arguments from these funcitons, and update the
request/response structures for this and the 'winbind domain name' feature.
As such 'winbindd_lookup_name' now takes both a domain and username.
(This used to be commit ce1b4d4c309e4a60bec5a53224585bd504264672)
Diffstat (limited to 'source3/nsswitch/winbindd_proto.h')
-rw-r--r-- | source3/nsswitch/winbindd_proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_proto.h b/source3/nsswitch/winbindd_proto.h index 1823efaa9f..4c355d11b0 100644 --- a/source3/nsswitch/winbindd_proto.h +++ b/source3/nsswitch/winbindd_proto.h @@ -73,6 +73,7 @@ enum winbindd_result winbindd_ping(struct winbindd_cli_state *state); enum winbindd_result winbindd_info(struct winbindd_cli_state *state); enum winbindd_result winbindd_interface_version(struct winbindd_cli_state *state); +enum winbindd_result winbindd_domain_name(struct winbindd_cli_state *state); /* The following definitions come from nsswitch/winbindd_pam.c */ @@ -109,7 +110,6 @@ BOOL init_domain_list(void); struct winbindd_domain *find_domain_from_name(char *domain_name); struct winbindd_domain *find_domain_from_sid(DOM_SID *sid); BOOL winbindd_lookup_sid_by_name(struct winbindd_domain *domain, - const char *dom_name, const char *name, DOM_SID *sid, enum SID_NAME_USE *type); BOOL winbindd_lookup_name_by_sid(DOM_SID *sid, |