On Fri, Feb 12, 2010 at 11:38 AM, <learningpyt...@aol.com> wrote: > > > > > > > Hello Gurus, > > I am troubled suddenly with (10054, 'Connection reset by peer') error with > same settings, which was working earlier in the day. > > data,addr = self.mysock.recvfrom(buf) after this step eclipse dies with > (10054, 'Connection reset by peer') error. >
This is nothing but the ECONNRESET error on the underlying socket when it tries to do a send. In TCP terms, this means the other end suddenly dropped the connection using a RST packet, while your program was trying to write to it. > Have tried after restarting the system > Have tried after restarting the remote sytem . > Ping to remote system is fine > > Note: The IP and every configuration is same as when it is working .. > > Any clues will help me .. > > Regards > -- Anand > _______________________________________________ > BangPypers mailing list > BangPypers@python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- --Anand _______________________________________________ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers