127680Sbloom /*
2*34921Sbostic  * Copyright (c) 1983 Eric P. Allman
333729Sbostic  * Copyright (c) 1988 Regents of the University of California.
433729Sbostic  * All rights reserved.
533729Sbostic  *
633729Sbostic  * Redistribution and use in source and binary forms are permitted
7*34921Sbostic  * provided that the above copyright notice and this paragraph are
8*34921Sbostic  * duplicated in all such forms and that any documentation,
9*34921Sbostic  * advertising materials, and other materials related to such
10*34921Sbostic  * distribution and use acknowledge that the software was developed
11*34921Sbostic  * by the University of California, Berkeley.  The name of the
12*34921Sbostic  * University may not be used to endorse or promote products derived
13*34921Sbostic  * from this software without specific prior written permission.
14*34921Sbostic  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15*34921Sbostic  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16*34921Sbostic  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
1733729Sbostic  *
18*34921Sbostic  *	@(#)mailstats.h	5.3 (Berkeley) 06/30/88
1933729Sbostic  */
2027680Sbloom 
2127680Sbloom /*
2227680Sbloom **  Statistics structure.
2327680Sbloom */
2427680Sbloom 
2527680Sbloom struct statistics
2627680Sbloom {
2727680Sbloom 	time_t	stat_itime;		/* file initialization time */
2827680Sbloom 	short	stat_size;		/* size of this structure */
2927680Sbloom 	long	stat_nf[MAXMAILERS];	/* # msgs from each mailer */
3027680Sbloom 	long	stat_bf[MAXMAILERS];	/* kbytes from each mailer */
3127680Sbloom 	long	stat_nt[MAXMAILERS];	/* # msgs to each mailer */
3227680Sbloom 	long	stat_bt[MAXMAILERS];	/* kbytes to each mailer */
3327680Sbloom };
34