Started implementing protocol version 1.1 and narrowing down
[silc.git] / lib / silccore / silcmode.h
1 /*
2  
3   silcmode.h
4  
5   Author: Pekka Riikonen <priikone@silcnet.org>
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 /****h* silccore/SILC Modes
22  *
23  * DESCRIPTION
24  *
25  * This header includes all mode definitions for the SILC. It includes
26  * channel modes, channel user mode and user modes.
27  *
28  ***/
29
30 #ifndef SILCMODE_H
31 #define SILCMODE_H
32
33
34 /****d* silccore/Modes/ChannelModes
35  *
36  * DESCRIPTION
37  *
38  *    All channel modes.
39  *
40  * SOURCE
41  */
42 #define SILC_CHANNEL_MODE_NONE         0x0000
43 #define SILC_CHANNEL_MODE_PRIVATE      0x0001 /* private channel */
44 #define SILC_CHANNEL_MODE_SECRET       0x0002 /* secret channel */
45 #define SILC_CHANNEL_MODE_PRIVKEY      0x0004 /* channel has private key */
46 #define SILC_CHANNEL_MODE_INVITE       0x0008 /* invite only channel */
47 #define SILC_CHANNEL_MODE_TOPIC        0x0010 /* topic setting by operator */
48 #define SILC_CHANNEL_MODE_ULIMIT       0x0020 /* user limit set */
49 #define SILC_CHANNEL_MODE_PASSPHRASE   0x0040 /* passphrase set */
50 #define SILC_CHANNEL_MODE_CIPHER       0x0080 /* sets cipher of the channel */
51 #define SILC_CHANNEL_MODE_HMAC         0x0100 /* sets hmac of the channel */
52 #define SILC_CHANNEL_MODE_FOUNDER_AUTH 0x0200 /* sets founder auth data */
53 #define SILC_CHANNEL_MODE_SILENCE_USERS 0x0400 /* sets founder auth data */
54 #define SILC_CHANNEL_MODE_SILENCE_OPERS 0x0800 /* sets founder auth data */
55 /***/
56
57 /****d* silccore/Modes/ChannelUserModes
58  *
59  * DESCRIPTION
60  *
61  *    All user modes on channel
62  *
63  * SOURCE
64  */
65 #define SILC_CHANNEL_UMODE_NONE        0x0000 /* Normal user */
66 #define SILC_CHANNEL_UMODE_CHANFO      0x0001 /* channel founder */
67 #define SILC_CHANNEL_UMODE_CHANOP      0x0002 /* channel operator */
68 /***/
69
70 /****d* silccore/Modes/SilcUserMode
71  *
72  * DESCRIPTION
73  *
74  *    SILC User modes. These indicate the status of the client in the
75  *    SILC network.
76  *
77  * SOURCE
78  */
79 #define SILC_UMODE_NONE                0x0000 /* Normal SILC user */
80 #define SILC_UMODE_SERVER_OPERATOR     0x0001 /* Server operator */
81 #define SILC_UMODE_ROUTER_OPERATOR     0x0002 /* Router (SILC) operator */
82 #define SILC_UMODE_GONE                0x0004 /* Client is gone */
83 /***/
84
85 #endif