home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / telecomm / nhclb120 / config.h < prev    next >
Text File  |  1993-09-26  |  2KB  |  70 lines

  1. /* Software options */
  2. #define    SERVERS        1    /* Include TCP servers */
  3. #define    TRACE        1    /* Include packet tracing code */
  4. #define    NSESSIONS    10    /* Number of interactive clients */
  5. /*#undef    SCREEN        1*/    /* trace screen on the Atari-ST */
  6. #define    TYPE        1    /* Include type command */
  7. #define    FLOW        1    /* Enable local tty flow control */
  8. /*#undef  TNC2        1 */      /* TNC2 MBBIOS emulator */
  9. #define MODEM_CALL    1    /* Include modem dialing for SLIP */
  10.  
  11. /* Hardware configuration */
  12. /*#undef    PC_EC        1    *//* 3-Com 3C501 Ethernet controller */
  13. #define    SLIP        1    /* Serial line IP */
  14. /*#undef    SLFP        1    *//* MIT Serial line framing protocol */
  15. #define    KISS        1    /* KISS TNC code */
  16. /*#undef    HAPN        1*/    /* Hamilton Area Packet Network driver code */
  17. /*#undef    EAGLE        1*/    /* Eagle card driver */
  18. /*#undef    PACKET        1    *//* FTP Software's Packet Driver interface */
  19. /*#undef    PC100        1*/    /* PAC-COM PC-100 driver code */
  20. /*#undef    APPLETALK    1    *//* Appletalk interface (Macintosh) */
  21. /*#undef    PLUS        1    *//* HP's Portable Plus is the platform */
  22. #undef LINUX_ETH    /*1    *//* Linux generic Ethernet support */
  23.  
  24. #if    defined(NOMAD)
  25. #undef    PLUS
  26. #define    PLUS        1    /* NOMAD implies PLUS */
  27. #endif
  28.  
  29. /* software options */
  30. #define _FINGER        1    /* add finger command code */ 
  31. #define    MULPORT        1    /* include GRAPES multiport digipeater code */
  32. #define    NRS          1    /* NET/ROM async interface */
  33. #define    NETROM        1    /* NET/ROM network support */
  34.  
  35. #if    defined(PLUS)        /* these don't make sense on HP's laptop */
  36. #undef    PC_EC             /* 3-Com 3C501 Ethernet controller */
  37. #undef    HAPN             /* Hamilton Area Packet Network driver code */
  38. #undef    EAGLE             /* Eagle card driver */
  39. #undef    PACKET             /* FTP Software's Packet Driver interface */
  40. #undef    PC100             /* PAC-COM PC-100 driver code */
  41. #undef    APPLETALK         /* Appletalk interface (Macintosh) */
  42. #undef    MULPORT             /* include GRAPES multiport digipeater code */
  43. #endif
  44.  
  45. #if !defined(SLIP)
  46. #undef MODEM_CALL         /* Don't Include modem dialing for SLIP */
  47. #endif
  48.  
  49. #if    defined(NRS)
  50. #undef    NETROM
  51. #define    NETROM        1    /* NRS implies NETROM */
  52. #endif
  53.  
  54. #if    (defined(NETROM) || defined(KISS) || defined(HAPN) || defined(EAGLE) || defined(PC100))
  55. #define    AX25        1        /* AX.25 subnet code */
  56. #endif
  57.  
  58. /* KISS TNC, SLIP, NRS or PACKET implies ASY */
  59. #if (defined(KISS) || defined(PACKET) || defined(NRS) || defined(SLIP) || defined(SLFP))
  60. #undef    ASY
  61. #define    ASY        1    /* Asynch driver code */
  62. #endif
  63.  
  64. #if (defined(PC_EC) || defined(PACKET) || defined(LINUX_ETH))
  65. #define    ETHER    1        /* Generic Ethernet code */
  66. #endif
  67.  
  68.  
  69.  
  70.