Author: Bleep <helveytw@home.com>
[ircu2.10.12-pk.git] / include / IPcheck.h
1 /*
2  * IPcheck.h
3  *
4  * $Id$
5  */
6 #ifndef INCLUDED_ipcheck_h
7 #define INCLUDED_ipcheck_h
8
9 #ifndef INCLUDED_sys_types_h
10 #include <sys/types.h>          /* time_t, size_t */
11 #define INCLUDED_sys_types_h
12 #endif
13 #ifndef INCLUDED_netinet_in_h
14 #include <netinet/in.h>         /* in_addr */
15 #define INCLUDED_netinet_in_h
16 #endif
17
18 struct Client;
19
20 /*
21  * Prototypes
22  */
23 extern int IPcheck_local_connect(struct in_addr ip, time_t* next_target_out);
24 extern void IPcheck_connect_fail(struct in_addr ip);
25 extern void IPcheck_connect_succeeded(struct Client *cptr);
26 extern int IPcheck_remote_connect(struct Client *cptr, int is_burst);
27 extern void IPcheck_disconnect(struct Client *cptr);
28 extern unsigned short IPcheck_nr(struct Client* cptr);
29 extern void IPcheck_expire();
30
31 #endif /* INCLUDED_ipcheck_h */