127680Sbloom /*
2*33729Sbostic  * Copyright (c) 1988 Regents of the University of California.
3*33729Sbostic  * All rights reserved.
4*33729Sbostic  *
5*33729Sbostic  * Redistribution and use in source and binary forms are permitted
6*33729Sbostic  * provided that this notice is preserved and that due credit is given
7*33729Sbostic  * to the University of California at Berkeley. The name of the University
8*33729Sbostic  * may not be used to endorse or promote products derived from this
9*33729Sbostic  * software without specific prior written permission. This software
10*33729Sbostic  * is provided ``as is'' without express or implied warranty.
11*33729Sbostic  *
12*33729Sbostic  *	@(#)mailstats.h	5.2 (Berkeley) 03/13/88
13*33729Sbostic  *
14*33729Sbostic  *  Sendmail
15*33729Sbostic  *  Copyright (c) 1983  Eric P. Allman
16*33729Sbostic  *  Berkeley, California
17*33729Sbostic  *
18*33729Sbostic  */
1927680Sbloom 
2027680Sbloom /*
2127680Sbloom **  Statistics structure.
2227680Sbloom */
2327680Sbloom 
2427680Sbloom struct statistics
2527680Sbloom {
2627680Sbloom 	time_t	stat_itime;		/* file initialization time */
2727680Sbloom 	short	stat_size;		/* size of this structure */
2827680Sbloom 	long	stat_nf[MAXMAILERS];	/* # msgs from each mailer */
2927680Sbloom 	long	stat_bf[MAXMAILERS];	/* kbytes from each mailer */
3027680Sbloom 	long	stat_nt[MAXMAILERS];	/* # msgs to each mailer */
3127680Sbloom 	long	stat_bt[MAXMAILERS];	/* kbytes to each mailer */
3227680Sbloom };
33