本文整理汇总了Python中txtorcon.TorConfig.FetchDirInfoEarly方法的典型用法代码示例。如果您正苦于以下问题:Python TorConfig.FetchDirInfoEarly方法的具体用法?Python TorConfig.FetchDirInfoEarly怎么用?Python TorConfig.FetchDirInfoEarly使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类txtorcon.TorConfig
的用法示例。
在下文中一共展示了TorConfig.FetchDirInfoEarly方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from txtorcon import TorConfig [as 别名]
# 或者: from txtorcon.TorConfig import FetchDirInfoEarly [as 别名]
def main():
log.startLogging(sys.stdout)
launch_tor = True
if launch_tor:
c = TorConfig()
#FIXME: check these values, parametize!
c.CircuitBuildTimeout = 20
c.LearnCircuitBuildTimeout = 0
c.CircuitIdleTimeout = 20
c.FetchDirInfoEarly = 1
c.FetchDirInfoExtraEarly = 1
c.FetchUselessDescriptors = 1
tor = start_tor(c)
else:
tor = build_local_tor_connection(reactor)
tor.addCallback(setconf_fetch_all_descs)
# check that each run is producing the same input set!
tor.addCallback(BwScan, reactor, './logs', partitions=1, this_partition=0)
tor.addCallback(lambda scanner: scanner.run_scan())
tor.addCallback(lambda _: reactor.stop())
reactor.run()