2004-10-12 21:45:41 +00:00
|
|
|
# This file is part of Fail2Ban.
|
|
|
|
#
|
|
|
|
# Fail2Ban is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Fail2Ban is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Fail2Ban; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
# Author: Cyril Jaquier
|
|
|
|
#
|
2006-07-16 22:21:58 +00:00
|
|
|
# $Revision$
|
2004-10-12 21:45:41 +00:00
|
|
|
|
|
|
|
__author__ = "Cyril Jaquier"
|
2006-07-16 22:21:58 +00:00
|
|
|
__version__ = "$Revision$"
|
|
|
|
__date__ = "$Date$"
|
2004-10-12 21:45:41 +00:00
|
|
|
__copyright__ = "Copyright (c) 2004 Cyril Jaquier"
|
|
|
|
__license__ = "GPL"
|
|
|
|
|
2006-09-25 17:03:48 +00:00
|
|
|
import logging
|
2006-06-26 20:05:00 +00:00
|
|
|
|
|
|
|
# Gets the instance of the logger.
|
|
|
|
logSys = logging.getLogger("fail2ban")
|
|
|
|
|
|
|
|
class Ticket:
|
|
|
|
|
|
|
|
def __init__(self, ip, time):
|
2006-09-19 20:38:32 +00:00
|
|
|
self.__ip = ip
|
|
|
|
self.__time = time
|
|
|
|
self.__attempt = 0
|
2006-06-26 20:05:00 +00:00
|
|
|
|
|
|
|
def setIP(self, value):
|
2006-09-19 20:38:32 +00:00
|
|
|
self.__ip = value
|
2006-06-26 20:05:00 +00:00
|
|
|
|
|
|
|
def getIP(self):
|
2006-09-19 20:38:32 +00:00
|
|
|
return self.__ip
|
2006-06-26 20:05:00 +00:00
|
|
|
|
|
|
|
def setTime(self, value):
|
2006-09-19 20:38:32 +00:00
|
|
|
self.__time = value
|
2006-06-26 20:05:00 +00:00
|
|
|
|
|
|
|
def getTime(self):
|
2006-09-19 20:38:32 +00:00
|
|
|
return self.__time
|
2006-08-06 21:25:23 +00:00
|
|
|
|
|
|
|
def setAttempt(self, value):
|
2006-09-19 20:38:32 +00:00
|
|
|
self.__attempt = value
|
2006-08-06 21:25:23 +00:00
|
|
|
|
|
|
|
def getAttempt(self):
|
2006-09-19 20:38:32 +00:00
|
|
|
return self.__attempt
|
2006-06-26 20:05:00 +00:00
|
|
|
|