/* * COMPONENT_NAME: onchdrs * * FUNCTIONS: none * * ORIGINS: 24,27 * * * (C) COPYRIGHT International Business Machines Corp. 1988,1993 * All Rights Reserved * Licensed Materials - Property of IBM * US Government Users Restricted Rights - Use, duplication or * disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ /* * Copyright (c) 1988 by Sun Microsystems, Inc. * (#) from SUN 1.3 */ /* (#)rex.h 1.2 12/21/88 09:57:51 */ /* (#)rex.h 1.2 88/05/08 4.0NFSSRC SMI */ #ifndef _H_rpcsvc_rex #define _H_rpcsvc_rex #include #include /* * rex - remote execution server definitions */ #define REXPROG 100017 #define REXPROC_NULL 0 /* no operation */ #define REXPROC_START 1 /* start a command */ #define REXPROC_WAIT 2 /* wait for a command to complete */ #define REXPROC_MODES 3 /* send the tty modes */ #define REXPROC_WINCH 4 /* signal a window change */ #define REXPROC_SIGNAL 5 /* other signals */ #define REXVERS 1 /* flags for rst_flags field */ #define REX_INTERACTIVE 1 /* Interative mode */ struct rex_start { /* * Structure passed as parameter to start function */ char **rst_cmd; /* list of command and args */ char *rst_host; /* working directory host name */ char *rst_fsname; /* working directory file system name */ char *rst_dirwithin; /* working directory within file system */ char **rst_env; /* list of environment */ u_short rst_port0; /* port for stdin */ u_short rst_port1; /* port for stdin */ u_short rst_port2; /* port for stdin */ u_long rst_flags; /* options - see #defines above */ }; bool_t xdr_rex_start(XDR *, struct rex_start *); struct rex_result { /* * Structure returned from the start function */ int rlt_stat; /* integer status code */ char *rlt_message; /* string message for human consumption */ }; bool_t xdr_rex_result(XDR *, struct rex_result *); struct rex_ttymode { /* * Structure sent to set-up the tty modes */ struct sgttyb basic; /* standard unix tty flags */ struct tchars more; /* interrupt, kill characters, etc. */ struct ltchars yetmore; /* special Bezerkeley characters */ u_long andmore; /* and Berkeley modes */ }; bool_t xdr_rex_ttymode(XDR *, struct rex_ttymode *); bool_t xdr_rex_ttysize(XDR *, struct ttysize *); #endif /*_H_rpcsvc_rex*/