join connections, build streams

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • domel

    #1

    join connections, build streams

    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 ?

    Thanks :)
  • Oliver Wong

    #2
    Re: join connections, build streams

    "domel" <dominikt@icpne t.pl> wrote in message
    news:e6694o$v1h $2@opal.icpnet. pl...[color=blue]
    > 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 ?[/color]

    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

    Comment

    Working...