Click here to Skip to main content
15,902,889 members
Home / Discussions / C#
   

C#

 
GeneralRe: UDP Send Interval Pin
Dave Kreskowiak27-Dec-10 8:36
mveDave Kreskowiak27-Dec-10 8:36 
AnswerRe: UDP Send Interval Pin
_Erik_27-Dec-10 3:59
_Erik_27-Dec-10 3:59 
GeneralRe: UDP Send Interval Pin
softwarejaeger27-Dec-10 4:13
softwarejaeger27-Dec-10 4:13 
GeneralRe: UDP Send Interval Pin
_Erik_27-Dec-10 4:53
_Erik_27-Dec-10 4:53 
GeneralRe: UDP Send Interval Pin
Dave Kreskowiak27-Dec-10 8:40
mveDave Kreskowiak27-Dec-10 8:40 
AnswerRe: UDP Send Interval Pin
carbon_golem27-Dec-10 9:58
carbon_golem27-Dec-10 9:58 
GeneralRe: UDP Send Interval Pin
Richard MacCutchan27-Dec-10 22:27
mveRichard MacCutchan27-Dec-10 22:27 
GeneralRe: UDP Send Interval Pin
carbon_golem28-Dec-10 4:37
carbon_golem28-Dec-10 4:37 
You have to be aware of the sequence number. It will be up to the receiver to keep track of what it has and to identify missing frames.

1,2,3,4,5,6, 7-MISSING ,8,9,10,11, 12-MISSING... etc.

A quick scan through the list and you'll find the missing frames (7 and 12). The receiver would have to request that those two be resent. If all frames were ACK'd the sender is waiting for a confirmation and is waiting to send the next one in line. I've worked with systems that function like this, and the ACK-on-every-message is woefully slow on high latency networks. You just have to send and hope it gets there, and put in provisions to resend frames later on down the road.

You could also pre-parse the data that is to be sent and create a manifest of sorts that is sent first. If you know exactly what to expect in a data transfer the problem gets a little easier I think.
"Simplicity carried to the extreme becomes elegance."
-Jon Franklin

GeneralRe: UDP Send Interval Pin
Richard MacCutchan28-Dec-10 5:34
mveRichard MacCutchan28-Dec-10 5:34 
GeneralRe: UDP Send Interval Pin
carbon_golem28-Dec-10 6:09
carbon_golem28-Dec-10 6:09 
QuestionHow to localize AssemblyInfo.cs? Pin
Chesnokov Yuriy27-Dec-10 2:46
professionalChesnokov Yuriy27-Dec-10 2:46 
AnswerRe: How to localize AssemblyInfo.cs? Pin
Tony Richards27-Dec-10 3:10
Tony Richards27-Dec-10 3:10 
AnswerRe: How to localize AssemblyInfo.cs? Pin
Michael Agroskin30-Dec-10 17:27
Michael Agroskin30-Dec-10 17:27 
QuestionAuto localizing with ResXResourceReader Pin
Chesnokov Yuriy27-Dec-10 2:45
professionalChesnokov Yuriy27-Dec-10 2:45 
QuestionIncrease the quota : XmlDictionaryReaderQuotas Pin
abbd26-Dec-10 21:22
abbd26-Dec-10 21:22 
AnswerRepost Pin
Pete O'Hanlon26-Dec-10 21:44
mvePete O'Hanlon26-Dec-10 21:44 
GeneralRe: Repost Pin
abbd26-Dec-10 21:53
abbd26-Dec-10 21:53 
GeneralRe: Repost Pin
Pete O'Hanlon26-Dec-10 22:05
mvePete O'Hanlon26-Dec-10 22:05 
QuestionRe: Repost Pin
abbd26-Dec-10 22:13
abbd26-Dec-10 22:13 
AnswerRe: Repost Pin
Keith Barrow26-Dec-10 23:13
professionalKeith Barrow26-Dec-10 23:13 
GeneralRe: Repost Pin
#realJSOP27-Dec-10 1:26
professional#realJSOP27-Dec-10 1:26 
GeneralRe: Repost Pin
_Erik_27-Dec-10 4:11
_Erik_27-Dec-10 4:11 
QuestionRe: Repost Pin
abbd26-Dec-10 22:35
abbd26-Dec-10 22:35 
GeneralRe: Repost Pin
Keith Barrow26-Dec-10 23:15
professionalKeith Barrow26-Dec-10 23:15 
GeneralRe: Repost Pin
Pete O'Hanlon26-Dec-10 23:49
mvePete O'Hanlon26-Dec-10 23:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.