diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2008-11-26 10:18:53 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2008-11-26 10:18:53 +0000 |
commit | d4db08d7a6e13c87ce6dd09c28917a8bea5a0be6 (patch) | |
tree | a207dfcd28b7573effcf74c235d4c0054e837c44 /winsup/cygserver/bsd_helper.h | |
parent | 51303cbd0c22d81d20d99934c71474809e72fa1a (diff) | |
download | cygnal-d4db08d7a6e13c87ce6dd09c28917a8bea5a0be6.tar.gz cygnal-d4db08d7a6e13c87ce6dd09c28917a8bea5a0be6.tar.bz2 cygnal-d4db08d7a6e13c87ce6dd09c28917a8bea5a0be6.zip |
* Makefile.in (OBJS): Add setpwd.o.
* README: Explain new service to store passwords in the LSA registry
area.
* bsd_helper.cc (get_token_info): Make externally available.
* bsd_helper.h (get_token_info): Declare.
* client.cc (client_request::handle_request): Add case for
CYGSERVER_REQUEST_SETPWD request.
* setpwd.cc: New file implementing the CYGSERVER_REQUEST_SETPWD
request.
Diffstat (limited to 'winsup/cygserver/bsd_helper.h')
-rw-r--r-- | winsup/cygserver/bsd_helper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygserver/bsd_helper.h b/winsup/cygserver/bsd_helper.h index 014b82a05..045898573 100644 --- a/winsup/cygserver/bsd_helper.h +++ b/winsup/cygserver/bsd_helper.h @@ -44,6 +44,7 @@ int win_copyout (struct thread *, const void *, void *, size_t); #define copyin(a,b,c) win_copyin((td),(a),(b),(c)) #define copyout(a,b,c) win_copyout((td),(a),(b),(c)) +void *get_token_info (HANDLE, TOKEN_INFORMATION_CLASS); int ipcperm (struct thread *, struct ipc_perm *, unsigned int); int suser (struct thread *); bool adjust_identity_info (struct proc *p); |