8dad409ec09fbbfaa14e439b774b794641fafeeb
[NeonServV5.git] / src / ChanNode.h
1 /* ChanNode.h - NeonServ v5.1
2  * Copyright (C) 2011  Philipp Kreil (pk910)
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License 
15  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
16  */
17 #ifndef _ChanNode_h
18 #define _ChanNode_h
19 #include "main.h"
20
21 struct ChanUser;
22 struct trigger_cache;
23 struct ModeNode;
24 struct NeonSpamSettings;
25
26 #define CHANFLAG_RECEIVED_USERLIST  0x01
27 #define CHANFLAG_REQUESTED_CHANINFO 0x02
28 #define CHANFLAG_CHAN_REGISTERED    0x04
29 #define CHANFLAG_HAVE_INVISIBLES    0x08
30
31 struct ChanNode {
32     char name[CHANNELLEN+1];
33     char topic[TOPICLEN+1];
34     struct ChanUser *user;
35     unsigned int usercount;
36     unsigned char flags;
37     struct ModeNode *modes;
38     struct BanNode *bans;
39     
40     struct UserNode *chanbot;
41     struct trigger_cache *trigger;
42     int channel_id;
43     
44     struct NeonSpamSettings *spam_settings;
45         
46     struct ChanNode *next;
47 };
48
49 void init_ChanNode();
50 void free_ChanNode();
51 int is_valid_chan(const char *name);
52 struct ChanNode* getAllChans(struct ChanNode *last);
53 struct ChanNode* getChanByName(const char *name);
54 struct ChanNode* addChannel(const char *chan);
55 int getChannelCount();
56 int getChanUserCount();
57 int getChanBanCount();
58 void delChannel(struct ChanNode* chan, int freeChan);
59 void freeChanNode(struct ChanNode* chan);
60 void checkChannelVisibility(struct ChanNode* chan);
61
62 #endif