I'm testing my iPhone application for the reaction after the Network Connection is gone.
I'm using "send" system call to send the packets over the TCP connection:
ssize_t databytes = send(sockfd, buff, readed, 0);
The problem is that after the network is gone, my server stop receiving the packets and this system call keep returning that "could send" X amount of bytes for at least 2 minutes.
How can I fix this situation? I want to be sure that the packets arrived to the server.
Best!