This is pipe.h in view mode; [Download] [Up]
/* @(#)src/transports/pipe.h 1.2 24 Oct 1990 05:25:53 */
/*
* Copyright (C) 1987, 1988 Ronald S. Karr and Landon Curt Noll
*
* See the file COPYING, distributed with smail, for restriction
* and warranty information.
*/
/*
* pipe.h:
* interface file for transport driver in pipe.c.
*/
/* structure for pipe driver's private data */
struct pipe_private {
char *cmd;
char *user; /* run as this user */
char *group; /* run as this group */
int umask; /* umask for child process */
};
/* transport flags private to pipe.c */
#define PIPE_AS_USER 0x00010000 /* use uid/gid from addr structure */
#define PIPE_IGNORE_STATUS 0x00020000 /* ignore exit status of program */
#define PIPE_AS_SENDER 0x00040000 /* use uid of sender */
#define PIPE_LOG_OUTPUT 0x00080000 /* log program output */
#define PIPE_PARENT_ENV 0x00100000 /* stuff env from parent addr */
#define PIPE_IGNORE_WRERRS 0x00200000 /* ignore write errors */
#define PIPE_DEFER_ERRORS 0x00400000 /* defer rather than fail on errors */
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.