]> andersk Git - openssh.git/blame - uidswap.h
- (bal) Put USE_PIPES back into sco3.2v5
[openssh.git] / uidswap.h
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
6ae2364d 5 *
bcbf86ec 6 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
5260325f 11 */
8efc0c15 12
13#ifndef UIDSWAP_H
14#define UIDSWAP_H
15
5260325f 16/*
17 * Temporarily changes to the given uid. If the effective user id is not
18 * root, this does nothing. This call cannot be nested.
19 */
20void temporarily_use_uid(uid_t uid);
8efc0c15 21
5260325f 22/*
23 * Restores the original effective user id after temporarily_use_uid().
24 * This should only be called while temporarily_use_uid is effective.
25 */
1e3b8b07 26void restore_uid(void);
8efc0c15 27
5260325f 28/*
29 * Permanently sets all uids to the given uid. This cannot be called while
30 * temporarily_use_uid is effective. This must also clear any saved uids.
31 */
32void permanently_set_uid(uid_t uid);
8efc0c15 33
5260325f 34#endif /* UIDSWAP_H */
This page took 0.110703 seconds and 5 git commands to generate.