首页 > 代码库 > 查看某个端口是否链接超时

查看某个端口是否链接超时

def curl_tyt(port):

        buf=cStringIO.StringIO()

        cc=pycurl.Curl()

        cc.setopt(cc.URL,‘http://10.67.21.11‘)

        cc.setopt(cc.WRITEFUNCTION,buf.write)

        cc.setopt(cc.CONNECTTIMEOUT,5)

        cc.setopt(cc.TIMEOUT,8)

        cc.setopt(cc.PROXY,‘http://10.67.21.11:%s‘%port)

        cc.perform()


本文出自 “expect批量同步数据” 博客,请务必保留此出处http://4249964.blog.51cto.com/4239964/1566862

查看某个端口是否链接超时