I want to emulate multicast with socket.io
I am used to BSD sockets where you save file descriptors in FD_SET, and iterate over them in an event loop to send() or write to them individually. If I can do the analogy in javascript, I will be golden:)
Any ideas on how to store the "file descriptors" and then individually send() data to those descriptors with socket.io?
thanks in advance!