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

# 鑑於poll和select方法相似,只是解決了併發上限問題 # (select 32位 1024 64位2048) # 因此直接上epoll方法(在window下沒法運行) from select import * from socket import * def main(): serverSocket = socket(AF_INET, SOCK_STREAM) s
相關文章
相關標籤/搜索