I need a pattern for retransmitting packets over an unreliable connection. I am using a packet ID in the send which gets echo’ed back in the ACK so I can pair them. I am using C#. Any help would be greatly appreciated.
I need a pattern for retransmitting packets over an unreliable connection. I am using
Share
have your pick of any Automatic Repeat reQuest [ARQ] algorithm. Selective repeat will probably yield the best results, but is harder to implement, though I believe you can find an implementation for it for C#.