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