ircu2.10.12 pk910 fork
[ircu2.10.12-pk.git] / include / sys.h
1 /*
2  * IRC - Internet Relay Chat, include/sys.h
3  * Copyright (C) 1990 University of Oulu, Computing Center
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 1, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  * $Id: sys.h 1442 2005-07-12 02:13:10Z entrope $
20  */
21 #ifndef INCLUDED_sys_h
22 #define INCLUDED_sys_h
23
24 /*
25  * safety margin so we can always have one spare fd, for motd/authd or
26  * whatever else.  -24 allows "safety" margin of 10 listen ports, 8 servers
27  * and space reserved for logfiles, DNS sockets and identd sockets etc.
28  */
29 #define MAXCLIENTS      (MAXCONNECTIONS-24)
30
31 #define IRCD_MAX(a, b)  ((a) > (b) ? (a) : (b))
32 #define IRCD_MIN(a, b)  ((a) < (b) ? (a) : (b))
33
34 #endif /* INCLUDED_sys_h */