> How to join connections in server that any connected to the server client
> could talk to each other ? How to join streams on this server ?
There's two main ways of doing this.
(1) The client sends a message to the server, and the server repeats
that message to all the clients.
(2) When the client first connects, the server gives it a list of all
other connected clients. The clients send the messages directly to the other
clients they want to speak to.
- Oliver