On Wednesday 17 May 2006 19:02, Robert Lewko wrote: > I am using UDP because the client is using a satellite modem. The server > uses UDP port 9608. When the server gets a packet it just gets the source > address and returns the response packet to the sender. Like I said I have > had no problem with that port both while I have been developing the code > and for the last week until this afternoon.
as you know, udp has no guarantee of delivery (or ordering for that matter). so if there are any network issues whatsoever you can lose udp packets pretty easily; tcp packets will resend when they aren't ack'd. if you need guarantees with udp you usually end up setting up some sort of ack-on-failure (as opposed to tcp's ack on success which suppresses a resend). welcome to udp =) -- Aaron J. Seigo GPG Fingerprint: 8B8B 2209 0C6F 7C47 B1EA EE75 D6B7 2EB1 A7F1 DB43 Full time KDE developer sponsored by Trolltech (http://www.trolltech.com)
pgpptVwRqhwyG.pgp
Description: PGP signature
_______________________________________________ clug-talk mailing list [email protected] http://clug.ca/mailman/listinfo/clug-talk_clug.ca Mailing List Guidelines (http://clug.ca/ml_guidelines.php) **Please remove these lines when replying

