IPv6 support (hopefully with fewer future transition pains)
[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
14 struct Client;
15 struct irc_in_addr;
16
17 /*
18  * Prototypes
19  */
20 extern void IPcheck_init(void);
21 extern int IPcheck_local_connect(const struct irc_in_addr *ip, time_t *next_target_out);
22 extern void IPcheck_connect_fail(const struct irc_in_addr *ip);
23 extern void IPcheck_connect_succeeded(struct Client *cptr);
24 extern int IPcheck_remote_connect(struct Client *cptr, int is_burst);
25 extern void IPcheck_disconnect(struct Client *cptr);
26 extern unsigned short IPcheck_nr(struct Client* cptr);
27
28 #endif /* INCLUDED_ipcheck_h */