当前位置: 首页>>代码示例>>Python>>正文


Python UpnpPunch.open_port方法代码示例

本文整理汇总了Python中util.UpnpPunch.open_port方法的典型用法代码示例。如果您正苦于以下问题:Python UpnpPunch.open_port方法的具体用法?Python UpnpPunch.open_port怎么用?Python UpnpPunch.open_port使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在util.UpnpPunch的用法示例。


在下文中一共展示了UpnpPunch.open_port方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: openport

# 需要导入模块: from util import UpnpPunch [as 别名]
# 或者: from util.UpnpPunch import open_port [as 别名]
	def openport(self, port=None, check=True):
		if not port: port = self.port
		if self.port_opened: return True # Port already opened
		if check: # Check first if its already opened
			if self.testOpenport(port)["result"] == True:
				return True # Port already opened

		self.log.info("Trying to open port using UpnpPunch...")
		try:
			upnp_punch = UpnpPunch.open_port(self.port, 'ZeroNet')
			upnp_punch = True
		except Exception, err:
			self.log.error("UpnpPunch run error: %s" % Debug.formatException(err))
			upnp_punch = False
开发者ID:EdenSG,项目名称:ZeroNet,代码行数:16,代码来源:FileServer.py

示例2: openport

# 需要导入模块: from util import UpnpPunch [as 别名]
# 或者: from util.UpnpPunch import open_port [as 别名]
    def openport(self, port=None, check=True):
        if not port:
            port = self.port
        if self.port_opened:
            return True  # Port already opened
        if check:  # Check first if its already opened
            time.sleep(1)  # Wait for port open
            if self.testOpenport(port, use_alternative=False)["result"] is True:
                return True  # Port already opened

        if config.tor == "always":  # Port opening won't work in Tor mode
            return False

        self.log.info("Trying to open port using UpnpPunch...")
        try:
            upnp_punch = UpnpPunch.open_port(self.port, 'Phantom')
            upnp_punch = True
        except Exception, err:
            upnp_punch = False
开发者ID:shiftcurrency,项目名称:phantom,代码行数:21,代码来源:FileServer.py


注:本文中的util.UpnpPunch.open_port方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。