Add a parameter to IPcheck_connect_fail() to support IAuth IP spoofing.
[ircu2.10.12-pk.git] / include / IPcheck.h
index ee17ac39f6feec1c1ee20ed3f1fef69373ed9253..91693ac09a18b6c52cc9d2b6977cbfcfc6e80e34 100644 (file)
@@ -1,7 +1,6 @@
-/*
- * IPcheck.h
- *
- * $Id$
+/** @file IPcheck.h
+ * @brief Interface to count users connected from particular IP addresses.
+ * @version $Id$
  */
 #ifndef INCLUDED_ipcheck_h
 #define INCLUDED_ipcheck_h
 #include <sys/types.h>          /* time_t, size_t */
 #define INCLUDED_sys_types_h
 #endif
-#ifndef INCLUDED_netinet_in_h
-#include <netinet/in.h>         /* in_addr */
-#define INCLUDED_netinet_in_h
-#endif
 
 struct Client;
+struct irc_in_addr;
 
 /*
  * Prototypes
  */
-extern int IPcheck_local_connect(struct in_addr ip, time_t* next_target_out);
-extern void IPcheck_connect_fail(struct in_addr ip);
+extern void IPcheck_init(void);
+extern int IPcheck_local_connect(const struct irc_in_addr *ip, time_t *next_target_out);
+extern void IPcheck_connect_fail(const struct Client *cptr, int disconnect);
 extern void IPcheck_connect_succeeded(struct Client *cptr);
-extern int IPcheck_remote_connect(struct Client *cptr, const char *hostname,
-    int is_burst);
+extern int IPcheck_remote_connect(struct Client *cptr, int is_burst);
 extern void IPcheck_disconnect(struct Client *cptr);
-extern unsigned short IPcheck_nr(struct Client *cptr);
+extern unsigned short IPcheck_nr(struct Clientcptr);
 
 #endif /* INCLUDED_ipcheck_h */