home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / cnews.tar / relay / hdrint.h < prev    next >
C/C++ Source or Header  |  1992-03-17  |  421b  |  20 lines

  1. /*
  2.  * definitions internal to the header modules (hdr*.c)
  3.  */
  4.  
  5. #ifndef DEFDIST
  6. #define DEFDIST "world"        /* default Distribution: */
  7. #endif
  8.  
  9. struct hdrdef {
  10.     char *hdrnm;        /* ascii name */
  11.     unsigned hdrlen;    /* STRLEN(hdrnm) */
  12.     int hdroff;        /* offset into struct header */
  13. };
  14. typedef struct hdrdef *hdrlist[];
  15.  
  16. extern struct hdrdef pathhdr, xrefhdr;
  17. extern hdrlist reqdhdrs, opthdrs, hdrvilest;
  18.  
  19. extern boolean headdebug;
  20.