I want to develop a solution that works like this:
An application server does some logic and outputs data. Multiple clients can connect to the server and all of them get the sama data (the data change with time). Simply put, the server works as a broadcast.
Here's a diagram:
Is it possible (and correct) to use just one port on the server, since all the ports are just duplicates?
The thing is, I want the clients to be sure they got the whole message before they do something else with it - so I need TCP, not UDP logic. I guess fusing the server ports into one is not an option then..? Thank you :)