00001 /* 00002 ctrlproxy: A modular IRC proxy 00003 (c) 2007 Jelmer Vernooij <jelmer@nl.linux.org> 00004 00005 This program is free software; you can redistribute it and/or modify 00006 it under the terms of the GNU General Public License as published by 00007 the Free Software Foundation; either version 3 of the License, or 00008 (at your option) any later version. 00009 00010 This program is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program; if not, write to the Free Software 00017 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00018 */ 00019 00020 #ifndef _CTRLPROXY_LOCAL_H_ 00021 #define _CTRLPROXY_LOCAL_H_ 00022 00023 /* Name for the administration channel in the Admin network */ 00024 #define ADMIN_CHANNEL "#ctrlproxy" 00025 00026 /* Default prefix that is assumed if not sent by the network */ 00027 #define DEFAULT_PREFIX "(ov)@+" 00028 00029 /* Default channel name prefixes if not sent by the network */ 00030 #define DEFAULT_CHANTYPES "#&" 00031 00032 /* Default port that will be used if no port was specified */ 00033 #define DEFAULT_IRC_PORT "6667" 00034 00035 /* Standard auto-away time if auto-away is enabled but 00036 * no time was specified. In seconds. */ 00037 #define AUTO_AWAY_DEFAULT_TIME (10 * 60) 00038 00039 #endif /* _CTRLPROXY_LOCAL_H_ */