ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/ircd.c
Revision: 3322
Committed: Tue Apr 15 16:11:11 2014 UTC (11 years, 4 months ago) by michael
Content type: text/x-csrc
File size: 17060 byte(s)
Log Message:
- Moved irc_res.c to res.c
- Moved irc_reslib.c to reslib.c

File Contents

# User Rev Content
1 adx 30 /*
2 michael 2916 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 adx 30 *
4 michael 2916 * Copyright (c) 1997-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 2916 /*! \file ircd.c
23     * \brief Starts up and runs the ircd.
24     * \version $Id$
25     */
26    
27 adx 30 #include "stdinc.h"
28     #include "s_user.h"
29 michael 1011 #include "list.h"
30 adx 30 #include "ircd.h"
31     #include "channel.h"
32     #include "client.h"
33     #include "event.h"
34     #include "fdlist.h"
35     #include "hash.h"
36     #include "irc_string.h"
37     #include "ircd_signal.h"
38 michael 3321 #include "gline.h"
39 adx 30 #include "motd.h"
40 michael 1632 #include "conf.h"
41 adx 30 #include "hostmask.h"
42     #include "parse.h"
43 michael 3322 #include "res.h"
44 adx 30 #include "restart.h"
45 michael 982 #include "rng_mt.h"
46 adx 30 #include "s_auth.h"
47     #include "s_bsd.h"
48 michael 1309 #include "log.h"
49 adx 30 #include "s_serv.h" /* try_connections */
50     #include "send.h"
51     #include "whowas.h"
52     #include "modules.h"
53     #include "memory.h"
54 michael 1654 #include "mempool.h"
55 adx 30 #include "ircd_getopt.h"
56     #include "supported.h"
57 michael 876 #include "watch.h"
58 michael 1622 #include "conf_db.h"
59 michael 1632 #include "conf_class.h"
60 adx 30
61 michael 1858
62     #ifdef HAVE_LIBGEOIP
63     GeoIP *geoip_ctx;
64     #endif
65 michael 2872
66 adx 30 /* /quote set variables */
67     struct SetOptions GlobalSetOptions;
68 michael 2872 struct Counter Count;
69     struct ServerState_t server_state;
70 michael 896 struct ServerStatistics ServerStats;
71 adx 30 struct timeval SystemTime;
72     struct Client me; /* That's me */
73     struct LocalUser meLocalUser; /* That's also part of me */
74    
75     const char *logFileName = LPATH;
76     const char *pidFileName = PPATH;
77    
78     char **myargv;
79    
80     int dorehash = 0;
81     int doremotd = 0;
82    
83     /* Set to zero because it should be initialized later using
84     * initialize_server_capabs
85     */
86     int default_server_capabs = 0;
87 michael 1013 unsigned int splitmode;
88     unsigned int splitchecking;
89     unsigned int split_users;
90 adx 30 unsigned int split_servers;
91    
92     /* Do klines the same way hybrid-6 did them, i.e. at the
93     * top of the next io_loop instead of in the same loop as
94     * the klines are being applied.
95     *
96     * This should fix strange CPU starvation as very indirectly reported.
97     * (Why do you people not email bug reports? WHY? WHY?)
98     *
99     * - Dianora
100     */
101    
102     int rehashed_klines = 0;
103    
104    
105     /*
106     * print_startup - print startup information
107     */
108     static void
109     print_startup(int pid)
110     {
111 michael 2646 printf("ircd: version %s(%s)\n", ircd_version, serno);
112 adx 30 printf("ircd: pid %d\n", pid);
113     printf("ircd: running in %s mode from %s\n", !server_state.foreground ? "background"
114     : "foreground", ConfigFileEntry.dpath);
115     }
116    
117     static void
118     make_daemon(void)
119     {
120     int pid;
121    
122     if ((pid = fork()) < 0)
123     {
124     perror("fork");
125     exit(EXIT_FAILURE);
126     }
127     else if (pid > 0)
128     {
129     print_startup(pid);
130     exit(EXIT_SUCCESS);
131     }
132    
133     setsid();
134     }
135    
136     static int printVersion = 0;
137    
138 michael 3215 static struct lgetopt myopts[] =
139     {
140 michael 2916 {"configfile", &ConfigFileEntry.configfile,
141 adx 30 STRING, "File to use for ircd.conf"},
142 michael 1718 {"glinefile", &ConfigFileEntry.glinefile,
143     STRING, "File to use for gline database"},
144 michael 2916 {"klinefile", &ConfigFileEntry.klinefile,
145 michael 1718 STRING, "File to use for kline database"},
146     {"dlinefile", &ConfigFileEntry.dlinefile,
147     STRING, "File to use for dline database"},
148 michael 2916 {"xlinefile", &ConfigFileEntry.xlinefile,
149 michael 1718 STRING, "File to use for xline database"},
150     {"resvfile", &ConfigFileEntry.resvfile,
151     STRING, "File to use for resv database"},
152 michael 2916 {"logfile", &logFileName,
153 adx 30 STRING, "File to use for ircd.log"},
154     {"pidfile", &pidFileName,
155     STRING, "File to use for process ID"},
156 michael 2916 {"foreground", &server_state.foreground,
157 adx 30 YESNO, "Run in foreground (don't detach)"},
158 michael 2916 {"version", &printVersion,
159 adx 30 YESNO, "Print version and exit"},
160     {"help", NULL, USAGE, "Print this text"},
161     {NULL, NULL, STRING, NULL},
162     };
163    
164     void
165     set_time(void)
166     {
167 michael 2978 struct timeval newtime = { .tv_sec = 0, .tv_usec = 0 };
168 adx 30
169     if (gettimeofday(&newtime, NULL) == -1)
170     {
171 michael 1247 ilog(LOG_TYPE_IRCD, "Clock Failure (%s), TS can be corrupted",
172 adx 30 strerror(errno));
173 michael 1618 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
174 adx 30 "Clock Failure (%s), TS can be corrupted",
175     strerror(errno));
176 michael 3167 server_die("Clock Failure", 1);
177 adx 30 }
178    
179     if (newtime.tv_sec < CurrentTime)
180     {
181 michael 2980 ilog(LOG_TYPE_IRCD, "System clock is running backwards - (%lu < %lu)",
182     (unsigned long)newtime.tv_sec, (unsigned long)CurrentTime);
183     sendto_realops_flags(UMODE_DEBUG, L_ALL, SEND_NOTICE,
184     "System clock is running backwards - (%lu < %lu)",
185     (unsigned long)newtime.tv_sec,
186     (unsigned long)CurrentTime);
187 adx 30 set_back_events(CurrentTime - newtime.tv_sec);
188     }
189    
190     SystemTime.tv_sec = newtime.tv_sec;
191     SystemTime.tv_usec = newtime.tv_usec;
192     }
193    
194     static void
195     io_loop(void)
196     {
197 michael 3215 while (1)
198 adx 30 {
199     /*
200     * Maybe we want a flags word?
201 michael 2916 * ie. if (REHASHED_KLINES(global_flags))
202 adx 30 * SET_REHASHED_KLINES(global_flags)
203     * CLEAR_REHASHED_KLINES(global_flags)
204     *
205     * - Dianora
206     */
207     if (rehashed_klines)
208     {
209     check_conf_klines();
210     rehashed_klines = 0;
211     }
212    
213     if (listing_client_list.head)
214     {
215     dlink_node *ptr = NULL, *ptr_next = NULL;
216     DLINK_FOREACH_SAFE(ptr, ptr_next, listing_client_list.head)
217 michael 3288 safe_list_channels(ptr->data, 0);
218 adx 30 }
219    
220     /* Run pending events, then get the number of seconds to the next
221     * event
222     */
223     while (eventNextTime() <= CurrentTime)
224     eventRun();
225    
226     comm_select();
227     exit_aborted_clients();
228     free_exited_clients();
229    
230     /* Check to see whether we have to rehash the configuration .. */
231     if (dorehash)
232     {
233     rehash(1);
234     dorehash = 0;
235     }
236 michael 3215
237 adx 30 if (doremotd)
238     {
239 michael 2150 motd_recache();
240 michael 1618 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
241 michael 3065 "Got signal SIGUSR1, reloading motd file(s)");
242 adx 30 doremotd = 0;
243     }
244     }
245     }
246    
247     /* initalialize_global_set_options()
248     *
249     * inputs - none
250     * output - none
251 michael 2916 * side effects - This sets all global set options needed
252 adx 30 */
253     static void
254     initialize_global_set_options(void)
255     {
256     memset(&GlobalSetOptions, 0, sizeof(GlobalSetOptions));
257    
258     GlobalSetOptions.autoconn = 1;
259     GlobalSetOptions.spam_time = MIN_JOIN_LEAVE_TIME;
260     GlobalSetOptions.spam_num = MAX_JOIN_LEAVE_COUNT;
261    
262     if (ConfigFileEntry.default_floodcount)
263     GlobalSetOptions.floodcount = ConfigFileEntry.default_floodcount;
264     else
265     GlobalSetOptions.floodcount = 10;
266    
267     /* XXX I have no idea what to try here - Dianora */
268     GlobalSetOptions.joinfloodcount = 16;
269     GlobalSetOptions.joinfloodtime = 8;
270    
271     split_servers = ConfigChannel.default_split_server_count;
272     split_users = ConfigChannel.default_split_user_count;
273    
274     if (split_users && split_servers && (ConfigChannel.no_create_on_split ||
275     ConfigChannel.no_join_on_split))
276     {
277     splitmode = 1;
278     splitchecking = 1;
279     }
280    
281     GlobalSetOptions.ident_timeout = IDENT_TIMEOUT;
282     /* End of global set options */
283     }
284    
285     /* initialize_server_capabs()
286     *
287     * inputs - none
288     * output - none
289     */
290     static void
291     initialize_server_capabs(void)
292     {
293     add_capability("QS", CAP_QS, 1);
294     add_capability("EOB", CAP_EOB, 1);
295 michael 1117 add_capability("TS6", CAP_TS6, 0);
296 adx 30 add_capability("CLUSTER", CAP_CLUSTER, 1);
297 michael 1196 add_capability("SVS", CAP_SVS, 1);
298 michael 3267 add_capability("CHW", CAP_CHW, 1);
299 adx 30 #ifdef HALFOPS
300     add_capability("HOPS", CAP_HOPS, 1);
301     #endif
302     }
303    
304     /* write_pidfile()
305     *
306     * inputs - filename+path of pid file
307     * output - NONE
308     * side effects - write the pid of the ircd to filename
309     */
310     static void
311     write_pidfile(const char *filename)
312     {
313 michael 1325 FILE *fb;
314 adx 30
315 michael 1325 if ((fb = fopen(filename, "w")))
316 adx 30 {
317 michael 2691 char buff[IRCD_BUFSIZE];
318 adx 30 unsigned int pid = (unsigned int)getpid();
319    
320 michael 1325 snprintf(buff, sizeof(buff), "%u\n", pid);
321    
322     if ((fputs(buff, fb) == -1))
323 michael 1247 ilog(LOG_TYPE_IRCD, "Error writing %u to pid file %s (%s)",
324 adx 30 pid, filename, strerror(errno));
325    
326 michael 1325 fclose(fb);
327 adx 30 }
328     else
329     {
330 michael 1247 ilog(LOG_TYPE_IRCD, "Error opening pid file %s", filename);
331 adx 30 }
332     }
333    
334     /* check_pidfile()
335     *
336     * inputs - filename+path of pid file
337     * output - none
338     * side effects - reads pid from pidfile and checks if ircd is in process
339     * list. if it is, gracefully exits
340     * -kre
341     */
342     static void
343     check_pidfile(const char *filename)
344     {
345 michael 1325 FILE *fb;
346 michael 2691 char buff[IRCD_BUFSIZE];
347 adx 30 pid_t pidfromfile;
348    
349     /* Don't do logging here, since we don't have log() initialised */
350 michael 1325 if ((fb = fopen(filename, "r")))
351 adx 30 {
352 michael 1325 if (fgets(buff, 20, fb) == NULL)
353 adx 30 {
354     /* log(L_ERROR, "Error reading from pid file %s (%s)", filename,
355     * strerror(errno));
356     */
357     }
358     else
359     {
360     pidfromfile = atoi(buff);
361    
362     if (!kill(pidfromfile, 0))
363     {
364     /* log(L_ERROR, "Server is already running"); */
365     printf("ircd: daemon is already running\n");
366     exit(-1);
367     }
368     }
369    
370 michael 1325 fclose(fb);
371 adx 30 }
372     else if (errno != ENOENT)
373     {
374     /* log(L_ERROR, "Error opening pid file %s", filename); */
375     }
376     }
377    
378     /* setup_corefile()
379     *
380     * inputs - nothing
381     * output - nothing
382     * side effects - setups corefile to system limits.
383     * -kre
384     */
385     static void
386     setup_corefile(void)
387     {
388     #ifdef HAVE_SYS_RESOURCE_H
389     struct rlimit rlim; /* resource limits */
390    
391     /* Set corefilesize to maximum */
392     if (!getrlimit(RLIMIT_CORE, &rlim))
393     {
394     rlim.rlim_cur = rlim.rlim_max;
395     setrlimit(RLIMIT_CORE, &rlim);
396     }
397     #endif
398     }
399    
400 michael 2228 #ifdef HAVE_LIBCRYPTO
401     static int
402     always_accept_verify_cb(int preverify_ok, X509_STORE_CTX *x509_ctx)
403     {
404     return 1;
405     }
406     #endif
407    
408 adx 30 /* init_ssl()
409     *
410     * inputs - nothing
411     * output - nothing
412     * side effects - setups SSL context.
413     */
414     static void
415 michael 1798 ssl_init(void)
416 adx 30 {
417     #ifdef HAVE_LIBCRYPTO
418 michael 2914 const unsigned char session_id[] = "ircd-hybrid";
419    
420 adx 30 SSL_load_error_strings();
421     SSLeay_add_ssl_algorithms();
422    
423 michael 967 if ((ServerInfo.server_ctx = SSL_CTX_new(SSLv23_server_method())) == NULL)
424 adx 30 {
425     const char *s;
426    
427 michael 1303 fprintf(stderr, "ERROR: Could not initialize the SSL Server context -- %s\n",
428 adx 30 s = ERR_lib_error_string(ERR_get_error()));
429 michael 1303 ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Server context -- %s\n", s);
430 adx 30 }
431    
432 michael 1316 SSL_CTX_set_options(ServerInfo.server_ctx, SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TLSv1);
433 michael 967 SSL_CTX_set_options(ServerInfo.server_ctx, SSL_OP_TLS_ROLLBACK_BUG|SSL_OP_ALL);
434 michael 2228 SSL_CTX_set_verify(ServerInfo.server_ctx, SSL_VERIFY_PEER|SSL_VERIFY_CLIENT_ONCE,
435     always_accept_verify_cb);
436 michael 2914 SSL_CTX_set_session_id_context(ServerInfo.server_ctx, session_id, sizeof(session_id) - 1);
437 adx 30
438 michael 1303 if ((ServerInfo.client_ctx = SSL_CTX_new(SSLv23_client_method())) == NULL)
439     {
440     const char *s;
441    
442     fprintf(stderr, "ERROR: Could not initialize the SSL Client context -- %s\n",
443     s = ERR_lib_error_string(ERR_get_error()));
444     ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Client context -- %s\n", s);
445     }
446    
447 michael 1316 SSL_CTX_set_options(ServerInfo.client_ctx, SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TLSv1);
448 michael 1303 SSL_CTX_set_options(ServerInfo.client_ctx, SSL_OP_TLS_ROLLBACK_BUG|SSL_OP_ALL);
449 michael 2253 SSL_CTX_set_verify(ServerInfo.client_ctx, SSL_VERIFY_PEER|SSL_VERIFY_CLIENT_ONCE,
450 michael 2228 always_accept_verify_cb);
451 adx 30 #endif /* HAVE_LIBCRYPTO */
452     }
453    
454     int
455     main(int argc, char *argv[])
456     {
457 michael 2253 /* Check to see if the user is running us as root, which is a nono */
458 adx 30 if (geteuid() == 0)
459     {
460     fprintf(stderr, "Don't run ircd as root!!!\n");
461 michael 982 return -1;
462 adx 30 }
463    
464     /* Setup corefile size immediately after boot -kre */
465     setup_corefile();
466    
467     /* save server boot time right away, so getrusage works correctly */
468     set_time();
469    
470 michael 982 /* It ain't random, but it ought to be a little harder to guess */
471     init_genrand(SystemTime.tv_sec ^ (SystemTime.tv_usec | (getpid() << 20)));
472    
473 adx 30 me.localClient = &meLocalUser;
474 michael 2253 dlinkAdd(&me, &me.node, &global_client_list); /* Pointer to beginning
475 adx 30 of Client list */
476     ConfigFileEntry.dpath = DPATH;
477 michael 3239 ConfigFileEntry.spath = SPATH;
478     ConfigFileEntry.mpath = MPATH;
479 michael 1702 ConfigFileEntry.configfile = CPATH; /* Server configuration file */
480     ConfigFileEntry.klinefile = KPATH; /* Server kline file */
481 michael 1718 ConfigFileEntry.glinefile = GPATH; /* Server gline file */
482 michael 1702 ConfigFileEntry.xlinefile = XPATH; /* Server xline file */
483     ConfigFileEntry.dlinefile = DLPATH; /* dline file */
484     ConfigFileEntry.resvfile = RESVPATH; /* resv file */
485    
486 adx 30 myargv = argv;
487     umask(077); /* better safe than sorry --SRB */
488    
489     parseargs(&argc, &argv, myopts);
490    
491     if (printVersion)
492     {
493 michael 2646 printf("ircd: version %s(%s)\n", ircd_version, serno);
494 adx 30 exit(EXIT_SUCCESS);
495     }
496    
497     if (chdir(ConfigFileEntry.dpath))
498     {
499     perror("chdir");
500     exit(EXIT_FAILURE);
501     }
502    
503 michael 1798 ssl_init();
504 adx 30
505     if (!server_state.foreground)
506     {
507     make_daemon();
508     close_standard_fds(); /* this needs to be before init_netio()! */
509     }
510     else
511     print_startup(getpid());
512    
513     setup_signals();
514    
515     /* Init the event subsystem */
516     eventInit();
517 michael 2253
518 adx 30 /* We need this to initialise the fd array before anything else */
519     fdlist_init();
520 michael 1831 log_set_file(LOG_TYPE_IRCD, 0, logFileName);
521 adx 30 check_can_use_v6();
522 michael 2632 init_netio(); /* This needs to be setup early ! -- adrian */
523 michael 2253
524 adx 30 /* Check if there is pidfile and daemon already running */
525     check_pidfile(pidFileName);
526    
527 michael 1654 mp_pool_init();
528 adx 30 init_dlink_nodes();
529 michael 2159 init_isupport();
530 adx 30 dbuf_init();
531 michael 1798 hash_init();
532 adx 30 init_ip_hash_table(); /* client host ip hash table */
533     init_host_hash(); /* Host-hashtable. */
534 michael 1798 client_init();
535 michael 1632 class_init();
536 michael 1358 whowas_init();
537 michael 876 watch_init();
538 michael 1798 auth_init(); /* Initialise the auth code */
539 michael 998 init_resolver(); /* Needs to be setup before the io loop */
540 michael 1404 modules_init();
541 adx 30 read_conf_files(1); /* cold start init conf files */
542     init_uid();
543     initialize_server_capabs(); /* Set up default_server_capabs */
544     initialize_global_set_options();
545 michael 1798 channel_init();
546 michael 2216 read_links_file();
547 michael 2150 motd_init();
548 michael 1858 #ifdef HAVE_LIBGEOIP
549     geoip_ctx = GeoIP_new(GEOIP_MEMORY_CACHE);
550     #endif
551 adx 30
552 michael 1115 if (EmptyString(ServerInfo.sid))
553 adx 30 {
554 michael 1247 ilog(LOG_TYPE_IRCD, "ERROR: No server id specified in serverinfo block.");
555 adx 30 exit(EXIT_FAILURE);
556     }
557 michael 885
558 michael 1115 strlcpy(me.id, ServerInfo.sid, sizeof(me.id));
559    
560     if (EmptyString(ServerInfo.name))
561     {
562 michael 1247 ilog(LOG_TYPE_IRCD, "ERROR: No server name specified in serverinfo block.");
563 michael 1115 exit(EXIT_FAILURE);
564     }
565    
566 adx 30 strlcpy(me.name, ServerInfo.name, sizeof(me.name));
567    
568     /* serverinfo{} description must exist. If not, error out.*/
569 michael 1115 if (EmptyString(ServerInfo.description))
570 adx 30 {
571 michael 1247 ilog(LOG_TYPE_IRCD, "ERROR: No server description specified in serverinfo block.");
572 adx 30 exit(EXIT_FAILURE);
573     }
574 michael 885
575 adx 30 strlcpy(me.info, ServerInfo.description, sizeof(me.info));
576    
577 michael 1241 me.from = &me;
578     me.servptr = &me;
579     me.localClient->lasttime = CurrentTime;
580     me.localClient->since = CurrentTime;
581     me.localClient->firsttime = CurrentTime;
582 adx 30
583     SetMe(&me);
584     make_server(&me);
585    
586 michael 1115 hash_add_id(&me);
587 adx 30 hash_add_client(&me);
588 michael 2916
589 adx 30 /* add ourselves to global_serv_list */
590     dlinkAdd(&me, make_dlink_node(), &global_serv_list);
591    
592 michael 1622 load_kline_database();
593     load_dline_database();
594     load_gline_database();
595     load_xline_database();
596     load_resv_database();
597    
598 adx 30 if (chdir(MODPATH))
599     {
600 michael 1247 ilog(LOG_TYPE_IRCD, "Could not load core modules. Terminating!");
601 adx 30 exit(EXIT_FAILURE);
602     }
603    
604     load_all_modules(1);
605     load_conf_modules();
606     load_core_modules(1);
607 michael 1115
608 adx 30 /* Go back to DPATH after checking to see if we can chdir to MODPATH */
609 michael 1115 if (chdir(ConfigFileEntry.dpath))
610     {
611     perror("chdir");
612     exit(EXIT_FAILURE);
613     }
614 michael 1121
615 adx 30 /*
616     * assemble_umode_buffer() has to be called after
617     * reading conf/loading modules.
618     */
619     assemble_umode_buffer();
620    
621     write_pidfile(pidFileName);
622    
623 michael 1247 ilog(LOG_TYPE_IRCD, "Server Ready");
624 adx 30
625     eventAddIsh("cleanup_glines", cleanup_glines, NULL, CLEANUP_GLINES_TIME);
626     eventAddIsh("cleanup_tklines", cleanup_tklines, NULL, CLEANUP_TKLINES_TIME);
627    
628     /* We want try_connections to be called as soon as possible now! -- adrian */
629     /* No, 'cause after a restart it would cause all sorts of nick collides */
630     eventAddIsh("try_connections", try_connections, NULL, STARTUP_CONNECTIONS_TIME);
631    
632     /* Setup the timeout check. I'll shift it later :) -- adrian */
633     eventAddIsh("comm_checktimeouts", comm_checktimeouts, NULL, 1);
634    
635 michael 1625 eventAddIsh("save_all_databases", save_all_databases, NULL, DATABASE_UPDATE_TIMEOUT);
636    
637 adx 30 if (ConfigServerHide.links_delay > 0)
638     eventAddIsh("write_links_file", write_links_file, NULL, ConfigServerHide.links_delay);
639     else
640     ConfigServerHide.links_disabled = 1;
641    
642     if (splitmode)
643     eventAddIsh("check_splitmode", check_splitmode, NULL, 60);
644    
645     io_loop();
646 michael 885 return 0;
647 adx 30 }

Properties

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