In article <[EMAIL PROTECTED]>,
 "J Rice" <[EMAIL PROTECTED]> wrote:

> The problem I have is that the client can send to the server, but the
> server can't send back to the client because it gets this error:
> 
> socket.error: (107, 'Transport endpoint is not connected')
> 
> This is despite the client waiting on a socket.recv() statement.  Is
> the client really not connected, or is the server unaware of the
> connection?  And how do I fix this?

You can either connect() as well as bind(), or use
sendto(data, file)

   Donn Cave, [EMAIL PROTECTED]
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to