home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume14 / nntp1.5 / part01 / server / globals.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-04-18  |  697 b   |  43 lines

  1. #ifndef lint
  2. static char    *sccsid = "@(#)globals.c    1.4    (Berkeley) 7/17/87";
  3. #endif
  4.  
  5. /*
  6.  * Common variables.
  7.  */
  8.  
  9. #include "common.h"
  10.  
  11. /*
  12.  * Variables initialized from ../common/conf.h
  13.  */
  14.  
  15. char    spooldir[] = SPOOLDIR;
  16. char    activefile[] = ACTIVE_FILE;
  17. char    accessfile[] = ACCESS_FILE;
  18. char    historyfile[] = HISTORY_FILE;
  19. char    ngdatefile[] = NGDATE_FILE;
  20. char    inews[] = INEWS;
  21. char    rnews[] = RNEWS;
  22.  
  23. /*
  24.  * Other random externals.
  25.  */
  26.  
  27. char    **group_array;
  28. int    num_groups;
  29. int    ingroup = 0;
  30. int    art_ptr;
  31. int    num_arts;
  32. int    art_array[MAX_ARTICLES];
  33. FILE    *art_fp;
  34. int    uid_poster, gid_poster;
  35. int    canpost, canread, canxfer;
  36. char    **ngpermlist;
  37. int    ngpermcount;
  38.  
  39. #ifdef LOG
  40. int    arts_acsd;
  41. int    grps_acsd;
  42. #endif
  43.