On 5/7/07, tomer filiba <[EMAIL PROTECTED]> wrote: > for instance, there's no point in UDP sockets having listen(), or send() > or getpeername() -- with UDP you only ever use sendto and recvfrom. > on the other hand,
Actually, you can connect() UDP sockets, and then you can use send(), recv(), and getpeername(). > TCP sockets make no use of sendto(). and even with > TCP sockets, listeners never use send() or recv(), while connected > sockets never use listen() or connect(). Agreed. -- Daniel Stutzbach, Ph.D. President, Stutzbach Enterprises LLC _______________________________________________ Python-3000 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com
