If I had a server feeding 100 bytes of data say once every 3 minutes to 1000 clients, which one of the following methods would put the lowest load on a 1ghz LAN?
1. TCPIP: Opening a Winsock connection in turn to each client, send data then Close.
2, TCPIP: Opening a number (say 60) of Winsock ports at a time and do as above.
3. UDP: OPen for broadcasting, broadcast data in one big string separated by an ID so each Client only recognises it's own data then closing connection.
4.UDP: Keep open for broadcasting, broadcast data with an ID so each client sees but only captures it's own data.
5. Any other method.
Thanks in advance
1. TCPIP: Opening a Winsock connection in turn to each client, send data then Close.
2, TCPIP: Opening a number (say 60) of Winsock ports at a time and do as above.
3. UDP: OPen for broadcasting, broadcast data in one big string separated by an ID so each Client only recognises it's own data then closing connection.
4.UDP: Keep open for broadcasting, broadcast data with an ID so each client sees but only captures it's own data.
5. Any other method.
Thanks in advance