updates.
[silc.git] / lib / silccore / silcmode.h
1 /*
2
3   silcmode.h
4
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 2001 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20
21 #ifndef SILCMODE_H
22 #define SILCMODE_H
23
24 /* Channel modes */
25 #define SILC_CHANNEL_MODE_NONE        0x0000
26 #define SILC_CHANNEL_MODE_PRIVATE     0x0001 /* private channel */
27 #define SILC_CHANNEL_MODE_SECRET      0x0002 /* secret channel */
28 #define SILC_CHANNEL_MODE_PRIVKEY     0x0004 /* channel has private key */
29 #define SILC_CHANNEL_MODE_INVITE      0x0008 /* invite only channel */
30 #define SILC_CHANNEL_MODE_TOPIC       0x0010 /* topic setting by operator */
31 #define SILC_CHANNEL_MODE_ULIMIT      0x0020 /* user limit set */
32 #define SILC_CHANNEL_MODE_PASSPHRASE  0x0040 /* passphrase set */
33 #define SILC_CHANNEL_MODE_BAN         0x0080 /* ban list set */
34 #define SILC_CHANNEL_MODE_INVITE_LIST 0x0100 /* invite list set */
35 #define SILC_CHANNEL_MODE_CIPHER      0x0200 /* sets cipher of the channel */
36 #define SILC_CHANNEL_MODE_HMAC        0x0400 /* sets hmac of the channel */
37
38 /* User modes on channel */
39 #define SILC_CHANNEL_UMODE_NONE       0x0000 /* Normal user */
40 #define SILC_CHANNEL_UMODE_CHANFO     0x0001 /* channel founder */
41 #define SILC_CHANNEL_UMODE_CHANOP     0x0002 /* channel operator */
42
43 /* SILC modes */
44 #define SILC_UMODE_NONE               0x0000 /* Normal SILC user */
45 #define SILC_UMODE_SERVER_OPERATOR    0x0001 /* Server operator */
46 #define SILC_UMODE_ROUTER_OPERATOR    0x0002 /* Router (SILC) operator */
47
48 #endif