Reputation: 8815
In my program the receiver has a bigger workload, should i make the sender wait for the receiver through methods like application level ACK?
Upvotes: 0
Views: 445
Reputation: 41378
You shouldn't directly send TCP ACK messages--those are handled at a low level by the OS. I'd look at the following in order of likelihood:
Upvotes: 1