mailstats.h
上传用户:xu_441
上传日期:2007-01-04
资源大小:1640k
文件大小:1k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1998, 1999 Sendmail, Inc. and its suppliers.
  3.  * All rights reserved.
  4.  * Copyright (c) 1983 Eric P. Allman.  All rights reserved.
  5.  * Copyright (c) 1988, 1993
  6.  * The Regents of the University of California.  All rights reserved.
  7.  *
  8.  * By using this file, you agree to the terms and conditions set
  9.  * forth in the LICENSE file which can be found at the top level of
  10.  * the sendmail distribution.
  11.  *
  12.  *
  13.  * $Id: mailstats.h,v 8.13 1999/05/22 02:29:10 ca Exp $
  14.  */
  15. #define STAT_VERSION 3
  16. #define STAT_MAGIC 0x1B1DE
  17. /*
  18. **  Statistics structure.
  19. */
  20. struct statistics
  21. {
  22. int stat_magic; /* magic number */
  23. int stat_version; /* stat file version */
  24. time_t stat_itime; /* file initialization time */
  25. short stat_size; /* size of this structure */
  26. long stat_cf; /* # from connections */
  27. long stat_ct; /* # to connections */
  28. long stat_cr; /* # rejected connections */
  29. long stat_nf[MAXMAILERS]; /* # msgs from each mailer */
  30. long stat_bf[MAXMAILERS]; /* kbytes from each mailer */
  31. long stat_nt[MAXMAILERS]; /* # msgs to each mailer */
  32. long stat_bt[MAXMAILERS]; /* kbytes to each mailer */
  33. long stat_nr[MAXMAILERS]; /* # rejects by each mailer */
  34. long stat_nd[MAXMAILERS]; /* # discards by each mailer */
  35. };