def getPortStatus(self,ip,port):
s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
try:
s.settimeout(3)
s.connect((ip,int(port)))
s.shutdown(2)
return True
except:
return False
#??????????