python 定時任務去檢測服務器端口是否通

import socket import threading import time def testconn( host , port ): sk = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sk.settimeout(1) try: sk.connect((host,port))
相關文章
相關標籤/搜索