]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/conf.h
make Listen parameter a comma-seperated list of addresses.
[ngircd-alex.git] / src / ngircd / conf.h
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
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 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  *
11  * $Id: conf.h,v 1.49 2008/03/18 20:12:47 fw Exp $
12  *
13  * Configuration management (header)
14  */
15
16
17 #ifndef __conf_h__
18 #define __conf_h__
19
20 #include <time.h>
21
22 #include "defines.h"
23 #include "array.h"
24 #include "portab.h"
25 #include "tool.h"
26 #include "ng_ipaddr.h"
27
28 typedef struct _Conf_Oper
29 {
30         char name[CLIENT_PASS_LEN];     /* Name (ID) of IRC operator */
31         char pwd[CLIENT_PASS_LEN];      /* Password */
32         char *mask;
33 } CONF_OPER;
34
35 typedef struct _Conf_Server
36 {
37         char host[HOST_LEN];            /* Hostname */
38         char name[CLIENT_ID_LEN];       /* IRC-Client-ID */
39         char pwd_in[CLIENT_PASS_LEN];   /* Password which must be received */
40         char pwd_out[CLIENT_PASS_LEN];  /* Password to send to peer */
41         UINT16 port;                    /* Server port */
42         int group;                      /* Group of server */
43         time_t lasttry;                 /* Last connect attempt */
44         RES_STAT res_stat;              /* Status of the resolver */
45         int flags;                      /* Flags */
46         CONN_ID conn_id;                /* ID of server connection or NONE */
47         ng_ipaddr_t bind_addr;          /* source address to use for outgoing connections */
48         ng_ipaddr_t dst_addr[2];        /* list of addresses to connect to */
49 } CONF_SERVER;
50
51 typedef struct _Conf_Channel
52 {
53         char name[CHANNEL_NAME_LEN];    /* Name of the channel */
54         char modes[CHANNEL_MODE_LEN];   /* Initial channel modes */
55         char key[CLIENT_PASS_LEN];      /* Channel key ("password", mode "k" ) */
56         unsigned long maxusers;         /* maximum usercount for this channel, mode "l" */
57         array topic;                    /* Initial topic */
58 } CONF_CHANNEL;
59
60
61 #define CONF_SFLAG_ONCE 1               /* Delete this entry after next disconnect */
62 #define CONF_SFLAG_DISABLED 2           /* This server configuration entry is disabled */
63
64
65 /* Name ("Nick") of the servers */
66 GLOBAL char Conf_ServerName[CLIENT_ID_LEN];
67
68 /* Server info text */
69 GLOBAL char Conf_ServerInfo[CLIENT_INFO_LEN];
70
71 /* Global server passwort */
72 GLOBAL char Conf_ServerPwd[CLIENT_PASS_LEN];
73
74 /* Administrative information */
75 GLOBAL char Conf_ServerAdmin1[CLIENT_INFO_LEN];
76 GLOBAL char Conf_ServerAdmin2[CLIENT_INFO_LEN];
77 GLOBAL char Conf_ServerAdminMail[CLIENT_INFO_LEN];
78
79 /* File with MOTD text */
80 GLOBAL char Conf_MotdFile[FNAME_LEN];
81
82 /* Phrase with MOTD text */
83 GLOBAL char Conf_MotdPhrase[LINE_LEN];
84
85 /* Ports the server should listen on */
86 GLOBAL array Conf_ListenPorts;
87
88 /* Address to which the socket should be bound or empty (=all) */
89 GLOBAL char *Conf_ListenAddress;
90
91 /* User and group ID the server should run with */
92 GLOBAL uid_t Conf_UID;
93 GLOBAL gid_t Conf_GID;
94
95 /* A directory to chroot() in */
96 GLOBAL char Conf_Chroot[FNAME_LEN];
97
98 /* File with PID of daemon */
99 GLOBAL char Conf_PidFile[FNAME_LEN];
100
101 /* Timeouts for PING and PONG */
102 GLOBAL int Conf_PingTimeout;
103 GLOBAL int Conf_PongTimeout;
104
105 /* Seconds between connect attempts to other servers */
106 GLOBAL int Conf_ConnectRetry;
107
108 /* Operators */
109 GLOBAL CONF_OPER Conf_Oper[MAX_OPERATORS];
110 GLOBAL unsigned int Conf_Oper_Count;
111
112 /* Servers */
113 GLOBAL CONF_SERVER Conf_Server[MAX_SERVERS];
114
115 /* Pre-defined channels */
116 GLOBAL CONF_CHANNEL Conf_Channel[MAX_DEFCHANNELS];
117 GLOBAL unsigned int Conf_Channel_Count;
118 /* Pre-defined channels only */
119 GLOBAL bool Conf_PredefChannelsOnly;
120
121 /* Are IRC operators allowed to always use MODE? */
122 GLOBAL bool Conf_OperCanMode;
123
124 /* Disable all DNS functions? */
125 GLOBAL bool Conf_NoDNS;
126
127 /*
128  * try to connect to remote systems using the ipv6 protocol,
129  * if they have an ipv6 address? (default yes)
130  */
131 GLOBAL bool Conf_ConnectIPv6;
132
133 /* same as above, but for ipv4 hosts, default: yes  */
134 GLOBAL bool Conf_ConnectIPv4;
135
136 /* If an IRC op gives chanop privileges without being a chanop,
137  * ircd2 will ignore the command. This enables a workaround:
138  * It masks the command as coming from the server */
139 GLOBAL bool Conf_OperServerMode;
140
141 /* Maximum number of connections to this server */
142 GLOBAL long Conf_MaxConnections;
143
144 /* Maximum number of channels a user can join */
145 GLOBAL int Conf_MaxJoins;
146
147 /* Maximum number of connections per IP address */
148 GLOBAL int Conf_MaxConnectionsIP;
149
150 /* Maximum length of a nick name */
151 GLOBAL unsigned int Conf_MaxNickLength;
152
153 GLOBAL void Conf_Init PARAMS((void));
154 GLOBAL bool Conf_Rehash PARAMS((void));
155 GLOBAL int Conf_Test PARAMS((void));
156
157 GLOBAL void Conf_UnsetServer PARAMS(( CONN_ID Idx ));
158 GLOBAL void Conf_SetServer PARAMS(( int ConfServer, CONN_ID Idx ));
159 GLOBAL int Conf_GetServer PARAMS(( CONN_ID Idx ));
160
161 GLOBAL bool Conf_EnableServer PARAMS(( char *Name, UINT16 Port ));
162 GLOBAL bool Conf_EnablePassiveServer PARAMS((const char *Name));
163 GLOBAL bool Conf_DisableServer PARAMS(( char *Name ));
164 GLOBAL bool Conf_AddServer PARAMS(( char *Name, UINT16 Port, char *Host, char *MyPwd, char *PeerPwd ));
165
166
167 #endif
168
169
170 /* -eof- */