1 /*
2  * Copyright (c) 1983 Eric P. Allman
3  * Copyright (c) 1988 Regents of the University of California.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted
7  * provided that the above copyright notice and this paragraph are
8  * duplicated in all such forms and that any documentation,
9  * advertising materials, and other materials related to such
10  * distribution and use acknowledge that the software was developed
11  * by the University of California, Berkeley.  The name of the
12  * University may not be used to endorse or promote products derived
13  * from this software without specific prior written permission.
14  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17  *
18  *	@(#)mailstats.h	5.3 (Berkeley) 06/30/88
19  */
20 
21 /*
22 **  Statistics structure.
23 */
24 
25 struct statistics
26 {
27 	time_t	stat_itime;		/* file initialization time */
28 	short	stat_size;		/* size of this structure */
29 	long	stat_nf[MAXMAILERS];	/* # msgs from each mailer */
30 	long	stat_bf[MAXMAILERS];	/* kbytes from each mailer */
31 	long	stat_nt[MAXMAILERS];	/* # msgs to each mailer */
32 	long	stat_bt[MAXMAILERS];	/* kbytes to each mailer */
33 };
34