ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/include/channel.h
Revision: 6323
Committed: Sat Aug 8 17:47:58 2015 UTC (10 years ago) by michael
Content type: text/x-chdr
File size: 5201 byte(s)
Log Message:
- Make use of enum in more places

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 1997-2015 ircd-hybrid development team
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19 * USA
20 */
21
22 /*! \file channel.h
23 * \brief Responsible for managing channels, members, bans and topics
24 * \version $Id$
25 */
26
27 #ifndef INCLUDED_channel_h
28 #define INCLUDED_channel_h
29
30 #include "ircd_defs.h" /* KEYLEN, CHANNELLEN */
31
32 /* channel visible */
33 #define ShowChannel(v,c) (PubChannel(c) || IsMember((v),(c)))
34
35 #define IsMember(who, chan) ((find_channel_link(who, chan)) ? 1 : 0)
36 #define AddMemberFlag(x, y) ((x)->flags |= (y))
37 #define DelMemberFlag(x, y) ((x)->flags &= ~(y))
38
39 enum
40 {
41 FLOOD_NOTICED = 0x00000001U,
42 JOIN_FLOOD_NOTICED = 0x00000002U
43 };
44
45 #define SetFloodNoticed(x) ((x)->flags |= FLOOD_NOTICED)
46 #define IsSetFloodNoticed(x) ((x)->flags & FLOOD_NOTICED)
47 #define ClearFloodNoticed(x) ((x)->flags &= ~FLOOD_NOTICED)
48
49 #define SetJoinFloodNoticed(x) ((x)->flags |= JOIN_FLOOD_NOTICED)
50 #define IsSetJoinFloodNoticed(x) ((x)->flags & JOIN_FLOOD_NOTICED)
51 #define ClearJoinFloodNoticed(x) ((x)->flags &= ~JOIN_FLOOD_NOTICED)
52
53 struct Client;
54
55 /*! \brief Mode structure for channels */
56 struct Mode
57 {
58 unsigned int mode; /**< simple modes */
59 unsigned int limit; /**< +l userlimit */
60 char key[KEYLEN + 1]; /**< +k key */
61 };
62
63 /*! \brief Channel structure */
64 struct Channel
65 {
66 dlink_node node;
67
68 struct Channel *hnextch;
69 struct Mode mode;
70
71 char topic[TOPICLEN + 1];
72 char topic_info[USERHOST_REPLYLEN];
73
74 time_t creationtime;
75 time_t topic_time;
76 time_t last_knock; /**< Don't allow knock to flood */
77 time_t last_join_time;
78 time_t first_received_message_time; /*!< channel flood control */
79 unsigned int flags;
80 int received_number_of_privmsgs;
81
82 dlink_list locmembers; /*!< local members are here too */
83 dlink_list members;
84 dlink_list invites;
85 dlink_list banlist;
86 dlink_list exceptlist;
87 dlink_list invexlist;
88
89 float number_joined;
90
91 char name[CHANNELLEN + 1];
92 };
93
94 /*! \brief Membership structure */
95 struct Membership
96 {
97 dlink_node locchannode; /**< link to chptr->locmembers */
98 dlink_node channode; /**< link to chptr->members */
99 dlink_node usernode; /**< link to source_p->channel */
100 struct Channel *chptr; /**< Channel pointer */
101 struct Client *client_p; /**< Client pointer */
102 unsigned int flags; /**< user/channel flags, e.g. CHFL_CHANOP */
103 };
104
105 /*! \brief Ban structure. Used for b/e/I n!u\@h masks */
106 struct Ban
107 {
108 dlink_node node;
109 char name[NICKLEN + 1];
110 char user[USERLEN + 1];
111 char host[HOSTLEN + 1];
112 char who[NICKLEN + USERLEN + HOSTLEN + 3];
113 size_t len;
114 time_t when;
115 struct irc_ssaddr addr;
116 int bits;
117 int type;
118 };
119
120 extern dlink_list channel_list;
121 extern struct event splitmode_event;
122
123 extern int check_channel_name(const char *, const int);
124 extern int can_send(struct Channel *, struct Client *, struct Membership *, const char *);
125 extern int is_banned(const struct Channel *, const struct Client *);
126 extern int can_join(struct Client *, const struct Channel *, const char *);
127 extern int has_member_flags(const struct Membership *, const unsigned int);
128
129 extern void channel_do_join(struct Client *, char *, char *);
130 extern void channel_do_join_0(struct Client *);
131 extern void channel_do_part(struct Client *, char *, const char *);
132 extern void remove_ban(struct Ban *, dlink_list *);
133 extern void channel_init(void);
134 extern void add_user_to_channel(struct Channel *, struct Client *, unsigned int, int);
135 extern void remove_user_from_channel(struct Membership *);
136 extern void channel_member_names(struct Client *, struct Channel *, int);
137 extern void add_invite(struct Channel *, struct Client *);
138 extern void del_invite(struct Channel *, struct Client *);
139 extern void clear_invites_channel(struct Channel *);
140 extern void clear_invites_client(struct Client *);
141 extern void send_channel_modes(struct Client *, struct Channel *);
142 extern void channel_modes(struct Channel *, struct Client *, char *, char *);
143 extern void check_spambot_warning(struct Client *, const char *);
144 extern void check_splitmode(void *);
145 extern void free_channel_list(dlink_list *);
146 extern void destroy_channel(struct Channel *);
147 extern void channel_set_topic(struct Channel *, const char *, const char *, time_t, int);
148
149 extern const char *get_member_status(const struct Membership *, const int);
150
151 extern struct Channel *make_channel(const char *);
152 extern struct Membership *find_channel_link(struct Client *, struct Channel *);
153 #endif

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision