1 |
/* |
2 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
* |
4 |
* Copyright (c) 2003-2016 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 |
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 userhost_init(void); |
47 |
extern void userhost_count(const char *, const char *, unsigned int *, unsigned int *, unsigned int *); |
48 |
extern void userhost_add(const char *, const char *, int); |
49 |
extern void userhost_del(const char *, const char *, int); |
50 |
#endif /* INCLUDED_userhost_h */ |