1 /*
2  * Copyright (c) 1983 Eric P. Allman
3  * Copyright (c) 1988, 1993
4  *	The Regents of the University of California.  All rights reserved.
5  *
6  * %sccs.include.redist.c%
7  *
8  *	@(#)mailstats.h	8.1 (Berkeley) 06/07/93
9  */
10 
11 /*
12 **  Statistics structure.
13 */
14 
15 struct statistics
16 {
17 	time_t	stat_itime;		/* file initialization time */
18 	short	stat_size;		/* size of this structure */
19 	long	stat_nf[MAXMAILERS];	/* # msgs from each mailer */
20 	long	stat_bf[MAXMAILERS];	/* kbytes from each mailer */
21 	long	stat_nt[MAXMAILERS];	/* # msgs to each mailer */
22 	long	stat_bt[MAXMAILERS];	/* kbytes to each mailer */
23 };
24