From: ?a/b on
do you know how the client end the udp connection?

From: KiLVaiDeN on
> ¬a\/b wrote:
>
> do you know how the client end the udp connection?

You don't close an udp connection, AFAIK

Cheers
K

From: Phil Carmody on
"?a\\/b" <al(a)f.g> writes:
> do you know how the client end the udp connection?

What's a UDP 'connection'? You stick the datagram in
your outbox, and hope someone delivers it. End of story.

Phil
--
"Home taping is killing big business profits. We left this side blank
so you can help." -- Dead Kennedys, written upon the B-side of tapes of
/In God We Trust, Inc./.
From: f0dder on
?a\/b wrote:
> do you know how the client end the udp connection?

You don't end an UDP connection in the same way as you end a TCP connection,
since UDP itself is stateless. There can, however, be some
(sub)protocol-specific way of saying "okay, byebye".


From: Marco Minutoli on
On Thu, 26 Oct 2006 17:14:44 +0200, ?a\/b wrote:

> do you know how the client end the udp connection?

UDP is a connectionless protocol so there isn't any connection to close.
Just stop sending and close the socket.

bye
 | 
Pages: 1
Prev: Need help,thx
Next: Improving one's algorithm