How to get Acknowlegement in TCP communication in Java
- by Sunil Kumar Sahoo
I have written a socket program in Java. Both server and client can sent/receive data to each other. But I found that if client sends data to server using TCP then internally TCP sends acknowledgement to the client once the data is received by the server. I want to detect or handle that acknowledgement. How can I read or write data in TCP so that I can handle TCP acknowledgement.
Thanks
Sunil Kumar Sahoo