ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/include/userhost.h
Revision: 2865
Committed: Sun Jan 19 14:35:22 2014 UTC (11 years, 7 months ago) by michael
Content type: text/x-chdr
File size: 1709 byte(s)
Log Message:
- Clean up all files in include/ (fixed indentation, removed whitespaces/tabs)
- Fixed copyright years

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 2003-2014 ircd-hybrid development team
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 * USA
20 */
21
22 /*! \file userhost.h
23 * \brief A header for global user limits.
24 * \version $Id$
25 */
26
27 #ifndef INCLUDED_userhost_h
28 #define INCLUDED_userhost_h
29
30 struct NameHost
31 {
32 dlink_node node; /* Point to other names on this hostname */
33 char name[USERLEN + 1];
34 unsigned int icount; /* Number of =local= identd on this name*/
35 unsigned int gcount; /* Global user count on this name */
36 unsigned int lcount; /* Local user count on this name */
37 };
38
39 struct UserHost
40 {
41 dlink_list list; /* List of names on this hostname */
42 struct UserHost *next;
43 char host[HOSTLEN + 1];
44 };
45
46 extern void count_user_host(const char *, const char *, unsigned int *, unsigned int *, unsigned int *);
47 extern void add_user_host(const char *, const char *, int);
48 extern void delete_user_host(const char *, const char *, int);
49 #endif /* INCLUDED_userhost_h */

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision