159deaec5SRodney W. Grimes /* 259deaec5SRodney W. Grimes * Copyright (c) 1983, 1993 359deaec5SRodney W. Grimes * The Regents of the University of California. All rights reserved. 459deaec5SRodney W. Grimes * 559deaec5SRodney W. Grimes * Redistribution and use in source and binary forms, with or without 659deaec5SRodney W. Grimes * modification, are permitted provided that the following conditions 759deaec5SRodney W. Grimes * are met: 859deaec5SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 959deaec5SRodney W. Grimes * notice, this list of conditions and the following disclaimer. 1059deaec5SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 1159deaec5SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 1259deaec5SRodney W. Grimes * documentation and/or other materials provided with the distribution. 132cca9f8fSWarner Losh * 3. Neither the name of the University nor the names of its contributors 1459deaec5SRodney W. Grimes * may be used to endorse or promote products derived from this software 1559deaec5SRodney W. Grimes * without specific prior written permission. 1659deaec5SRodney W. Grimes * 1759deaec5SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 1859deaec5SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1959deaec5SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2059deaec5SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2159deaec5SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2259deaec5SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2359deaec5SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2459deaec5SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2559deaec5SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2659deaec5SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2759deaec5SRodney W. Grimes * SUCH DAMAGE. 2859deaec5SRodney W. Grimes * 2959deaec5SRodney W. Grimes * @(#)rwhod.h 8.1 (Berkeley) 6/2/93 302cca9f8fSWarner Losh * 312cca9f8fSWarner Losh * $FreeBSD$ 3259deaec5SRodney W. Grimes */ 3359deaec5SRodney W. Grimes 34385e380aSPaul Richards #ifndef _PROTOCOLS_RWHOD_H_ 35385e380aSPaul Richards #define _PROTOCOLS_RWHOD_H_ 3659deaec5SRodney W. Grimes 3759deaec5SRodney W. Grimes /* 3859deaec5SRodney W. Grimes * rwho protocol packet format. 3959deaec5SRodney W. Grimes */ 4059deaec5SRodney W. Grimes struct outmp { 4159deaec5SRodney W. Grimes char out_line[8]; /* tty name */ 4259deaec5SRodney W. Grimes char out_name[8]; /* user id */ 43689c44c5SDima Ruban int32_t out_time; /* time on */ 4459deaec5SRodney W. Grimes }; 4559deaec5SRodney W. Grimes 4659deaec5SRodney W. Grimes struct whod { 4759deaec5SRodney W. Grimes char wd_vers; /* protocol version # */ 4859deaec5SRodney W. Grimes char wd_type; /* packet type, see below */ 4959deaec5SRodney W. Grimes char wd_pad[2]; 5059deaec5SRodney W. Grimes int wd_sendtime; /* time stamp by sender */ 5159deaec5SRodney W. Grimes int wd_recvtime; /* time stamp applied by receiver */ 5259deaec5SRodney W. Grimes char wd_hostname[32]; /* hosts's name */ 5359deaec5SRodney W. Grimes int wd_loadav[3]; /* load average as in uptime */ 5459deaec5SRodney W. Grimes int wd_boottime; /* time system booted */ 5559deaec5SRodney W. Grimes struct whoent { 5659deaec5SRodney W. Grimes struct outmp we_utmp; /* active tty info */ 5759deaec5SRodney W. Grimes int we_idle; /* tty idle time */ 5859deaec5SRodney W. Grimes } wd_we[1024 / sizeof (struct whoent)]; 5959deaec5SRodney W. Grimes }; 6059deaec5SRodney W. Grimes 6159deaec5SRodney W. Grimes #define WHODVERSION 1 6259deaec5SRodney W. Grimes #define WHODTYPE_STATUS 1 /* host status */ 6359deaec5SRodney W. Grimes 6459deaec5SRodney W. Grimes #define _PATH_RWHODIR "/var/rwho" 6559deaec5SRodney W. Grimes 6659deaec5SRodney W. Grimes #endif /* !_RWHOD_H_ */ 67