2020年6月3日
摘要: 1 import socket 2 import re 3 4 5 def main(): 6 # 1. 创建socket 7 http_server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 8 9 # 2. 绑定地址 1 阅读全文
posted @ 2020-06-03 14:29 fei2232 阅读(471) 评论(0) 推荐(0) 编辑