comparison ircd/config.php @ 0:dd81c38b513a

Initial commit
author Ivo Smits <Ivo@UCIS.nl>
date Mon, 28 Feb 2011 00:49:07 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:dd81c38b513a
1 <?php
2 $config = array(
3 'udpmsg' => array(
4 'host' => '127.0.0.1',
5 'port' => 15387,
6 'nickprefix' => 'E\\',
7 'nickseparator' => '',
8 'nicknetwork' => FALSE,
9 'netname' => 'IRCd',
10 ),
11 'channels' => array(
12 '#anonet' => array(
13 'udpmsg' => 'chat/anonet',
14 ),
15 ),
16 );
17
18 include './ircd.php';