home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / internet / tcpipsrc / h / CONFIG < prev    next >
Text File  |  1992-02-14  |  1KB  |  36 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.  
  6. /* Hardware configuration */
  7. #undef  PC_EC                   /* 3-Com 3C501 Ethernet controller */
  8. #define SLIP            1       /* Serial line IP */
  9. #define KISS            1       /* KISS TNC code */
  10. #undef  HAPN                    /* Hamilton Area Packet Network driver code */
  11. #undef  EAGLE                   /* Eagle card driver */
  12. #undef  PACKET                  /* FTP Software's Packet Driver interface */
  13. #undef  PC100                   /* PAC-COM PC-100 driver code */
  14. #undef  APPLETALK               /* Appletalk interface (Macintosh) */
  15. #define NRS             1       /* NET/ROM async interface */
  16. #define NETROM          1       /* NET/ROM network support */
  17.  
  18. #if (defined(NRS))
  19. #undef  NETROM
  20. #define NETROM          1       /* NRS implies NETROM */
  21. #endif
  22.  
  23. #if (defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100))
  24. #define AX25            1               /* AX.25 subnet code */
  25. #endif
  26.  
  27. /* KISS TNC, SLIP, NRS or PACKET implies ASY */
  28. #if (defined(KISS) || defined(PACKET) || defined(NRS) || defined(SLIP))
  29. #undef  ASY
  30. #define ASY             1       /* Asynch driver code */
  31. #endif
  32.  
  33. #if (defined(PC_EC) || defined(PACKET))
  34. #define ETHER   1               /* Generic Ethernet code */
  35. #endif
  36.