當前位置: 首頁>>代碼示例>>Python>>正文


Python jailthread.JailThread類代碼示例

本文整理匯總了Python中jailthread.JailThread的典型用法代碼示例。如果您正苦於以下問題:Python JailThread類的具體用法?Python JailThread怎麽用?Python JailThread使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了JailThread類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

	def __init__(self, jail):
		JailThread.__init__(self)
		## The jail which contains this action.
		self.jail = jail
		self.__actions = list()
		## The ban manager.
		self.__banManager = BanManager()
開發者ID:JohnyByk,項目名稱:fail2ban,代碼行數:7,代碼來源:actions.py

示例2: __init__

 def __init__(self, jail):
     JailThread.__init__(self)
     ## The jail which contains this filter.
     self.jail = jail
     ## The failures manager.
     self.failManager = FailManager()
     ## The regular expression list matching the failures.
     self.__failRegex = list()
     ## The regular expression list with expressions to ignore.
     self.__ignoreRegex = list()
     ## The amount of time to look back.
     self.__findTime = 6000
     ## The ignore IP list.
     self.__ignoreIpList = []
     logSys.debug("Created Filter")
開發者ID:aspiers,項目名稱:Fail2Ban,代碼行數:15,代碼來源:filter.py

示例3: __init__

	def __init__(self, jail, useDns='warn'):
		JailThread.__init__(self)
		## The jail which contains this filter.
		self.jail = jail
		## The failures manager.
		self.failManager = FailManager()
		## The regular expression list matching the failures.
		self.__failRegex = list()
		## The regular expression list with expressions to ignore.
		self.__ignoreRegex = list()
		## Use DNS setting
		self.setUseDns(useDns)
		## The amount of time to look back.
		self.__findTime = 6000
		## The ignore IP list.
		self.__ignoreIpList = []

		self.dateDetector = DateDetector()
		self.dateDetector.addDefaultTemplate()
		logSys.debug("Created %s" % self)
開發者ID:ursweiss,項目名稱:fail2ban-ipv6,代碼行數:20,代碼來源:filter.py


注:本文中的jailthread.JailThread類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。