diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-04-11 09:28:20 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-04-11 15:59:33 +0200 |
commit | dc9569e45fe39a6376dcb9a39295ac296e449ee7 (patch) | |
tree | 98fccfd5ed9329812e8cf62392db52c1bb2b85e9 /source3/nsswitch/libwbclient/wbclient.h | |
parent | a3f1b5f150a5cfee74485382cbc5d9debcf342d1 (diff) | |
download | samba-dc9569e45fe39a6376dcb9a39295ac296e449ee7.tar.gz samba-dc9569e45fe39a6376dcb9a39295ac296e449ee7.tar.xz samba-dc9569e45fe39a6376dcb9a39295ac296e449ee7.zip |
libwbclient: add wbcSet[U|G]idMapping() and wbcSet[U|G]idHwm() functions
metze
(This used to be commit 364e146805bb74b46da4d3c187e9a684d4b99a01)
Diffstat (limited to 'source3/nsswitch/libwbclient/wbclient.h')
-rw-r--r-- | source3/nsswitch/libwbclient/wbclient.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/nsswitch/libwbclient/wbclient.h b/source3/nsswitch/libwbclient/wbclient.h index 16b68c0802..4e7e5aff25 100644 --- a/source3/nsswitch/libwbclient/wbclient.h +++ b/source3/nsswitch/libwbclient/wbclient.h @@ -346,6 +346,14 @@ wbcErr wbcAllocateUid(uid_t *puid); wbcErr wbcAllocateGid(gid_t *pgid); +wbcErr wbcSetUidMapping(uid_t uid, const struct wbcDomainSid *sid); + +wbcErr wbcSetGidMapping(gid_t gid, const struct wbcDomainSid *sid); + +wbcErr wbcSetUidHwm(uid_t uid_hwm); + +wbcErr wbcSetGidHwm(gid_t gid_hwm); + /* * NSS Lookup User/Group details */ |