摘要: socket版本 import socket def handleRequest(client): buf = client.recv(2048) print(buf) msg = "HTTP/1.1 200 OK\r\n\r\n" msg1 = "Hello World!" client.send 阅读全文
posted @ 2022-06-22 15:01 蘑菇王国大聪明 阅读(121) 评论(0) 推荐(0) 编辑