I'm designing a communication protocol that will be used to communicate between two PC applications using socket connection. The most common case is when both application work on the same machine, but it will be possible to run one application on a remote machine. Application can exchange some data up to 2Mb/s. The question is: shall I use a confirmation packets to ensure that the packet sent by one application was received by the other one? I know that socket uses the TCP connection so the confirmation/retransmission is already implemented but I need some feedback from someone who used it in practice.
The technologies used: - socket server: .NET application that uses the following library: http://www.codeproject.com/KB/IP/AsyncSocketServerandClien.aspx - socket client: .NET or Delphi application