aboutsummaryrefslogtreecommitdiff
path: root/src/version.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/version.h')
0 files changed, 0 insertions, 0 deletions
="hl com">but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef BAN_HEADER #define BAN_HEADER #include "util/string.h" #include "threading/thread.h" #include "threading/mutex.h" #include "exceptions.h" #include <map> #include <string> class BanManager { public: BanManager(const std::string &bannfilepath); ~BanManager(); void load(); void save(); bool isIpBanned(const std::string &ip); // Supplying ip_or_name = "" lists all bans. std::string getBanDescription(const std::string &ip_or_name); std::string getBanName(const std::string &ip);