home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR3 / KA9Q212.ZIP / CONFIG.H < prev    next >
C/C++ Source or Header  |  1993-07-16  |  3KB  |  76 lines

  1. /****************************************************************************
  2. *    $Id: config.h 1.5 93/07/16 11:43:29 ROOT_DOS Exp $
  3. *    20 May 92    1.2        GT    Dial up stuff only.                                *
  4. *    13 Jul 93    1.3        GT    Disable LZW.                                    *
  5. *                            Disable SLIP.                                    *
  6. ****************************************************************************/
  7.  
  8. #ifndef    _CONFIG_H
  9. #define    _CONFIG_H
  10.  
  11. /* Software options */
  12. #define    MAILBOX        1    /* Include SM0RGV mailbox server */
  13. #define    NNTP        1    /* Netnews client */
  14. #define    SERVERS        1    /* Include TCP servers */
  15. #define    TRACE        1    /* Include packet tracing code */
  16. #define    RIP            1    /* Include RIP routing */
  17. #define    HOPCHECK    1    /* IP path tracing command */
  18. #define    DIALER        1    /* SLIP redial code */
  19. #undef    NRS            1    /* NET/ROM async interface */
  20. #undef    NETROM        1    /* NET/ROM network support */
  21. #undef    LZW            1    /* LZW-compressed sockets */
  22. #undef    SLIP        1    /* Serial line IP on built-in ports */
  23. #define PPP            1    /* Point-to-Point Protocol code */
  24. #define VJCOMPRESS    1    /* Van Jacobson TCP compression for SLIP */
  25. #define ATCMD       1   /* Include timed 'at' execution */
  26. #define MULTITASK   1   /* Include Dos shell multi-tasker */
  27. #define ALLCMD         1   /* if undefined, exclude a bunch of commands */
  28. #define    ANSI        1    /* Emulate an ansi terminal */
  29. #define DSERVER        1    /* Domain Name Server */
  30. #define    FILTER        1    /* IP packet filtering */
  31. #define    FILETRANS    1    /* X/Y/Zmodem file transfer */
  32.  
  33. /* Software tuning parameters */
  34. #define    MTHRESH        8192    /* Default memory threshold */
  35. #define    NROWS        25    /* Number of rows on screen */
  36. #define    NIBUFS        5    /* Number of interrupt buffers */
  37. #define    IBUFSIZE    2048    /* Size of interrupt buffers */
  38. #define    NSESSIONS    10    /* Number of interactive clients */
  39. #define DEFNSOCK    40    /* Default number of sockets */
  40.  
  41. /* Hardware driver options */
  42. #undef    ARCNET        1    /* ARCnet via PACKET driver */
  43. #undef    PC_EC        1    /* 3-Com 3C501 Ethernet controller */
  44. #undef    KISS        1    /* KISS TNC code */
  45. #undef    HS        1    /* High speed (56kbps) modem driver */
  46. #undef    HAPN        1    /* Hamilton Area Packet Network driver code */
  47. #undef    EAGLE        1    /* Eagle card driver */
  48. #undef    PI        1    /*  PI card driver */
  49. #define    PACKET        1    /* FTP Software's Packet Driver interface */
  50. #undef    PC100        1    /* PAC-COM PC-100 driver code */
  51. #undef    APPLETALK    1    /* Appletalk interface (Macintosh) */
  52. #undef    DRSI        1    /* DRSI PCPA slow-speed driver */
  53. #undef    SCC        1    /* PE1CHL generic scc driver */
  54. #define    ASY        1    /* Asynch driver code */
  55. #undef    SLFP        1    /* SLFP packet driver class supported */
  56.  
  57. #if defined(NRS)
  58. #undef    NETROM
  59. #define    NETROM        1    /* NRS implies NETROM */
  60. #endif
  61.  
  62. #if (defined(HS)||defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100)||defined(PI))
  63. #define    AX25        1    /* AX.25 subnet code */
  64. #endif
  65.  
  66. #if (defined(ARCNET) || defined(SLFP))
  67. #undef    PACKET
  68. #define    PACKET        1    /* FTP Software's Packet Driver interface */
  69. #endif
  70.  
  71. #if (defined(PC_EC) || defined(PACKET))
  72. #define    ETHER    1        /* Generic Ethernet code */
  73. #endif
  74.  
  75. #endif    /* _CONFIG_H */
  76.