Intial commit

This commit is contained in:
Mario Fetka
2024-05-27 16:13:40 +02:00
parent f8dc12b10a
commit d71d446104
2495 changed files with 539746 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
Tcl-DP: N-way Text-based Conferencing Example
This example creates a conference application, similar to CB radio,
where anyone can speak and everyone hears.
room.tcl -- the conferencing server, a room where conference
may take place.
enter.tcl -- the conferencing client, that enters a room.
After setting up the room and after clients have entered that room,
clients can type "say string," as in "say hello world!," to talk to
other participants. The server will repeat the message to all clients.
--------------------------------------------------------------------
To run a conferencing server...
Run wish.
Type "source room.tcl" and answer the questions.
--------------------------------------------------------------------
To start a conferencing client...
Run wish.
Type "source enter.tcl" and answer the questions.
Type "help" for on-line help.
--------------------------------------------------------------------
Experiment and run the conferencing client several times, to
represent many people in a conference.
--------------------------------------------------------------------