ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/include/conf/serverinfo.h
Revision: 679
Committed: Thu Jun 15 08:06:49 2006 UTC (19 years, 2 months ago) by adx
Content type: text/x-chdr
File size: 1288 byte(s)
Log Message:

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3 * serverinfo.h: Defines serverinfo{} conf section.
4 *
5 * Copyright (C) 2005 by the Hybrid Development Team.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 * USA
21 *
22 * $Id$
23 */
24
25 struct ServerInfoConf
26 {
27 char *network_name, *network_desc;
28 char hub;
29 struct irc_ssaddr vhost;
30 #ifdef IPV6
31 struct irc_ssaddr vhost6;
32 #endif
33 int max_clients;
34 #ifdef HAVE_LIBCRYPTO
35 char *rsa_private_key_file;
36 RSA *rsa_private_key;
37 SSL_CTX *ctx;
38 #endif
39 };
40
41 EXTERN struct ServerInfoConf ServerInfoX;
42
43 #ifdef IN_CONF_C
44 void init_serverinfo(void);
45 #endif

Properties

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