summaryrefslogtreecommitdiff
path: root/src/login/loginlog.h
blob: f4327764a190444ca0b8eda3a14ce8e76cfde5e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder

#ifndef LOGIN_LOGINLOG_H
#define LOGIN_LOGINLOG_H

#include "common/cbasetypes.h"

#ifdef HERCULES_CORE
// TODO: Interface
unsigned long loginlog_failedattempts(uint32 ip, unsigned int minutes);
void login_log(uint32 ip, const char* username, int rcode, const char* message);
bool loginlog_init(void);
bool loginlog_final(void);
bool loginlog_config_read(const char* w1, const char* w2);
#endif // HERCULES_CORE

#endif /* LOGIN_LOGINLOG_H */