nocem.h
上传用户:minyiyu
上传日期:2018-12-24
资源大小:864k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. /*
  2.   NoCeM-INNBBSD
  3.   Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw>
  4. */
  5. /*
  6. $Id: nocem.h,v 1.3 2000/02/14 05:52:44 edwardc Exp $
  7. */
  8. #ifndef NOCEM_H
  9. #define NOCEM_H
  10. #include "innbbsconf.h"
  11. #include "bbslib.h"
  12. #include "inntobbs.h"
  13. #include "version.h"
  14. #include <varargs.h>
  15. typedef struct ncmperm_t
  16. {
  17.   char *issuer;
  18.   char *type;
  19.   int perm;
  20. } ncmperm_t;
  21. ncmperm_t *NCMPERM=NULL, **NCMPERM_BYTYPE=NULL;
  22. static char *NCMPERM_BUF;
  23. int NCMCOUNT = 0;
  24. #define TEXT    0
  25. #define NCMHDR  1
  26. #define NCMBDY  2
  27. #define NOPGP   -1
  28. #define PGPGOOD 0
  29. #define PGPBAD  1
  30. #define PGPUN   2
  31. #define P_OKAY  0
  32. #define P_FAIL  -1
  33. #define P_UNKNOWN       -2
  34. #define P_DISALLOW      -3
  35. #define STRLEN          80
  36. #define MAXSPAMMID      1000
  37. #define LeeymBBS        BBSHOST
  38. #define LeeymEMAIL      ADMINUSER
  39. #define NCMINNBBSVER    VERSION
  40. extern char NCMVER[];
  41. extern char ISSUER[];
  42. extern char TYPE[];
  43. extern char ACTION[];
  44. extern char NCMID[];
  45. extern char COUNT[];
  46. extern char THRESHOLD[];
  47. extern char KEYID[];
  48. extern char SPAMMID_NOW[];
  49. extern char SPAMMID[][];
  50. #endif /* NOCEM_H */