1 /*
2 **  Sendmail
3 **  Copyright (c) 1983  Eric P. Allman
4 **  Berkeley, California
5 **
6 **  Copyright (c) 1983 Regents of the University of California.
7 **  All rights reserved.  The Berkeley software License Agreement
8 **  specifies the terms and conditions for redistribution.
9 **
10 **	"@(#)mailstats.h	5.1 (Berkeley) 05/02/86";
11 **
12 */
13 
14 /*
15 **  Statistics structure.
16 */
17 
18 struct statistics
19 {
20 	time_t	stat_itime;		/* file initialization time */
21 	short	stat_size;		/* size of this structure */
22 	long	stat_nf[MAXMAILERS];	/* # msgs from each mailer */
23 	long	stat_bf[MAXMAILERS];	/* kbytes from each mailer */
24 	long	stat_nt[MAXMAILERS];	/* # msgs to each mailer */
25 	long	stat_bt[MAXMAILERS];	/* kbytes to each mailer */
26 };
27