1 /*
2  * Copyright (c) 1988 Regents of the University of California.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of California at Berkeley. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  *
12  *	@(#)mailstats.h	5.2 (Berkeley) 03/13/88
13  *
14  *  Sendmail
15  *  Copyright (c) 1983  Eric P. Allman
16  *  Berkeley, California
17  *
18  */
19 
20 /*
21 **  Statistics structure.
22 */
23 
24 struct statistics
25 {
26 	time_t	stat_itime;		/* file initialization time */
27 	short	stat_size;		/* size of this structure */
28 	long	stat_nf[MAXMAILERS];	/* # msgs from each mailer */
29 	long	stat_bf[MAXMAILERS];	/* kbytes from each mailer */
30 	long	stat_nt[MAXMAILERS];	/* # msgs to each mailer */
31 	long	stat_bt[MAXMAILERS];	/* kbytes to each mailer */
32 };
33