Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Socket Programming

by flyingmoose (Priest)
on Jan 07, 2004 at 13:40 UTC ( [id://319434]=note: print w/replies, xml ) Need Help??


in reply to Socket Programming

UDP has not been mentioned yet. While TCP/IP is a protocol that is stream based (like a pipe), UDP is not. UDP can only send one packet at a time, and the packets are not guaranteed to arrive or arrive in the same order. You might use UDP in a situation in a situation where your packets are merely informational (ex: systems monitoring) and you do not need to send huge chunks of ordered data. Essentially, UDP will be faster and will not cause problems for the sending application if the recipient does not behave properly. For 95% of the applications out there, though, TCP/IP is preferable.

Replies are listed 'Best First'.
Re: Re: Socket Programming
by MidLifeXis (Monsignor) on Jan 07, 2004 at 17:45 UTC
    > You might use UDP in a situation in a situation

    Or in a situation where you do not care about duplicate packets ;)

    --MidLifeXis

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://319434]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (2)
As of 2024-04-20 04:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found