/* Copyright 1984 by the Massachusetts Institute of Technology */

struct	logpktst {	unsb	l_type;
			unsb	l_stype;
			char	l_name[8];
			char	l_id[2];
			char	l_sender[8];
			char	l_stat[2];
			char	l_sstat[2];
/*			char	l_msg[];	*/
		};

#define	logpkt	struct logpktst
#define	mklogpkt(x)	((logpkt *) (x))

#define	UDPLOG	22

/* Types */
#define	LGT_LOG	'1'

/* Sub types */
#define	LGST_IGNORE	'1'
#define	LGST_LOG	'2'
#define	LGST_DIFLOG	'3'
#define	LGST_LOGNOACK	'4'

