Merge branch 'u2_10_12_branch' of git://git.code.sf.net/p/undernet-ircu/ircu2
[ircu2.10.12-pk.git] / include / s_serv.h
diff --git a/include/s_serv.h b/include/s_serv.h
new file mode 100644 (file)
index 0000000..4d6706b
--- /dev/null
@@ -0,0 +1,27 @@
+/** @file s_serv.h
+ * @brief Miscellaneous server support functions.
+ * @version $Id$
+ */
+#ifndef INCLUDED_s_serv_h
+#define INCLUDED_s_serv_h
+#ifndef INCLUDED_sys_types_h
+#include <sys/types.h>
+#define INCLUDED_sys_types_h
+#endif
+
+struct ConfItem;
+struct Client;
+
+extern unsigned int max_connection_count;
+extern unsigned int max_client_count;
+
+/*
+ * Prototypes
+ */
+extern int exit_new_server(struct Client* cptr, struct Client* sptr,
+                           const char* host, time_t timestamp, const char* fmt, ...);
+extern int a_kills_b_too(struct Client *a, struct Client *b);
+extern int server_estab(struct Client *cptr, struct ConfItem *aconf);
+
+
+#endif /* INCLUDED_s_serv_h */