README
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:3k
源码类别:

操作系统开发

开发平台:

DOS

  1. Projects:
  2. SERIAL I/O
  3. ==========
  4.     TERMSERV
  5.         - demonstrates a multi-session TELNET to serial port converter
  6.         - uses a user-defined configuration
  7.         - offers a web based configuration page, including userid/password
  8.           protection
  9.         - TELNET server, FTP server, SMTP and SYSLOG clients for notification,
  10.           Web server, CGI and Web cookies, Web passwords
  11.     XMODEM
  12.         - terminal with xmodem up/download feature
  13.     see also: INTERFACING
  14. NETWORKING
  15. ==========
  16.     EMAIL
  17.         - uses web form and sends out Email based on returned information.
  18.     FINGTEST
  19.         - a sample finger server
  20.     TELNETD
  21.         - a simple TELNET server which connects our console to a incoming
  22.           TELNET session
  23.     BALL
  24.         - between 1 and 400 balls can bounce around your screen,
  25.           demonstrates a large number of concurrent threads
  26.         - small numbers look better
  27.     NETBALL
  28.         - same as BALL, except displays output to TELNETed users
  29.         - suggest limiting balls to about 5 before it looks too weird
  30.     FINDGATE
  31.         - example UDP based server
  32.         - uses the sock_recv_from() function to determine who send datagrams
  33.         - listens to the LAN for RIP (routing information) packets from
  34.           routers and lists the routes they advertise
  35.     JAVA
  36.         - simple web server with server-side-includes for real time data
  37.         - uses client-side Java to display a bar graph with that data
  38.     NETWATCH
  39.         - simple program which lets you watch a protocol by acting as
  40.           an intermediary.
  41.         - on the command line you specify the destination server and
  42.           the TCP protocol number, eg. 25 for SMTP
  43.         - eg. run:  netwatch  207.46.230.219  25
  44.           then telnet to the local machine on port 25 (SMTP)
  45.           as an Email client would, and watch the transaction between
  46.           you and the destination server.
  47. WEB
  48. ===
  49.     See also: TERMSERVTERMSERV for a userid/password web example
  50.     WEB4TEST
  51.         - a web server which generates real time graphs based on web server
  52.           traffic
  53.     CGI
  54.         - use Web Forms to ask for an integer and then square it
  55.     COOKIE
  56.         - demonstrates the use of Web Cookies to enforce passwords
  57.     SCOPESCOPE
  58.         - a more complex example
  59.           This program demonstrates how to use a Web browser as a console
  60.           for an embedded web appliance.  Users can set a parameter using
  61.           a form, and the device returns a graph updated every few seconds.
  62. SOUND
  63. =====
  64.     SOUNDWAVE
  65.         - demonstrates audio output of Windows WAV files, run GO.BAT
  66.     MORSEMORSE
  67.         - converts typed text to Morse code
  68. INTERFACING
  69. ===========
  70.     KEYBOARDREADKEYS
  71.         - periodically read the keyboard port, shows how to do
  72.           interrupt based port reading in a thread
  73.     MODEM
  74.         - demonstrates a TELNET to single port terminal server,
  75.           using a fixed configuration
  76.     TERMSERVTERMSERV
  77.         - see description above
  78.     MOTORMOTOR
  79.         - the mouse is polled periodically for its position
  80.         - several independant balls try to follow the mouse at varying speeds
  81.     THERMTHERM
  82.         - demonstrates a simple temperature probe with JK Microsystem's
  83.           embedded uFlash board
  84.     THERMTSCOPE
  85.         - a web based remote temperature sensor using JK Microsystem's
  86.           embedded uFlash board.