home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / sendmail / sendmail-5.65c+IDA-1.4.4.1 / src / mailstats.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-20  |  1.7 KB  |  41 lines

  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 provided
  7.  * that: (1) source distributions retain this entire copyright notice and
  8.  * comment, and (2) distributions including binaries display the following
  9.  * acknowledgement:  ``This product includes software developed by the
  10.  * University of California, Berkeley and its contributors'' in the
  11.  * documentation or other materials provided with the distribution and in
  12.  * all advertising materials mentioning features or use of this software.
  13.  * Neither the name of the University nor the names of its contributors may
  14.  * be used to endorse or promote products derived from this software without
  15.  * specific prior written permission.
  16.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  17.  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  18.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  19.  *
  20.  *    @(#)mailstats.h    5.4 (Berkeley) 6/1/90
  21.  */
  22.  
  23. #ifndef    lint
  24. static char mailstats_h_sccs_id[] = "@(#)mailstats.h    5.4 (Berkeley) 6/1/90";
  25. static char mailstats_h_rcsid[] = "@(#)$Id: mailstats.h,v 5.4.0.3 1991/06/21 12:53:40 paul Exp $";
  26. #endif
  27.  
  28. /*
  29. **  Statistics structure.
  30. */
  31.  
  32. struct statistics
  33. {
  34.     time_t    stat_itime;            /* file initialization time */
  35.     short    stat_size;            /* size of this structure */
  36.     unsigned long    stat_nf[MAXMAILERS];    /* # msgs from each mailer */
  37.     unsigned long    stat_bf[MAXMAILERS];    /* kbytes from each mailer */
  38.     unsigned long    stat_nt[MAXMAILERS];    /* # msgs to each mailer */
  39.     unsigned long    stat_bt[MAXMAILERS];    /* kbytes to each mailer */
  40. };
  41.