This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ueJone
Recipients ueJone
Date 2021-05-11.10:07:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1620727659.65.0.182288383134.issue44107@roundup.psfhosted.org>
In-reply-to
Content
# HTTP Server
from http.server import HTTPServer, SimpleHTTPRequestHandler  
 
port = 80  

httpd = HTTPServer(('', port), SimpleHTTPRequestHandler)
print("Starting simple_httpd on port: " + str(httpd.server_port))  
httpd.serve_forever()

#########################################
HTTP client(192.168.1.8) close the socket when http request is done.But the http server(192.168.1.168) does't send 'TCP_FIN' message.
History
Date User Action Args
2021-05-11 10:07:39ueJonesetrecipients: + ueJone
2021-05-11 10:07:39ueJonesetmessageid: <1620727659.65.0.182288383134.issue44107@roundup.psfhosted.org>
2021-05-11 10:07:39ueJonelinkissue44107 messages
2021-05-11 10:07:39ueJonecreate