xref: /original-bsd/include/protocols/rwhod.h (revision b3b53e97)
1 /*	rwhod.h	4.1	82/04/02	*/
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_bootime;
9 	struct	whoent {
10 		struct	utmp we_utmp;
11 		int	we_idle;
12 	} wd_we[1024 / sizeof (struct whoent)];
13 };
14