tags:

views:

66

answers:

1

I want to write a Net::Server chat server, probably using PreFork, with process tied to an active client. How do I "talk" between clients, with the proper filtering?

+5  A: 

You can start by taking a look at the chat example bundled with Net::Server.

Sinan Ünür