本文整理汇总了Python中sync.Sync.receive_new_hosts方法的典型用法代码示例。如果您正苦于以下问题:Python Sync.receive_new_hosts方法的具体用法?Python Sync.receive_new_hosts怎么用?Python Sync.receive_new_hosts使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sync.Sync
的用法示例。
在下文中一共展示了Sync.receive_new_hosts方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Sync
# 需要导入模块: from sync import Sync [as 别名]
# 或者: from sync.Sync import receive_new_hosts [as 别名]
logging.getLogger().exception(e)
raise
self.purge_counter = 0
if sync_sleep_ratio:
#debug("sync count: %d", self.sync_counter)
self.sync_counter += 1
if self.sync_counter == sync_sleep_ratio:
try:
sync = Sync(self.__prefs)
if self.__sync_upload:
debug("sync upload")
timestamp = sync.send_new_hosts()
if self.__sync_download:
debug("sync download")
new_hosts = sync.receive_new_hosts()
if new_hosts:
info("received new hosts: %s", str(new_hosts))
self.get_denied_hosts()
self.update_hosts_deny(new_hosts)
sync.xmlrpc_disconnect()
except Exception, e:
logging.getLogger().exception(e)
raise
self.sync_counter = 0
def get_denied_hosts(self):
self.__denied_hosts = {}
for line in open(self.__prefs.get('HOSTS_DENY'), "r"):
if line[0] not in ('#', '\n'):