| 1 |
/* |
| 2 |
* ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd). |
| 3 |
* supported.h: Header for 005 numeric etc... |
| 4 |
* |
| 5 |
* Copyright (C) 2002 by the past and present ircd coders, and others. |
| 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 |
#ifndef INCLUDED_supported_h |
| 26 |
#define INCLUDED_supported_h |
| 27 |
|
| 28 |
#include "channel.h" |
| 29 |
#include "ircd_defs.h" |
| 30 |
#include "s_serv.h" |
| 31 |
|
| 32 |
#define CASEMAP "rfc1459" |
| 33 |
|
| 34 |
/* ConfigChannel.use_knock ? " KNOCK" */ |
| 35 |
|
| 36 |
/* |
| 37 |
* - from mirc's versions.txt |
| 38 |
* |
| 39 |
* mIRC now supports the numeric 005 tokens: CHANTYPES=# and |
| 40 |
* PREFIX=(ohv)@%+ and can handle a dynamic set of channel and |
| 41 |
* nick prefixes. |
| 42 |
* |
| 43 |
* mIRC assumes that @ is supported on all networks, any mode |
| 44 |
* left of @ is assumed to have at least equal power to @, and |
| 45 |
* any mode right of @ has less power. |
| 46 |
* |
| 47 |
* mIRC has internal support for @%+ modes. |
| 48 |
* |
| 49 |
* $nick() can now handle all mode letters listed in PREFIX. |
| 50 |
* |
| 51 |
* Also added support for CHANMODES=A,B,C,D token (not currently |
| 52 |
* supported by any servers), which lists all modes supported |
| 53 |
* by a channel, where: |
| 54 |
* |
| 55 |
* A = modes that take a parameter, and add or remove nicks |
| 56 |
* or addresses to a list, such as +bIe for the ban, |
| 57 |
* invite, and exception lists. |
| 58 |
* |
| 59 |
* B = modes that change channel settings, but which take |
| 60 |
* a parameter when they are set and unset, such as |
| 61 |
* +k key, and -k key. |
| 62 |
* |
| 63 |
* C = modes that change channel settings, but which take |
| 64 |
* a parameter only when they are set, such as +l N, |
| 65 |
* and -l. |
| 66 |
* |
| 67 |
* D = modes that change channel settings, such as +imnpst |
| 68 |
* and take no parameters. |
| 69 |
* |
| 70 |
* All unknown/unlisted modes are treated as type D. |
| 71 |
*/ |
| 72 |
|
| 73 |
#endif /* INCLUDED_supported_h */ |