|
From: Andy R. <an...@pl...> - 2006-02-17 17:46:49
|
dene maxwell wrote: > "Doesn't make the least sense" sorry don't understand this.... > > ... Telenet being a application layer protocol requires alot more details as > to recipient and also alot higher overhead to implement...whereas UDP being > a trasport layer protocol is less distinct in is destination and requires > less overhead to implement. This is basically wrong. TCP sockets are easier to implement for almost all applications, precicely because they are reliable. UDP will only look easier if you plan on skipping the code to recover from a lost packet. Some applications can do this, but the property tree can't -- property access is non-idempotent in the general case. Listeners can have side effects. I'm not sure what you mean about "less distinct in destination", both TCP connections and UDP packets must go to a specific destination address (although you can use UDP to a broadcast address on your local LAN). Andy |