xref: /original-bsd/include/protocols/rwhod.h (revision 6b7db209)
1 /*	rwhod.h	4.3	82/12/24	*/
2 
3 struct	whod {
4 	int	wd_sendtime;
5 	int	wd_recvtime;
6 	char	wd_hostname[32];
7 	int	wd_loadav[3];
8 	int	wd_boottime;
9 	struct	whoent {
10 		struct	utmp we_utmp;
11 		int	we_idle;
12 	} wd_we[1024 / sizeof (struct whoent)];
13 };
14 
15 #define	RWHODIR	"/usr/spool/rwho"	/* where data is stored */
16