blob: e6851d8dd9a3e48bcf36e482ae48edcb41747cce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder
#ifndef _LOGIN_IPBAN_H_
#define _LOGIN_IPBAN_H_
#include "../common/cbasetypes.h"
// initialize
void ipban_init(void);
// finalize
void ipban_final(void);
// check ip against ban list
bool ipban_check(uint32 ip);
// increases failure count for the specified IP
void ipban_log(uint32 ip);
// parses configuration option
bool ipban_config_read(const char* key, const char* value);
#endif /* _LOGIN_IPBAN_H_ */
|