don't close seq maps -- this causes double-closes
[unix-history] / usr / src / usr.sbin / sendmail / src / mailstats.h
CommitLineData
ef19ebc1 1/*
dc45ba8c 2 * Copyright (c) 1983 Eric P. Allman
eb0bafab
KB
3 * Copyright (c) 1988, 1993
4 * The Regents of the University of California. All rights reserved.
bee79b64 5 *
417f7a11 6 * %sccs.include.redist.c%
bee79b64 7 *
eb0bafab 8 * @(#)mailstats.h 8.1 (Berkeley) %G%
bee79b64 9 */
ef19ebc1
JB
10
11/*
12** Statistics structure.
13*/
14
15struct statistics
16{
17 time_t stat_itime; /* file initialization time */
18 short stat_size; /* size of this structure */
19 long stat_nf[MAXMAILERS]; /* # msgs from each mailer */
20 long stat_bf[MAXMAILERS]; /* kbytes from each mailer */
21 long stat_nt[MAXMAILERS]; /* # msgs to each mailer */
22 long stat_bt[MAXMAILERS]; /* kbytes to each mailer */
23};