單進程單線程,完成併發服務器(基礎版)

# 單進程單線程,完成併發服務器 from socket import * def main(): serverSocket = socket(AF_INET, SOCK_STREAM) serverSocket.bind(("", 7788)) serverSocket.listen(5) serverSocket.setblocking(False)
相關文章
相關標籤/搜索