Home | History | Annotate | Line # | Download | only in librpcsvc
      1  1.1     jtc /*
      2  1.1     jtc  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
      3  1.1     jtc  * unrestricted use provided that this legend is included on all tape
      4  1.1     jtc  * media and as a part of the software program in whole or part.  Users
      5  1.1     jtc  * may copy or modify Sun RPC without charge, but are not authorized
      6  1.1     jtc  * to license or distribute it to anyone else except as part of a product or
      7  1.1     jtc  * program developed by the user.
      8  1.4  simonb  *
      9  1.1     jtc  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
     10  1.1     jtc  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
     11  1.1     jtc  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
     12  1.4  simonb  *
     13  1.1     jtc  * Sun RPC is provided with no support and without any obligation on the
     14  1.1     jtc  * part of Sun Microsystems, Inc. to assist in its use, correction,
     15  1.1     jtc  * modification or enhancement.
     16  1.4  simonb  *
     17  1.1     jtc  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
     18  1.1     jtc  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
     19  1.1     jtc  * OR ANY PART THEREOF.
     20  1.4  simonb  *
     21  1.1     jtc  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
     22  1.1     jtc  * or profits or other special, indirect and consequential damages, even if
     23  1.1     jtc  * Sun has been advised of the possibility of such damages.
     24  1.4  simonb  *
     25  1.1     jtc  * Sun Microsystems, Inc.
     26  1.1     jtc  * 2550 Garcia Avenue
     27  1.1     jtc  * Mountain View, California  94043
     28  1.1     jtc  */
     29  1.1     jtc 
     30  1.1     jtc /*
     31  1.1     jtc  * Find out about remote users
     32  1.1     jtc  */
     33  1.1     jtc 
     34  1.1     jtc #ifndef RPC_HDR
     35  1.3   lukem %#include <sys/cdefs.h>
     36  1.5  kleink %#ifndef __lint__
     37  1.1     jtc %/*static char sccsid[] = "from: @(#)rnusers.x 1.2 87/09/20 Copyr 1987 Sun Micro";*/
     38  1.1     jtc /* @(#)rusers.x 1.1 91/12/01 Copyright 1991 Sun Microsystems, Inc. */
     39  1.5  kleink %__RCSID("$NetBSD: rusers.x,v 1.5 2004/07/01 22:52:34 kleink Exp $");
     40  1.5  kleink %#endif /* not __lint__ */
     41  1.1     jtc #endif
     42  1.1     jtc 
     43  1.1     jtc %/*
     44  1.1     jtc % * Find out about remote users
     45  1.1     jtc % */
     46  1.1     jtc 
     47  1.1     jtc const RUSERS_MAXUSERLEN = 32;
     48  1.1     jtc const RUSERS_MAXLINELEN = 32;
     49  1.1     jtc const RUSERS_MAXHOSTLEN = 257;
     50  1.1     jtc 
     51  1.1     jtc struct rusers_utmp {
     52  1.1     jtc 	string ut_user<RUSERS_MAXUSERLEN>;	/* aka ut_name */
     53  1.1     jtc 	string ut_line<RUSERS_MAXLINELEN>;	/* device */
     54  1.1     jtc 	string ut_host<RUSERS_MAXHOSTLEN>;	/* host user logged on from */
     55  1.1     jtc 	int ut_type;				/* type of entry */
     56  1.1     jtc 	int ut_time;				/* time entry was made */
     57  1.1     jtc 	unsigned int ut_idle;			/* minutes idle */
     58  1.1     jtc };
     59  1.1     jtc 
     60  1.1     jtc typedef rusers_utmp utmp_array<>;
     61  1.1     jtc 
     62  1.1     jtc #ifdef RPC_HDR
     63  1.1     jtc %
     64  1.1     jtc %/*
     65  1.1     jtc % * Values for ut_type field above.
     66  1.1     jtc % */
     67  1.1     jtc #endif
     68  1.1     jtc const	RUSERS_EMPTY = 0;
     69  1.1     jtc const	RUSERS_RUN_LVL = 1;
     70  1.1     jtc const	RUSERS_BOOT_TIME = 2;
     71  1.1     jtc const	RUSERS_OLD_TIME = 3;
     72  1.1     jtc const	RUSERS_NEW_TIME = 4;
     73  1.1     jtc const	RUSERS_INIT_PROCESS = 5;
     74  1.1     jtc const	RUSERS_LOGIN_PROCESS = 6;
     75  1.1     jtc const	RUSERS_USER_PROCESS = 7;
     76  1.1     jtc const	RUSERS_DEAD_PROCESS = 8;
     77  1.1     jtc const	RUSERS_ACCOUNTING = 9;
     78  1.1     jtc 
     79  1.1     jtc program RUSERSPROG {
     80  1.1     jtc 
     81  1.1     jtc 	version RUSERSVERS_3 {
     82  1.1     jtc 		int
     83  1.1     jtc 		RUSERSPROC_NUM(void) = 1;
     84  1.1     jtc 
     85  1.1     jtc 		utmp_array
     86  1.1     jtc 		RUSERSPROC_NAMES(void) = 2;
     87  1.1     jtc 
     88  1.1     jtc 		utmp_array
     89  1.1     jtc 		RUSERSPROC_ALLNAMES(void) = 3;
     90  1.1     jtc 	} = 3;
     91  1.1     jtc 
     92  1.1     jtc } = 100002;
     93