inter threading info

2005-03-23 Thread Tertius Cronje
Hi All, Q: Is it possible for a thread on SocketServer.ThreadingTCPServer to get the socket info of *other* open thread/s and use that info to send data to the accepting client? I wrote a socketserver using SocketServer.ThreadingTCPServer. A client is connected to the server and expects multiple

Re: inter threading info

2005-03-23 Thread Daniel Dittmar
Tertius Cronje wrote: Q: Is it possible for a thread on SocketServer.ThreadingTCPServer to get the socket info of *other* open thread/s and use that info to send data to the accepting client? A specific socket can be used from every thread of a process. Just make sure that you synchronize

RE: inter threading info

2005-03-23 Thread Tertius Cronje
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Dittmar Sent: Wednesday, March 23, 2005 4:46 PM To: python-list@python.org Subject: Re: inter threading info Tertius Cronje wrote: Q: Is it possible for a thread