posted 15 years ago
Hi All,
Now I am creating single application using TCP and UDP Sockets. I have doubt on this, Actually, I am sending a file using UDP Multicasting. If three clients are receiving that file. I need to find receive missing packets by using TCP from all clients. I can do this. But how can I break this loop
while(true)
{
theclient = serverSocket.accept();
receiveMissingPackArray = new ReceiveMissingPackArray(clientNo,theclient,no_of_packets);
}
once all the missing packets are received. I have some question.
1) How to find number of clients connected to server.
2) How to find stil clients are connectd to server or not.
If any one help on this, which will be very useful for me.
Thanks in Advance.
-Prabhakaran