home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 3 / hamradioversion3.0examsandprograms1992.iso / packet / n17jsrc / version.c < prev    next >
C/C++ Source or Header  |  1991-10-20  |  2KB  |  95 lines

  1. /* version control information */
  2. #include "config.h"
  3. #include "global.h"
  4. #include "mbuf.h"
  5. char Version[] = "910618 (PA0GRI v1.7j)";
  6. char Version2[] = "This version produced by Gerard van der Grinten - PA0GRI";
  7.  
  8. int
  9. doinfo(argc,argv,p)
  10. int argc;
  11. char *argv[];
  12. void *p;
  13. {
  14.     tprintf("NOS configuration information.   (PA0GRI version 911020)\n");
  15.     tprintf("containing axip, RARP, POP2, NNTP, TIP,");
  16. #ifdef SERVERS
  17.     tprintf(" TCP servers,\n");
  18. #endif
  19. #ifdef RIP
  20.     tprintf(" RIP,");
  21. #endif
  22. #ifdef RSPF
  23.     tprintf(" RSPF,");
  24. #endif
  25. #ifdef    BOOTP
  26.     tprintf(" BOOTP,");
  27. #endif
  28. #ifdef HOPCHECK
  29.     tprintf(" HOP,");
  30. #endif
  31. #ifdef MAILBOX
  32.     tprintf(" MAILBOX,");
  33. #endif
  34.     tprintf(" RLOGIN, and the Russell Nelson modsets\n");
  35.     tprintf("%d sockets, %d interrupt buffers of %d bytes\n",DEFNSOCK,Nibufs,Ibufsize);
  36. #ifdef    PC_EC
  37.     tprintf("3COM Ethernet controller driver\n");
  38. #endif
  39. #ifdef    ASY
  40.     tprintf("Generic async interface (via 8250/16450/16550)\n");
  41. #endif
  42. #ifdef    SLIP
  43.     tprintf("SLIP async interface (via 8250/16450/16550)\n");
  44. #endif
  45. #ifdef    KISS
  46.     tprintf("KISS async interface (via 8250/16450/16550)\n");
  47. #endif
  48. #ifdef    HS
  49.     tprintf("High speed (56kbps) modem driver\n");
  50. #endif
  51. #ifdef    PI
  52.     tprintf("PI scc card with dma driver (VE3IFB)\n");
  53. #endif
  54. #ifdef    PACKET
  55.     tprintf("FTP Software's PACKET driver interface\n");
  56. #endif
  57. #ifdef    ARCNET
  58.     tprintf("ARCnet via PACKET driver\n");
  59. #endif
  60. #ifdef    SLFP
  61.     tprintf("SLFP via PACKET driver\n");
  62. #endif
  63. #ifdef    PC100
  64.     tprintf("PAC-COM PC-100 driver\n");
  65. #endif
  66. #ifdef    DRSI
  67.     tprintf("DRSI PCPA low-speed driver\n");
  68. #endif
  69. #ifdef    SCC
  70.     tprintf("Generic SCC (8530) driver\n");
  71. #endif
  72. #ifdef    EAGLE
  73.     tprintf("Eagle 8530 board driver\n");
  74. #endif
  75. #ifdef    HAPN
  76.     tprintf("Hamilton Area Packet Network driver\n");
  77. #endif
  78. #ifdef    NRS
  79.     tprintf("NET/ROM async interface\n");
  80. #endif
  81. #ifdef    NETROM
  82.     tprintf("NET/ROM network interface\n");
  83. #endif
  84. #ifdef    PPP
  85.     tprintf("Point to Point network interface\n");
  86. #endif
  87. #ifdef    VJCOMPRESS
  88.     tprintf("Van Jacobson compression on SLIP/PPP\n");
  89. #endif
  90. #ifdef    FORTH
  91.     tprintf("Forth programming language\n");
  92. #endif
  93.     return 0;
  94. }
  95.