fixed ssl.c bug when ssl backend returns IO_BLOCKED but IO engine doesn't get informe...
[ircu2.10.12-pk.git] / ircd / querycmds.c
1 /*
2  * IRC - Internet Relay Chat, ircd/querycmds.c (formerly ircd/s_serv.c)
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * See file AUTHORS in IRC package for additional names of
7  * the programmers.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 1, or (at your option)
12  * any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23 /** @file
24  * @brief Implementation of client counting functions.
25  * @version $Id: querycmds.c 1212 2004-10-03 17:02:23Z entrope $
26  */
27 #include "config.h"
28
29 #include "querycmds.h"
30
31 #include <string.h>
32
33 /** Counters of clients, servers etc. */
34 struct UserStatistics UserStats;
35
36 /** Initialize global #UserStats variable. */
37 void init_counters(void)
38 {
39   memset(&UserStats, 0, sizeof(UserStats));
40   UserStats.servers = 1;
41 }
42