https://github.com/teewrath/basic-tcl-network-server
A small network server that illustrates the sophisticated I/O and socket facilities in Tcl.
https://github.com/teewrath/basic-tcl-network-server
Last synced: 5 months ago
JSON representation
A small network server that illustrates the sophisticated I/O and socket facilities in Tcl.
- Host: GitHub
- URL: https://github.com/teewrath/basic-tcl-network-server
- Owner: TeeWrath
- Created: 2024-02-26T18:18:24.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-26T18:20:12.000Z (over 2 years ago)
- Last Synced: 2025-02-09T12:31:45.433Z (over 1 year ago)
- Language: Tcl
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# basic-tcl-network-server
A small network server that illustrates the sophisticated I/O and socket facilities in Tcl. The server can accept connections from multiple clients. For each client, the server just echoes what a client sends it. Tcl manages all the I/O with different clients so the server does not have to block servicing a client or waiting for connections. You can use this server as the basis for almost any network service.