127680Sbloom /* 234921Sbostic * Copyright (c) 1983 Eric P. Allman 333729Sbostic * Copyright (c) 1988 Regents of the University of California. 433729Sbostic * All rights reserved. 533729Sbostic * 6*42826Sbostic * %sccs.include.redist.c% 733729Sbostic * 8*42826Sbostic * @(#)mailstats.h 5.4 (Berkeley) 06/01/90 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