[issue10724] socket.close close telnet with RST

2010-12-21 Thread sean216
sean216 taoyuan-...@163.com added the comment: Note that in your sample capture, I don't see any invalid sequence/ack number. please check telnet_unnormal RST.pcap in No. 1600-1602,the 1602 RST meseage is the invalid sequence/ack number 172. -- status: closed - open

[issue10724] socket.close close telnet with RST

2010-12-21 Thread sean216
Changes by sean216 taoyuan-...@163.com: Removed file: http://bugs.python.org/file20091/normal RST and fin.pcap ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10724

[issue10724] socket.close close telnet with RST

2010-12-21 Thread sean216
Changes by sean216 taoyuan-...@163.com: Removed file: http://bugs.python.org/file20090/telnet_unnormal RST.pcap ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10724

[issue10724] socket.close close telnet with RST

2010-12-16 Thread sean216
New submission from sean216 taoyuan-...@163.com: when use socket.close to close the telnet connection, in normal usage the tcp disconnect will be (socket.close send the TCP FIN) TCP ATCP B 1. ESTABLISHED

[issue10724] socket.close close telnet with RST

2010-12-16 Thread sean216
Changes by sean216 taoyuan-...@163.com: Added file: http://bugs.python.org/file20091/normal RST and fin.pcap ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10724

[issue10724] socket.close close telnet with RST

2010-12-16 Thread sean216
sean216 taoyuan-...@163.com added the comment: def close(self): self._sock = _closedsocket() dummy = self._sock._dummy for method in _delegate_methods: setattr(self, method, dummy) close.__doc__ = _realsocket.close.__doc__ socket.close function use