summaryrefslogtreecommitdiff
path: root/include/userhost.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/userhost.h')
-rw-r--r--include/userhost.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/include/userhost.h b/include/userhost.h
new file mode 100644
index 0000000..2608507
--- /dev/null
+++ b/include/userhost.h
@@ -0,0 +1,47 @@
+/*
+ * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
+ * userhost.h: A header for global user limits.
+ *
+ * Copyright (C) 2002 by the past and present ircd coders, and others.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+ * USA
+ *
+ * $Id$
+ */
+
+#ifndef INCLUDED_userhost_h
+#define INCLUDED_userhost_h
+
+struct NameHost
+{
+ dlink_node node; /* point to other names on this hostname */
+ char name[USERLEN + 1];
+ int icount; /* number of =local= identd on this name*/
+ int gcount; /* global user count on this name */
+ int lcount; /* local user count on this name */
+};
+
+struct UserHost
+{
+ dlink_list list; /* list of names on this hostname */
+ struct UserHost *next;
+ char host[HOSTLEN + 1];
+};
+
+extern void count_user_host(const char *, const char *, int *, int *, int *);
+extern void add_user_host(const char *, const char *, int);
+extern void delete_user_host(const char *, const char *, int global);
+#endif /* INCLUDED_userhost_h */