home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1 / HamRadio.cdr / misc / tcpipsrc / oconfig.h < prev    next >
C/C++ Source or Header  |  1990-07-12  |  2KB  |  54 lines

  1. #ifndef    NSESSIONS
  2.  
  3. /* Software options */
  4. #define    MAILBOX        1    /* Include SM0RGV mailbox server */
  5. #define    SERVERS        1    /* Include TCP servers */
  6. #define    TRACE        1    /* Include packet tracing code */
  7. #define    RIP        1    /* Include RIP routing */
  8. #define    HOPCHECK    1    /* IP path tracing command */
  9. #define    NSESSIONS    10    /* Number of interactive clients */
  10. #define DEFNSOCK    40    /* Default number of sockets */
  11. #define    MTHRESH        8192    /* Default memory threshold */
  12. #define    NROWS        25    /* Number of rows on screen */
  13. #define    NIBUFS        5    /* Number of interrupt buffers */
  14. #define    IBUFSIZE    2048    /* Size of interrupt buffers */
  15.  
  16. /* Hardware configuration */
  17. #undef    ARCNET        1    /* ARCnet via PACKET driver */
  18. #undef    PC_EC        1    /* 3-Com 3C501 Ethernet controller */
  19. #define    SLIP        1    /* Serial line IP on built-in ports */
  20. #define    KISS        1    /* KISS TNC code */
  21. #undef    HS        1    /* High speed (56kbps) modem driver */
  22. #undef    HAPN        1    /* Hamilton Area Packet Network driver code */
  23. #undef    EAGLE        1    /* Eagle card driver */
  24. #define    PACKET        1    /* FTP Software's Packet Driver interface */
  25. #undef    PC100        1    /* PAC-COM PC-100 driver code */
  26. #undef    APPLETALK    1    /* Appletalk interface (Macintosh) */
  27. #define    NRS        1    /* NET/ROM async interface */
  28. #define    NETROM        1    /* NET/ROM network support */
  29. #undef    DRSI        1    /* DRSI PCPA slow-speed driver */
  30. #undef    SCC        1    /* PE1CHL generic scc driver */
  31. #define    ASY        1    /* Asynch driver code */
  32. #undef    SLFP        1    /* SLFP packet driver class supported */
  33.  
  34. #if defined(NRS)
  35. #undef    NETROM
  36. #define    NETROM        1    /* NRS implies NETROM */
  37. #endif
  38.  
  39. #if (defined(HS)||defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100))
  40. #define    AX25        1    /* AX.25 subnet code */
  41. #endif
  42.  
  43. #if (defined(ARCNET) || defined(SLFP))
  44. #undef    PACKET
  45. #define    PACKET        1    /* FTP Software's Packet Driver interface */
  46. #endif
  47.  
  48. #if (defined(PC_EC) || defined(PACKET))
  49. #define    ETHER    1        /* Generic Ethernet code */
  50. #endif
  51.  
  52. #endif    /* NSESSIONS */
  53.  
  54.