mirror of
https://repo.or.cz/socat.git
synced 2025-07-10 14:12:58 +00:00
socat V1.6.0.0 (initial GIT commit)
This commit is contained in:
commit
b819572f5e
170 changed files with 59193 additions and 0 deletions
31
xio-process.h
Normal file
31
xio-process.h
Normal file
|
@ -0,0 +1,31 @@
|
|||
/* $Id: xio-process.h,v 1.7 2002/10/01 19:37:51 gerhard Exp $ */
|
||||
/* Copyright Gerhard Rieger 2001, 2002 */
|
||||
/* Published under the GNU General Public License V.2, see file COPYING */
|
||||
|
||||
#ifndef __xio_process_h_included
|
||||
#define __xio_process_h_included 1
|
||||
|
||||
extern const struct optdesc opt_setgid_early;
|
||||
extern const struct optdesc opt_setgid;
|
||||
extern const struct optdesc opt_setuid_early;
|
||||
extern const struct optdesc opt_setuid;
|
||||
extern const struct optdesc opt_substuser;
|
||||
extern const struct optdesc opt_substuser_delayed;
|
||||
extern const struct optdesc opt_chroot_early;
|
||||
extern const struct optdesc opt_chroot;
|
||||
extern const struct optdesc opt_setsid;
|
||||
extern const struct optdesc opt_setpgid;
|
||||
|
||||
/* for option substuser-delayed, save info for later application */
|
||||
extern bool delayeduser;
|
||||
extern uid_t delayeduser_uid; /* numeric user id to switch to */
|
||||
extern gid_t delayeduser_gid; /* numeric group id to switch to */
|
||||
extern gid_t delayeduser_gids[NGROUPS]; /* num.supplementary group ids */
|
||||
extern size_t delayeduser_ngids; /* number of suppl. gids */
|
||||
extern char *delayeduser_name; /* name of user to switch to */
|
||||
extern char *delayeduser_dir; /* home directory of user to switch to */
|
||||
extern char *delayeduser_shell; /* login shell of user to switch to */
|
||||
|
||||
extern int _xioopen_setdelayeduser(void);
|
||||
|
||||
#endif /* !defined(__xio_process_h_included) */
|
Loading…
Add table
Add a link
Reference in a new issue