I have a process P that listens for incoming TCP connections on one port. I am observing that sometimes clients have to issue several SYN to get a SYN-ACK back and then the processing of their connection. I think the process P is not able to handle more than a dozen of incoming parallel connections per second.
Is this delay and retry coming from my process P that is not accepting new TCP connection fast enough ? How could I confirm this ?