127680Sbloom /* 234921Sbostic * Copyright (c) 1983 Eric P. Allman 3*62525Sbostic * Copyright (c) 1988, 1993 4*62525Sbostic * The Regents of the University of California. All rights reserved. 533729Sbostic * 642826Sbostic * %sccs.include.redist.c% 733729Sbostic * 8*62525Sbostic * @(#)mailstats.h 8.1 (Berkeley) 06/07/93 933729Sbostic */ 1027680Sbloom 1127680Sbloom /* 1227680Sbloom ** Statistics structure. 1327680Sbloom */ 1427680Sbloom 1527680Sbloom struct statistics 1627680Sbloom { 1727680Sbloom time_t stat_itime; /* file initialization time */ 1827680Sbloom short stat_size; /* size of this structure */ 1927680Sbloom long stat_nf[MAXMAILERS]; /* # msgs from each mailer */ 2027680Sbloom long stat_bf[MAXMAILERS]; /* kbytes from each mailer */ 2127680Sbloom long stat_nt[MAXMAILERS]; /* # msgs to each mailer */ 2227680Sbloom long stat_bt[MAXMAILERS]; /* kbytes to each mailer */ 2327680Sbloom }; 24