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