1 |
adx |
30 |
/* |
2 |
michael |
2865 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
adx |
30 |
* |
4 |
michael |
2865 |
* Copyright (c) 2003-2014 ircd-hybrid development team |
5 |
adx |
30 |
* |
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 |
michael |
2865 |
/*! \file userhost.h |
23 |
|
|
* \brief A header for global user limits. |
24 |
|
|
* \version $Id$ |
25 |
|
|
*/ |
26 |
|
|
|
27 |
adx |
30 |
#ifndef INCLUDED_userhost_h |
28 |
|
|
#define INCLUDED_userhost_h |
29 |
|
|
|
30 |
|
|
struct NameHost |
31 |
|
|
{ |
32 |
michael |
2865 |
dlink_node node; /* Point to other names on this hostname */ |
33 |
adx |
30 |
char name[USERLEN + 1]; |
34 |
michael |
2865 |
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 |
adx |
30 |
}; |
38 |
|
|
|
39 |
|
|
struct UserHost |
40 |
|
|
{ |
41 |
michael |
2865 |
dlink_list list; /* List of names on this hostname */ |
42 |
adx |
30 |
struct UserHost *next; |
43 |
|
|
char host[HOSTLEN + 1]; |
44 |
|
|
}; |
45 |
|
|
|
46 |
michael |
1644 |
extern void count_user_host(const char *, const char *, unsigned int *, unsigned int *, unsigned int *); |
47 |
adx |
30 |
extern void add_user_host(const char *, const char *, int); |
48 |
michael |
2865 |
extern void delete_user_host(const char *, const char *, int); |
49 |
adx |
30 |
#endif /* INCLUDED_userhost_h */ |