diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-12-04 06:46:53 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-12-04 06:46:53 +0000 |
commit | 689f45d2079d06b09947b2cdd314867df98c938d (patch) | |
tree | c0e24f2f7bd10945ef580d15d9f141ae58ea0808 /source/nsswitch/winbindd.h | |
parent | e908f304a26b9f1100e301610151a9334bf117b0 (diff) | |
download | samba-689f45d2079d06b09947b2cdd314867df98c938d.tar.gz samba-689f45d2079d06b09947b2cdd314867df98c938d.tar.xz samba-689f45d2079d06b09947b2cdd314867df98c938d.zip |
moved lookup_usergroups() into the backend structure
Diffstat (limited to 'source/nsswitch/winbindd.h')
-rw-r--r-- | source/nsswitch/winbindd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/nsswitch/winbindd.h b/source/nsswitch/winbindd.h index 01d334d4eb7..e290796e67b 100644 --- a/source/nsswitch/winbindd.h +++ b/source/nsswitch/winbindd.h @@ -116,6 +116,11 @@ struct winbindd_methods { TALLOC_CTX *mem_ctx, const char *user_name, uint32 user_rid, WINBIND_USERINFO *user_info); + + NTSTATUS (*lookup_usergroups)(struct winbindd_domain *domain, + TALLOC_CTX *mem_ctx, + uint32 user_rid, uint32 *num_groups, + uint32 **user_gids); }; /* Structures to hold per domain information */ |