]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/module-doc/classchanrec.html
New documentation!
[user/henk/code/inspircd.git] / docs / module-doc / classchanrec.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2 <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
3 <title>InspIRCd: chanrec class Reference</title>
4 <link href="inspircd.css" rel="stylesheet" type="text/css">
5 </head><body>
6 <!-- Generated by Doxygen 1.3.3 -->
7 <div class="qindex"><a class="qindex" href="main.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Compound&nbsp;List</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Compound&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
8 <h1>chanrec Class Reference</h1>Holds all relevent information for a channel.  
9 <a href="#_details">More...</a>
10 <p>
11 <code>#include &lt;<a class="el" href="channels_8h-source.html">channels.h</a>&gt;</code>
12 <p>
13 Inherits <a class="el" href="classExtensible.html">Extensible</a>.
14 <p>
15 <a href="classchanrec-members.html">List of all members.</a><table border=0 cellpadding=0 cellspacing=0>
16 <tr><td></td></tr>
17 <tr><td colspan=2><br><h2>Public Member Functions</h2></td></tr>
18 <tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#a0">SetCustomMode</a> (char mode, bool mode_on)</td></tr>
19
20 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Sets or unsets a custom mode in the channels info. </em> <a href="#a0"></a><em><br><br></td></tr>
21 <tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#a1">SetCustomModeParam</a> (char mode, char *parameter, bool mode_on)</td></tr>
22
23 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Sets or unsets the parameters for a custom mode in a channels info. </em> <a href="#a1"></a><em><br><br></td></tr>
24 <tr><td class="memItemLeft" nowrap align=right valign=top>bool&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#a2">IsCustomModeSet</a> (char mode)</td></tr>
25
26 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Returns true if a custom mode is set on a channel. </em> <a href="#a2"></a><em><br><br></td></tr>
27 <tr><td class="memItemLeft" nowrap align=right valign=top>std::string&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#a3">GetModeParameter</a> (char mode)</td></tr>
28
29 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Returns the parameter for a custom mode on a channel. </em> <a href="#a3"></a><em><br><br></td></tr>
30 <tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#a4">IncUserCounter</a> ()</td></tr>
31
32 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Increment the channel "user counter" The channel user counter is a reference counter which holds the number of users on the channel. </em> <a href="#a4"></a><em><br><br></td></tr>
33 <tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#a5">DecUserCounter</a> ()</td></tr>
34
35 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Decrement the channel "user counter" The channel user counter is a reference counter which holds the number of users on the channel. </em> <a href="#a5"></a><em><br><br></td></tr>
36 <tr><td class="memItemLeft" nowrap align=right valign=top>long&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#a6">GetUserCounter</a> ()</td></tr>
37
38 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Obtain the channel "user counter" This returns the channel reference counter, which is initialized to 0 when the channel is created and incremented/decremented upon joins, parts quits and kicks. </em> <a href="#a6"></a><em><br><br></td></tr>
39 <tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#a7">AddUser</a> (char *castuser)</td></tr>
40
41 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Add a user pointer to the internal reference list The data inserted into the reference list is a table as it is an arbitary pointer compared to other users by its memory address, as this is a very fast 32 or 64 bit integer comparison. </em> <a href="#a7"></a><em><br><br></td></tr>
42 <tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#a8">DelUser</a> (char *castuser)</td></tr>
43
44 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Delete a user pointer to the internal reference list The data removed from the reference list is a table as it is an arbitary pointer compared to other users by its memory address, as this is a very fast 32 or 64 bit integer comparison. </em> <a href="#a8"></a><em><br><br></td></tr>
45 <tr><td class="memItemLeft" nowrap align=right valign=top>std::vector&lt; char * &gt; *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#a9">GetUsers</a> ()</td></tr>
46
47 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Obrain the internal reference list The internal reference list contains a list of userrec* cast to char*. </em> <a href="#a9"></a><em><br><br></td></tr>
48 <tr><td class="memItemLeft" nowrap align=right valign=top>&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#a10">chanrec</a> ()</td></tr>
49
50 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Creates a channel record and initialises it with default values. </em> <a href="#a10"></a><em><br><br></td></tr>
51 <tr><td class="memItemLeft" nowrap align=right valign=top>virtual&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#a11">~chanrec</a> ()</td></tr>
52
53 <tr><td colspan=2><br><h2>Public Attributes</h2></td></tr>
54 <tr><td class="memItemLeft" nowrap align=right valign=top>char&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o0">name</a> [CHANMAX]</td></tr>
55
56 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The channels name. </em> <a href="#o0"></a><em><br><br></td></tr>
57 <tr><td class="memItemLeft" nowrap align=right valign=top>char&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o1">custom_modes</a> [MAXMODES]</td></tr>
58
59 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Custom modes for the channel. </em> <a href="#o1"></a><em><br><br></td></tr>
60 <tr><td class="memItemLeft" nowrap align=right valign=top>long&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o2">users</a></td></tr>
61
62 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Count of users on the channel used for fast user counting. </em> <a href="#o2"></a><em><br><br></td></tr>
63 <tr><td class="memItemLeft" nowrap align=right valign=top>std::vector&lt; char * &gt;&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o3">internal_userlist</a></td></tr>
64
65 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">User list (casted to char*'s to stop forward declaration stuff) (chicken and egg scenario!). </em> <a href="#o3"></a><em><br><br></td></tr>
66 <tr><td class="memItemLeft" nowrap align=right valign=top>char&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o4">topic</a> [MAXBUF]</td></tr>
67
68 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Channel topic. </em> <a href="#o4"></a><em><br><br></td></tr>
69 <tr><td class="memItemLeft" nowrap align=right valign=top>time_t&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o5">created</a></td></tr>
70
71 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Creation time. </em> <a href="#o5"></a><em><br><br></td></tr>
72 <tr><td class="memItemLeft" nowrap align=right valign=top>time_t&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o6">topicset</a></td></tr>
73
74 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Time topic was set. </em> <a href="#o6"></a><em><br><br></td></tr>
75 <tr><td class="memItemLeft" nowrap align=right valign=top>char&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o7">setby</a> [NICKMAX]</td></tr>
76
77 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The last user to set the topic. </em> <a href="#o7"></a><em><br><br></td></tr>
78 <tr><td class="memItemLeft" nowrap align=right valign=top>long&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o8">limit</a></td></tr>
79
80 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Contains the channel user limit. </em> <a href="#o8"></a><em><br><br></td></tr>
81 <tr><td class="memItemLeft" nowrap align=right valign=top>char&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o9">key</a> [32]</td></tr>
82
83 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Contains the channel key. </em> <a href="#o9"></a><em><br><br></td></tr>
84 <tr><td class="memItemLeft" nowrap align=right valign=top>short int&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o10">topiclock</a></td></tr>
85
86 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Nonzero if the mode +t is set. </em> <a href="#o10"></a><em><br><br></td></tr>
87 <tr><td class="memItemLeft" nowrap align=right valign=top>short int&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o11">noexternal</a></td></tr>
88
89 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Nonzero if the mode +n is set. </em> <a href="#o11"></a><em><br><br></td></tr>
90 <tr><td class="memItemLeft" nowrap align=right valign=top>short int&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o12">inviteonly</a></td></tr>
91
92 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Nonzero if the mode +i is set. </em> <a href="#o12"></a><em><br><br></td></tr>
93 <tr><td class="memItemLeft" nowrap align=right valign=top>short int&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o13">moderated</a></td></tr>
94
95 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Nonzero if the mode +m is set. </em> <a href="#o13"></a><em><br><br></td></tr>
96 <tr><td class="memItemLeft" nowrap align=right valign=top>short int&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o14">secret</a></td></tr>
97
98 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Nonzero if the mode +s is set. </em> <a href="#o14"></a><em><br><br></td></tr>
99 <tr><td class="memItemLeft" nowrap align=right valign=top>short int&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o15">c_private</a></td></tr>
100
101 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Nonzero if the mode +p is set. </em> <a href="#o15"></a><em><br><br></td></tr>
102 <tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="channels_8h.html#a5">BanList</a>&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classchanrec.html#o16">bans</a></td></tr>
103
104 <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The list of all bans set on the channel. </em> <a href="#o16"></a><em><br><br></td></tr>
105 </table>
106 <hr><a name="_details"></a><h2>Detailed Description</h2>
107 Holds all relevent information for a channel. 
108 <p>
109 This class represents a channel, and contains its name, modes, time created, topic, topic set time, etc, and an instance of the BanList type. 
110 <p>
111
112 <p>
113 Definition at line <a class="el" href="channels_8h-source.html#l00094">94</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.<hr><h2>Constructor &amp; Destructor Documentation</h2>
114 <a name="a10" doxytag="chanrec::chanrec"></a><p>
115 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
116   <tr>
117     <td class="mdRow">
118       <table cellpadding="0" cellspacing="0" border="0">
119         <tr>
120           <td class="md" nowrap valign="top"> chanrec::chanrec </td>
121           <td class="md" valign="top">(&nbsp;</td>
122           <td class="mdname1" valign="top" nowrap>          </td>
123           <td class="md" valign="top">&nbsp;)&nbsp;</td>
124           <td class="md" nowrap></td>
125         </tr>
126
127       </table>
128     </td>
129   </tr>
130 </table>
131 <table cellspacing=5 cellpadding=0 border=0>
132   <tr>
133     <td>
134       &nbsp;
135     </td>
136     <td>
137
138 <p>
139 Creates a channel record and initialises it with default values. 
140 <p>
141
142 <p>
143 Definition at line <a class="el" href="channels_8cpp-source.html#l00113">113</a> of file <a class="el" href="channels_8cpp-source.html">channels.cpp</a>.
144 <p>
145 References <a class="el" href="channels_8h-source.html#l00164">c_private</a>, <a class="el" href="channels_8h-source.html#l00120">created</a>, <a class="el" href="channels_8h-source.html#l00103">custom_modes</a>, <a class="el" href="channels_8h-source.html#l00112">internal_userlist</a>, <a class="el" href="channels_8h-source.html#l00150">inviteonly</a>, <a class="el" href="channels_8h-source.html#l00138">key</a>, <a class="el" href="channels_8h-source.html#l00133">limit</a>, <a class="el" href="channels_8h-source.html#l00154">moderated</a>, <a class="el" href="channels_8h-source.html#l00099">name</a>, <a class="el" href="channels_8h-source.html#l00146">noexternal</a>, <a class="el" href="channels_8h-source.html#l00159">secret</a>, <a class="el" href="channels_8h-source.html#l00128">setby</a>, <a class="el" href="channels_8h-source.html#l00117">topic</a>, <a class="el" href="channels_8h-source.html#l00142">topiclock</a>, <a class="el" href="channels_8h-source.html#l00124">topicset</a>, and <a class="el" href="channels_8h-source.html#l00107">users</a>.
146 <p>
147 <div class="fragment"><pre>00114 {
148 00115         strcpy(name,<span class="stringliteral">""</span>);
149 00116         strcpy(custom_modes,<span class="stringliteral">""</span>);
150 00117         strcpy(topic,<span class="stringliteral">""</span>);
151 00118         strcpy(setby,<span class="stringliteral">""</span>);
152 00119         strcpy(key,<span class="stringliteral">""</span>);
153 00120         <a class="code" href="classchanrec.html#o5">created</a> = <a class="code" href="classchanrec.html#o6">topicset</a> = <a class="code" href="classchanrec.html#o8">limit</a> = <a class="code" href="classchanrec.html#o2">users</a> = 0;
154 00121         <a class="code" href="classchanrec.html#o10">topiclock</a> = <a class="code" href="classchanrec.html#o11">noexternal</a> = <a class="code" href="classchanrec.html#o12">inviteonly</a> = <a class="code" href="classchanrec.html#o13">moderated</a> = <a class="code" href="classchanrec.html#o14">secret</a> = <a class="code" href="classchanrec.html#o15">c_private</a> = <span class="keyword">false</span>;
155 00122         <a class="code" href="classchanrec.html#o3">internal_userlist</a>.clear();
156 00123 }
157 </pre></div>    </td>
158   </tr>
159 </table>
160 <a name="a11" doxytag="chanrec::~chanrec"></a><p>
161 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
162   <tr>
163     <td class="mdRow">
164       <table cellpadding="0" cellspacing="0" border="0">
165         <tr>
166           <td class="md" nowrap valign="top"> virtual chanrec::~<a class="el" href="classchanrec.html">chanrec</a> </td>
167           <td class="md" valign="top">(&nbsp;</td>
168           <td class="mdname1" valign="top" nowrap>          </td>
169           <td class="md" valign="top">&nbsp;)&nbsp;</td>
170           <td class="md" nowrap><code> [inline, virtual]</code></td>
171         </tr>
172
173       </table>
174     </td>
175   </tr>
176 </table>
177 <table cellspacing=5 cellpadding=0 border=0>
178   <tr>
179     <td>
180       &nbsp;
181     </td>
182     <td>
183
184 <p>
185
186 <p>
187 Definition at line <a class="el" href="channels_8h-source.html#l00240">240</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
188 <p>
189 <div class="fragment"><pre>00240 { <span class="comment">/* stub */</span> }
190 </pre></div>    </td>
191   </tr>
192 </table>
193 <hr><h2>Member Function Documentation</h2>
194 <a name="a7" doxytag="chanrec::AddUser"></a><p>
195 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
196   <tr>
197     <td class="mdRow">
198       <table cellpadding="0" cellspacing="0" border="0">
199         <tr>
200           <td class="md" nowrap valign="top"> void chanrec::AddUser </td>
201           <td class="md" valign="top">(&nbsp;</td>
202           <td class="md" nowrap valign="top">char *&nbsp;</td>
203           <td class="mdname1" valign="top" nowrap> <em>castuser</em>          </td>
204           <td class="md" valign="top">&nbsp;)&nbsp;</td>
205           <td class="md" nowrap></td>
206         </tr>
207
208       </table>
209     </td>
210   </tr>
211 </table>
212 <table cellspacing=5 cellpadding=0 border=0>
213   <tr>
214     <td>
215       &nbsp;
216     </td>
217     <td>
218
219 <p>
220 Add a user pointer to the internal reference list The data inserted into the reference list is a table as it is an arbitary pointer compared to other users by its memory address, as this is a very fast 32 or 64 bit integer comparison. 
221 <p>
222
223 <p>
224 Definition at line <a class="el" href="channels_8cpp-source.html#l00220">220</a> of file <a class="el" href="channels_8cpp-source.html">channels.cpp</a>.
225 <p>
226 References <a class="el" href="modules_8h-source.html#l00023">DEBUG</a>, and <a class="el" href="channels_8h-source.html#l00112">internal_userlist</a>.
227 <p>
228 <div class="fragment"><pre>00221 {
229 00222         <a class="code" href="classchanrec.html#o3">internal_userlist</a>.push_back(castuser);
230 00223         log(DEBUG,<span class="stringliteral">"Added casted user to channel's internal list"</span>);
231 00224 }
232 </pre></div>    </td>
233   </tr>
234 </table>
235 <a name="a5" doxytag="chanrec::DecUserCounter"></a><p>
236 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
237   <tr>
238     <td class="mdRow">
239       <table cellpadding="0" cellspacing="0" border="0">
240         <tr>
241           <td class="md" nowrap valign="top"> void chanrec::DecUserCounter </td>
242           <td class="md" valign="top">(&nbsp;</td>
243           <td class="mdname1" valign="top" nowrap>          </td>
244           <td class="md" valign="top">&nbsp;)&nbsp;</td>
245           <td class="md" nowrap></td>
246         </tr>
247
248       </table>
249     </td>
250   </tr>
251 </table>
252 <table cellspacing=5 cellpadding=0 border=0>
253   <tr>
254     <td>
255       &nbsp;
256     </td>
257     <td>
258
259 <p>
260 Decrement the channel "user counter" The channel user counter is a reference counter which holds the number of users on the channel. 
261 <p>
262 If it decremented to 0 then the channel is removed from the system. Modules may alter the reference count to hold channels open which have no users and would normally be deleted once empty.
263 <p>
264 Definition at line <a class="el" href="channels_8cpp-source.html#l00208">208</a> of file <a class="el" href="channels_8cpp-source.html">channels.cpp</a>.
265 <p>
266 References <a class="el" href="modules_8h-source.html#l00023">DEBUG</a>, <a class="el" href="channels_8h-source.html#l00099">name</a>, and <a class="el" href="channels_8h-source.html#l00107">users</a>.
267 <p>
268 <div class="fragment"><pre>00209 {
269 00210         <span class="keywordflow">if</span> (this-&gt;<a class="code" href="classchanrec.html#o2">users</a> &gt; 0)
270 00211                 this-&gt;<a class="code" href="classchanrec.html#o2">users</a>--;
271 00212         log(DEBUG,<span class="stringliteral">"Decremented channel user count for %s to %lu"</span>,name,(<span class="keywordtype">unsigned</span> <span class="keywordtype">long</span>)users);
272 00213 }
273 </pre></div>    </td>
274   </tr>
275 </table>
276 <a name="a8" doxytag="chanrec::DelUser"></a><p>
277 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
278   <tr>
279     <td class="mdRow">
280       <table cellpadding="0" cellspacing="0" border="0">
281         <tr>
282           <td class="md" nowrap valign="top"> void chanrec::DelUser </td>
283           <td class="md" valign="top">(&nbsp;</td>
284           <td class="md" nowrap valign="top">char *&nbsp;</td>
285           <td class="mdname1" valign="top" nowrap> <em>castuser</em>          </td>
286           <td class="md" valign="top">&nbsp;)&nbsp;</td>
287           <td class="md" nowrap></td>
288         </tr>
289
290       </table>
291     </td>
292   </tr>
293 </table>
294 <table cellspacing=5 cellpadding=0 border=0>
295   <tr>
296     <td>
297       &nbsp;
298     </td>
299     <td>
300
301 <p>
302 Delete a user pointer to the internal reference list The data removed from the reference list is a table as it is an arbitary pointer compared to other users by its memory address, as this is a very fast 32 or 64 bit integer comparison. 
303 <p>
304
305 <p>
306 Definition at line <a class="el" href="channels_8cpp-source.html#l00226">226</a> of file <a class="el" href="channels_8cpp-source.html">channels.cpp</a>.
307 <p>
308 References <a class="el" href="modules_8h-source.html#l00023">DEBUG</a>, <a class="el" href="channels_8h-source.html#l00112">internal_userlist</a>, and <a class="el" href="channels_8h-source.html#l00099">name</a>.
309 <p>
310 <div class="fragment"><pre>00227 {
311 00228         <span class="keywordflow">for</span> (std::vector&lt;char*&gt;::iterator a = <a class="code" href="classchanrec.html#o3">internal_userlist</a>.begin(); a &lt; <a class="code" href="classchanrec.html#o3">internal_userlist</a>.end(); a++)
312 00229         {
313 00230                 <span class="keywordflow">if</span> (*a == castuser)
314 00231                 {
315 00232                         log(DEBUG,<span class="stringliteral">"Removed casted user from channel's internal list"</span>);
316 00233                         <a class="code" href="classchanrec.html#o3">internal_userlist</a>.erase(a);
317 00234                         <span class="keywordflow">return</span>;
318 00235                 }
319 00236         }
320 00237         log(DEBUG,<span class="stringliteral">"BUG BUG BUG! Attempt to remove an uncasted user from the internal list of %s!"</span>,name);
321 00238 }
322 </pre></div>    </td>
323   </tr>
324 </table>
325 <a name="a3" doxytag="chanrec::GetModeParameter"></a><p>
326 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
327   <tr>
328     <td class="mdRow">
329       <table cellpadding="0" cellspacing="0" border="0">
330         <tr>
331           <td class="md" nowrap valign="top"> std::string chanrec::GetModeParameter </td>
332           <td class="md" valign="top">(&nbsp;</td>
333           <td class="md" nowrap valign="top">char&nbsp;</td>
334           <td class="mdname1" valign="top" nowrap> <em>mode</em>          </td>
335           <td class="md" valign="top">&nbsp;)&nbsp;</td>
336           <td class="md" nowrap></td>
337         </tr>
338
339       </table>
340     </td>
341   </tr>
342 </table>
343 <table cellspacing=5 cellpadding=0 border=0>
344   <tr>
345     <td>
346       &nbsp;
347     </td>
348     <td>
349
350 <p>
351 Returns the parameter for a custom mode on a channel. 
352 <p>
353 For example if "+L #foo" is set, and you pass this method 'L', it will return '#foo'. If the mode is not set on the channel, or the mode has no parameters associated with it, it will return an empty string.
354 <p>
355 Definition at line <a class="el" href="channels_8cpp-source.html#l00187">187</a> of file <a class="el" href="channels_8cpp-source.html">channels.cpp</a>.
356 <p>
357 References <a class="el" href="channels_8cpp-source.html#l00111">custom_mode_params</a>.
358 <p>
359 <div class="fragment"><pre>00188 {
360 00189         <span class="keywordflow">if</span> (<a class="code" href="channels_8cpp.html#a38">custom_mode_params</a>.size())
361 00190         {
362 00191                 <span class="keywordflow">for</span> (vector&lt;ModeParameter&gt;::iterator i = <a class="code" href="channels_8cpp.html#a38">custom_mode_params</a>.begin(); i &lt; <a class="code" href="channels_8cpp.html#a38">custom_mode_params</a>.end(); i++)
363 00192                 {
364 00193                         <span class="keywordflow">if</span> ((i-&gt;mode == mode) &amp;&amp; (!strcasecmp(this-&gt;name,i-&gt;channel)))
365 00194                         {
366 00195                                 <span class="keywordflow">return</span> std::string(i-&gt;parameter);
367 00196                         }
368 00197                 }
369 00198         }
370 00199         <span class="keywordflow">return</span> std::string(<span class="stringliteral">""</span>);
371 00200 }
372 </pre></div>    </td>
373   </tr>
374 </table>
375 <a name="a6" doxytag="chanrec::GetUserCounter"></a><p>
376 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
377   <tr>
378     <td class="mdRow">
379       <table cellpadding="0" cellspacing="0" border="0">
380         <tr>
381           <td class="md" nowrap valign="top"> long chanrec::GetUserCounter </td>
382           <td class="md" valign="top">(&nbsp;</td>
383           <td class="mdname1" valign="top" nowrap>          </td>
384           <td class="md" valign="top">&nbsp;)&nbsp;</td>
385           <td class="md" nowrap></td>
386         </tr>
387
388       </table>
389     </td>
390   </tr>
391 </table>
392 <table cellspacing=5 cellpadding=0 border=0>
393   <tr>
394     <td>
395       &nbsp;
396     </td>
397     <td>
398
399 <p>
400 Obtain the channel "user counter" This returns the channel reference counter, which is initialized to 0 when the channel is created and incremented/decremented upon joins, parts quits and kicks. 
401 <p>
402
403 <p>
404 Definition at line <a class="el" href="channels_8cpp-source.html#l00215">215</a> of file <a class="el" href="channels_8cpp-source.html">channels.cpp</a>.
405 <p>
406 References <a class="el" href="channels_8h-source.html#l00107">users</a>.
407 <p>
408 <div class="fragment"><pre>00216 {
409 00217         <span class="keywordflow">return</span> (this-&gt;<a class="code" href="classchanrec.html#o2">users</a>);
410 00218 }
411 </pre></div>    </td>
412   </tr>
413 </table>
414 <a name="a9" doxytag="chanrec::GetUsers"></a><p>
415 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
416   <tr>
417     <td class="mdRow">
418       <table cellpadding="0" cellspacing="0" border="0">
419         <tr>
420           <td class="md" nowrap valign="top"> std::vector&lt; char * &gt; * chanrec::GetUsers </td>
421           <td class="md" valign="top">(&nbsp;</td>
422           <td class="mdname1" valign="top" nowrap>          </td>
423           <td class="md" valign="top">&nbsp;)&nbsp;</td>
424           <td class="md" nowrap></td>
425         </tr>
426
427       </table>
428     </td>
429   </tr>
430 </table>
431 <table cellspacing=5 cellpadding=0 border=0>
432   <tr>
433     <td>
434       &nbsp;
435     </td>
436     <td>
437
438 <p>
439 Obrain the internal reference list The internal reference list contains a list of userrec* cast to char*. 
440 <p>
441 These are used for rapid comparison to determine channel membership for PRIVMSG, NOTICE, QUIT, PART etc. The resulting pointer to the vector should be considered readonly and only modified via AddUser and DelUser.
442 <p>
443 Definition at line <a class="el" href="channels_8cpp-source.html#l00240">240</a> of file <a class="el" href="channels_8cpp-source.html">channels.cpp</a>.
444 <p>
445 References <a class="el" href="channels_8h-source.html#l00112">internal_userlist</a>.
446 <p>
447 <div class="fragment"><pre>00241 {
448 00242         <span class="keywordflow">return</span> &amp;<a class="code" href="classchanrec.html#o3">internal_userlist</a>;
449 00243 }
450 </pre></div>    </td>
451   </tr>
452 </table>
453 <a name="a4" doxytag="chanrec::IncUserCounter"></a><p>
454 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
455   <tr>
456     <td class="mdRow">
457       <table cellpadding="0" cellspacing="0" border="0">
458         <tr>
459           <td class="md" nowrap valign="top"> void chanrec::IncUserCounter </td>
460           <td class="md" valign="top">(&nbsp;</td>
461           <td class="mdname1" valign="top" nowrap>          </td>
462           <td class="md" valign="top">&nbsp;)&nbsp;</td>
463           <td class="md" nowrap></td>
464         </tr>
465
466       </table>
467     </td>
468   </tr>
469 </table>
470 <table cellspacing=5 cellpadding=0 border=0>
471   <tr>
472     <td>
473       &nbsp;
474     </td>
475     <td>
476
477 <p>
478 Increment the channel "user counter" The channel user counter is a reference counter which holds the number of users on the channel. 
479 <p>
480 If it decremented to 0 then the channel is removed from the system.
481 <p>
482 Definition at line <a class="el" href="channels_8cpp-source.html#l00202">202</a> of file <a class="el" href="channels_8cpp-source.html">channels.cpp</a>.
483 <p>
484 References <a class="el" href="modules_8h-source.html#l00023">DEBUG</a>, <a class="el" href="channels_8h-source.html#l00099">name</a>, and <a class="el" href="channels_8h-source.html#l00107">users</a>.
485 <p>
486 <div class="fragment"><pre>00203 {
487 00204         this-&gt;<a class="code" href="classchanrec.html#o2">users</a>++;
488 00205         log(DEBUG,<span class="stringliteral">"Incremented channel user count for %s to %lu"</span>,name,(<span class="keywordtype">unsigned</span> <span class="keywordtype">long</span>)users);
489 00206 }
490 </pre></div>    </td>
491   </tr>
492 </table>
493 <a name="a2" doxytag="chanrec::IsCustomModeSet"></a><p>
494 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
495   <tr>
496     <td class="mdRow">
497       <table cellpadding="0" cellspacing="0" border="0">
498         <tr>
499           <td class="md" nowrap valign="top"> bool chanrec::IsCustomModeSet </td>
500           <td class="md" valign="top">(&nbsp;</td>
501           <td class="md" nowrap valign="top">char&nbsp;</td>
502           <td class="mdname1" valign="top" nowrap> <em>mode</em>          </td>
503           <td class="md" valign="top">&nbsp;)&nbsp;</td>
504           <td class="md" nowrap></td>
505         </tr>
506
507       </table>
508     </td>
509   </tr>
510 </table>
511 <table cellspacing=5 cellpadding=0 border=0>
512   <tr>
513     <td>
514       &nbsp;
515     </td>
516     <td>
517
518 <p>
519 Returns true if a custom mode is set on a channel. 
520 <p>
521
522 <p>
523 Definition at line <a class="el" href="channels_8cpp-source.html#l00181">181</a> of file <a class="el" href="channels_8cpp-source.html">channels.cpp</a>.
524 <p>
525 References <a class="el" href="modules_8h-source.html#l00023">DEBUG</a>.
526 <p>
527 <div class="fragment"><pre>00182 {
528 00183         log(DEBUG,<span class="stringliteral">"Checking ISCustomModeSet: %c %s"</span>,mode,this-&gt;custom_modes);
529 00184         <span class="keywordflow">return</span> (strchr(this-&gt;custom_modes,mode) != 0);
530 00185 }
531 </pre></div>    </td>
532   </tr>
533 </table>
534 <a name="a0" doxytag="chanrec::SetCustomMode"></a><p>
535 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
536   <tr>
537     <td class="mdRow">
538       <table cellpadding="0" cellspacing="0" border="0">
539         <tr>
540           <td class="md" nowrap valign="top"> void chanrec::SetCustomMode </td>
541           <td class="md" valign="top">(&nbsp;</td>
542           <td class="md" nowrap valign="top">char&nbsp;</td>
543           <td class="mdname" nowrap> <em>mode</em>, </td>
544         </tr>
545         <tr>
546           <td></td>
547           <td></td>
548           <td class="md" nowrap>bool&nbsp;</td>
549           <td class="mdname" nowrap> <em>mode_on</em></td>
550         </tr>
551         <tr>
552           <td></td>
553           <td class="md">)&nbsp;</td>
554           <td class="md" colspan="2"></td>
555         </tr>
556
557       </table>
558     </td>
559   </tr>
560 </table>
561 <table cellspacing=5 cellpadding=0 border=0>
562   <tr>
563     <td>
564       &nbsp;
565     </td>
566     <td>
567
568 <p>
569 Sets or unsets a custom mode in the channels info. 
570 <p>
571
572 <p>
573 Definition at line <a class="el" href="channels_8cpp-source.html#l00125">125</a> of file <a class="el" href="channels_8cpp-source.html">channels.cpp</a>.
574 <p>
575 References <a class="el" href="channels_8h-source.html#l00103">custom_modes</a>, <a class="el" href="modules_8h-source.html#l00023">DEBUG</a>, and <a class="el" href="channels_8cpp-source.html#l00150">SetCustomModeParam()</a>.
576 <p>
577 <div class="fragment"><pre>00126 {
578 00127         <span class="keywordflow">if</span> (mode_on) {
579 00128                 <span class="keywordtype">char</span> m[3];
580 00129                 m[0] = mode;
581 00130                 m[1] = <span class="charliteral">'\0'</span>;
582 00131                 <span class="keywordflow">if</span> (!strchr(this-&gt;custom_modes,mode))
583 00132                 {
584 00133                         strlcat(custom_modes,m,MAXMODES);
585 00134                 }
586 00135                 log(DEBUG,<span class="stringliteral">"Custom mode %c set"</span>,mode);
587 00136         }
588 00137         <span class="keywordflow">else</span> {
589 00138 
590 00139                 std::string a = this-&gt;<a class="code" href="classchanrec.html#o1">custom_modes</a>;
591 00140                 <span class="keywordtype">int</span> pos = a.find(mode);
592 00141                 a.erase(pos,1);
593 00142                 strncpy(this-&gt;custom_modes,a.c_str(),MAXMODES);
594 00143 
595 00144                 log(DEBUG,<span class="stringliteral">"Custom mode %c removed: modelist='%s'"</span>,mode,this-&gt;custom_modes);
596 00145                 this-&gt;<a class="code" href="classchanrec.html#a1">SetCustomModeParam</a>(mode,<span class="stringliteral">""</span>,<span class="keyword">false</span>);
597 00146         }
598 00147 }
599 </pre></div>    </td>
600   </tr>
601 </table>
602 <a name="a1" doxytag="chanrec::SetCustomModeParam"></a><p>
603 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
604   <tr>
605     <td class="mdRow">
606       <table cellpadding="0" cellspacing="0" border="0">
607         <tr>
608           <td class="md" nowrap valign="top"> void chanrec::SetCustomModeParam </td>
609           <td class="md" valign="top">(&nbsp;</td>
610           <td class="md" nowrap valign="top">char&nbsp;</td>
611           <td class="mdname" nowrap> <em>mode</em>, </td>
612         </tr>
613         <tr>
614           <td></td>
615           <td></td>
616           <td class="md" nowrap>char *&nbsp;</td>
617           <td class="mdname" nowrap> <em>parameter</em>, </td>
618         </tr>
619         <tr>
620           <td></td>
621           <td></td>
622           <td class="md" nowrap>bool&nbsp;</td>
623           <td class="mdname" nowrap> <em>mode_on</em></td>
624         </tr>
625         <tr>
626           <td></td>
627           <td class="md">)&nbsp;</td>
628           <td class="md" colspan="2"></td>
629         </tr>
630
631       </table>
632     </td>
633   </tr>
634 </table>
635 <table cellspacing=5 cellpadding=0 border=0>
636   <tr>
637     <td>
638       &nbsp;
639     </td>
640     <td>
641
642 <p>
643 Sets or unsets the parameters for a custom mode in a channels info. 
644 <p>
645
646 <p>
647 Definition at line <a class="el" href="channels_8cpp-source.html#l00150">150</a> of file <a class="el" href="channels_8cpp-source.html">channels.cpp</a>.
648 <p>
649 References <a class="el" href="channels_8h-source.html#l00075">ModeParameter::channel</a>, <a class="el" href="channels_8cpp-source.html#l00111">custom_mode_params</a>, <a class="el" href="modules_8h-source.html#l00023">DEBUG</a>, <a class="el" href="channels_8h-source.html#l00073">ModeParameter::mode</a>, and <a class="el" href="channels_8h-source.html#l00074">ModeParameter::parameter</a>.
650 <p>
651 Referenced by <a class="el" href="channels_8cpp-source.html#l00125">SetCustomMode()</a>.
652 <p>
653 <div class="fragment"><pre>00151 {
654 00152 
655 00153         log(DEBUG,<span class="stringliteral">"SetCustomModeParam called"</span>);
656 00154         <a class="code" href="classModeParameter.html">ModeParameter</a> M;
657 00155         M.<a class="code" href="classModeParameter.html#o0">mode</a> = mode;
658 00156         strlcpy(M.<a class="code" href="classModeParameter.html#o2">channel</a>,this-&gt;name,CHANMAX);
659 00157         strlcpy(M.<a class="code" href="classModeParameter.html#o1">parameter</a>,parameter,MAXBUF);
660 00158         <span class="keywordflow">if</span> (mode_on)
661 00159         {
662 00160                 log(DEBUG,<span class="stringliteral">"Custom mode parameter %c %s added"</span>,mode,parameter);
663 00161                 <a class="code" href="channels_8cpp.html#a38">custom_mode_params</a>.push_back(M);
664 00162         }
665 00163         <span class="keywordflow">else</span>
666 00164         {
667 00165                 <span class="keywordflow">if</span> (<a class="code" href="channels_8cpp.html#a38">custom_mode_params</a>.size())
668 00166                 {
669 00167                         <span class="keywordflow">for</span> (vector&lt;ModeParameter&gt;::iterator i = <a class="code" href="channels_8cpp.html#a38">custom_mode_params</a>.begin(); i &lt; <a class="code" href="channels_8cpp.html#a38">custom_mode_params</a>.end(); i++)
670 00168                         {
671 00169                                 <span class="keywordflow">if</span> ((i-&gt;mode == mode) &amp;&amp; (!strcasecmp(this-&gt;name,i-&gt;channel)))
672 00170                                 {
673 00171                                         log(DEBUG,<span class="stringliteral">"Custom mode parameter %c %s removed"</span>,mode,parameter);
674 00172                                         <a class="code" href="channels_8cpp.html#a38">custom_mode_params</a>.erase(i);
675 00173                                         <span class="keywordflow">return</span>;
676 00174                                 }
677 00175                         }
678 00176                 }
679 00177                 log(DEBUG,<span class="stringliteral">"*** BUG *** Attempt to remove non-existent mode parameter!"</span>);
680 00178         }
681 00179 }
682 </pre></div>    </td>
683   </tr>
684 </table>
685 <hr><h2>Member Data Documentation</h2>
686 <a name="o16" doxytag="chanrec::bans"></a><p>
687 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
688   <tr>
689     <td class="mdRow">
690       <table cellpadding="0" cellspacing="0" border="0">
691         <tr>
692           <td class="md" nowrap valign="top"> <a class="el" href="channels_8h.html#a5">BanList</a> <a class="el" href="classchanrec.html#o16">chanrec::bans</a>
693       </table>
694     </td>
695   </tr>
696 </table>
697 <table cellspacing=5 cellpadding=0 border=0>
698   <tr>
699     <td>
700       &nbsp;
701     </td>
702     <td>
703
704 <p>
705 The list of all bans set on the channel. 
706 <p>
707
708 <p>
709 Definition at line <a class="el" href="channels_8h-source.html#l00168">168</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.    </td>
710   </tr>
711 </table>
712 <a name="o15" doxytag="chanrec::c_private"></a><p>
713 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
714   <tr>
715     <td class="mdRow">
716       <table cellpadding="0" cellspacing="0" border="0">
717         <tr>
718           <td class="md" nowrap valign="top"> short int <a class="el" href="classchanrec.html#o15">chanrec::c_private</a>
719       </table>
720     </td>
721   </tr>
722 </table>
723 <table cellspacing=5 cellpadding=0 border=0>
724   <tr>
725     <td>
726       &nbsp;
727     </td>
728     <td>
729
730 <p>
731 Nonzero if the mode +p is set. 
732 <p>
733 This value cannot be set at the same time as <a class="el" href="classchanrec.html#o14">chanrec::secret</a>
734 <p>
735 Definition at line <a class="el" href="channels_8h-source.html#l00164">164</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
736 <p>
737 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>.    </td>
738   </tr>
739 </table>
740 <a name="o5" doxytag="chanrec::created"></a><p>
741 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
742   <tr>
743     <td class="mdRow">
744       <table cellpadding="0" cellspacing="0" border="0">
745         <tr>
746           <td class="md" nowrap valign="top"> time_t <a class="el" href="classchanrec.html#o5">chanrec::created</a>
747       </table>
748     </td>
749   </tr>
750 </table>
751 <table cellspacing=5 cellpadding=0 border=0>
752   <tr>
753     <td>
754       &nbsp;
755     </td>
756     <td>
757
758 <p>
759 Creation time. 
760 <p>
761
762 <p>
763 Definition at line <a class="el" href="channels_8h-source.html#l00120">120</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
764 <p>
765 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>.    </td>
766   </tr>
767 </table>
768 <a name="o1" doxytag="chanrec::custom_modes"></a><p>
769 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
770   <tr>
771     <td class="mdRow">
772       <table cellpadding="0" cellspacing="0" border="0">
773         <tr>
774           <td class="md" nowrap valign="top"> char <a class="el" href="classchanrec.html#o1">chanrec::custom_modes</a>[MAXMODES]
775       </table>
776     </td>
777   </tr>
778 </table>
779 <table cellspacing=5 cellpadding=0 border=0>
780   <tr>
781     <td>
782       &nbsp;
783     </td>
784     <td>
785
786 <p>
787 Custom modes for the channel. 
788 <p>
789 Plugins may use this field in any way they see fit.
790 <p>
791 Definition at line <a class="el" href="channels_8h-source.html#l00103">103</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
792 <p>
793 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>, and <a class="el" href="channels_8cpp-source.html#l00125">SetCustomMode()</a>.    </td>
794   </tr>
795 </table>
796 <a name="o3" doxytag="chanrec::internal_userlist"></a><p>
797 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
798   <tr>
799     <td class="mdRow">
800       <table cellpadding="0" cellspacing="0" border="0">
801         <tr>
802           <td class="md" nowrap valign="top"> std::vector&lt;char*&gt; <a class="el" href="classchanrec.html#o3">chanrec::internal_userlist</a>
803       </table>
804     </td>
805   </tr>
806 </table>
807 <table cellspacing=5 cellpadding=0 border=0>
808   <tr>
809     <td>
810       &nbsp;
811     </td>
812     <td>
813
814 <p>
815 User list (casted to char*'s to stop forward declaration stuff) (chicken and egg scenario!). 
816 <p>
817
818 <p>
819 Definition at line <a class="el" href="channels_8h-source.html#l00112">112</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
820 <p>
821 Referenced by <a class="el" href="channels_8cpp-source.html#l00220">AddUser()</a>, <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>, <a class="el" href="channels_8cpp-source.html#l00226">DelUser()</a>, and <a class="el" href="channels_8cpp-source.html#l00240">GetUsers()</a>.    </td>
822   </tr>
823 </table>
824 <a name="o12" doxytag="chanrec::inviteonly"></a><p>
825 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
826   <tr>
827     <td class="mdRow">
828       <table cellpadding="0" cellspacing="0" border="0">
829         <tr>
830           <td class="md" nowrap valign="top"> short int <a class="el" href="classchanrec.html#o12">chanrec::inviteonly</a>
831       </table>
832     </td>
833   </tr>
834 </table>
835 <table cellspacing=5 cellpadding=0 border=0>
836   <tr>
837     <td>
838       &nbsp;
839     </td>
840     <td>
841
842 <p>
843 Nonzero if the mode +i is set. 
844 <p>
845
846 <p>
847 Definition at line <a class="el" href="channels_8h-source.html#l00150">150</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
848 <p>
849 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>.    </td>
850   </tr>
851 </table>
852 <a name="o9" doxytag="chanrec::key"></a><p>
853 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
854   <tr>
855     <td class="mdRow">
856       <table cellpadding="0" cellspacing="0" border="0">
857         <tr>
858           <td class="md" nowrap valign="top"> char <a class="el" href="classchanrec.html#o9">chanrec::key</a>[32]
859       </table>
860     </td>
861   </tr>
862 </table>
863 <table cellspacing=5 cellpadding=0 border=0>
864   <tr>
865     <td>
866       &nbsp;
867     </td>
868     <td>
869
870 <p>
871 Contains the channel key. 
872 <p>
873 If this value is an empty string, there is no channel key in place.
874 <p>
875 Definition at line <a class="el" href="channels_8h-source.html#l00138">138</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
876 <p>
877 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>.    </td>
878   </tr>
879 </table>
880 <a name="o8" doxytag="chanrec::limit"></a><p>
881 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
882   <tr>
883     <td class="mdRow">
884       <table cellpadding="0" cellspacing="0" border="0">
885         <tr>
886           <td class="md" nowrap valign="top"> long <a class="el" href="classchanrec.html#o8">chanrec::limit</a>
887       </table>
888     </td>
889   </tr>
890 </table>
891 <table cellspacing=5 cellpadding=0 border=0>
892   <tr>
893     <td>
894       &nbsp;
895     </td>
896     <td>
897
898 <p>
899 Contains the channel user limit. 
900 <p>
901 If this value is zero, there is no limit in place.
902 <p>
903 Definition at line <a class="el" href="channels_8h-source.html#l00133">133</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
904 <p>
905 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>.    </td>
906   </tr>
907 </table>
908 <a name="o13" doxytag="chanrec::moderated"></a><p>
909 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
910   <tr>
911     <td class="mdRow">
912       <table cellpadding="0" cellspacing="0" border="0">
913         <tr>
914           <td class="md" nowrap valign="top"> short int <a class="el" href="classchanrec.html#o13">chanrec::moderated</a>
915       </table>
916     </td>
917   </tr>
918 </table>
919 <table cellspacing=5 cellpadding=0 border=0>
920   <tr>
921     <td>
922       &nbsp;
923     </td>
924     <td>
925
926 <p>
927 Nonzero if the mode +m is set. 
928 <p>
929
930 <p>
931 Definition at line <a class="el" href="channels_8h-source.html#l00154">154</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
932 <p>
933 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>.    </td>
934   </tr>
935 </table>
936 <a name="o0" doxytag="chanrec::name"></a><p>
937 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
938   <tr>
939     <td class="mdRow">
940       <table cellpadding="0" cellspacing="0" border="0">
941         <tr>
942           <td class="md" nowrap valign="top"> char <a class="el" href="classchanrec.html#o0">chanrec::name</a>[CHANMAX]
943       </table>
944     </td>
945   </tr>
946 </table>
947 <table cellspacing=5 cellpadding=0 border=0>
948   <tr>
949     <td>
950       &nbsp;
951     </td>
952     <td>
953
954 <p>
955 The channels name. 
956 <p>
957
958 <p>
959 Definition at line <a class="el" href="channels_8h-source.html#l00099">99</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
960 <p>
961 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>, <a class="el" href="channels_8cpp-source.html#l00208">DecUserCounter()</a>, <a class="el" href="channels_8cpp-source.html#l00226">DelUser()</a>, <a class="el" href="channels_8cpp-source.html#l00202">IncUserCounter()</a>, and <a class="el" href="modules_8cpp-source.html#l00665">Server::PseudoToUser()</a>.    </td>
962   </tr>
963 </table>
964 <a name="o11" doxytag="chanrec::noexternal"></a><p>
965 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
966   <tr>
967     <td class="mdRow">
968       <table cellpadding="0" cellspacing="0" border="0">
969         <tr>
970           <td class="md" nowrap valign="top"> short int <a class="el" href="classchanrec.html#o11">chanrec::noexternal</a>
971       </table>
972     </td>
973   </tr>
974 </table>
975 <table cellspacing=5 cellpadding=0 border=0>
976   <tr>
977     <td>
978       &nbsp;
979     </td>
980     <td>
981
982 <p>
983 Nonzero if the mode +n is set. 
984 <p>
985
986 <p>
987 Definition at line <a class="el" href="channels_8h-source.html#l00146">146</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
988 <p>
989 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>.    </td>
990   </tr>
991 </table>
992 <a name="o14" doxytag="chanrec::secret"></a><p>
993 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
994   <tr>
995     <td class="mdRow">
996       <table cellpadding="0" cellspacing="0" border="0">
997         <tr>
998           <td class="md" nowrap valign="top"> short int <a class="el" href="classchanrec.html#o14">chanrec::secret</a>
999       </table>
1000     </td>
1001   </tr>
1002 </table>
1003 <table cellspacing=5 cellpadding=0 border=0>
1004   <tr>
1005     <td>
1006       &nbsp;
1007     </td>
1008     <td>
1009
1010 <p>
1011 Nonzero if the mode +s is set. 
1012 <p>
1013 This value cannot be set at the same time as <a class="el" href="classchanrec.html#o15">chanrec::c_private</a>
1014 <p>
1015 Definition at line <a class="el" href="channels_8h-source.html#l00159">159</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
1016 <p>
1017 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>.    </td>
1018   </tr>
1019 </table>
1020 <a name="o7" doxytag="chanrec::setby"></a><p>
1021 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
1022   <tr>
1023     <td class="mdRow">
1024       <table cellpadding="0" cellspacing="0" border="0">
1025         <tr>
1026           <td class="md" nowrap valign="top"> char <a class="el" href="classchanrec.html#o7">chanrec::setby</a>[NICKMAX]
1027       </table>
1028     </td>
1029   </tr>
1030 </table>
1031 <table cellspacing=5 cellpadding=0 border=0>
1032   <tr>
1033     <td>
1034       &nbsp;
1035     </td>
1036     <td>
1037
1038 <p>
1039 The last user to set the topic. 
1040 <p>
1041 If this member is an empty string, no topic was ever set.
1042 <p>
1043 Definition at line <a class="el" href="channels_8h-source.html#l00128">128</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
1044 <p>
1045 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>, and <a class="el" href="modules_8cpp-source.html#l00665">Server::PseudoToUser()</a>.    </td>
1046   </tr>
1047 </table>
1048 <a name="o4" doxytag="chanrec::topic"></a><p>
1049 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
1050   <tr>
1051     <td class="mdRow">
1052       <table cellpadding="0" cellspacing="0" border="0">
1053         <tr>
1054           <td class="md" nowrap valign="top"> char <a class="el" href="classchanrec.html#o4">chanrec::topic</a>[MAXBUF]
1055       </table>
1056     </td>
1057   </tr>
1058 </table>
1059 <table cellspacing=5 cellpadding=0 border=0>
1060   <tr>
1061     <td>
1062       &nbsp;
1063     </td>
1064     <td>
1065
1066 <p>
1067 Channel topic. 
1068 <p>
1069 If this is an empty string, no channel topic is set.
1070 <p>
1071 Definition at line <a class="el" href="channels_8h-source.html#l00117">117</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
1072 <p>
1073 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>, and <a class="el" href="modules_8cpp-source.html#l00665">Server::PseudoToUser()</a>.    </td>
1074   </tr>
1075 </table>
1076 <a name="o10" doxytag="chanrec::topiclock"></a><p>
1077 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
1078   <tr>
1079     <td class="mdRow">
1080       <table cellpadding="0" cellspacing="0" border="0">
1081         <tr>
1082           <td class="md" nowrap valign="top"> short int <a class="el" href="classchanrec.html#o10">chanrec::topiclock</a>
1083       </table>
1084     </td>
1085   </tr>
1086 </table>
1087 <table cellspacing=5 cellpadding=0 border=0>
1088   <tr>
1089     <td>
1090       &nbsp;
1091     </td>
1092     <td>
1093
1094 <p>
1095 Nonzero if the mode +t is set. 
1096 <p>
1097
1098 <p>
1099 Definition at line <a class="el" href="channels_8h-source.html#l00142">142</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
1100 <p>
1101 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>.    </td>
1102   </tr>
1103 </table>
1104 <a name="o6" doxytag="chanrec::topicset"></a><p>
1105 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
1106   <tr>
1107     <td class="mdRow">
1108       <table cellpadding="0" cellspacing="0" border="0">
1109         <tr>
1110           <td class="md" nowrap valign="top"> time_t <a class="el" href="classchanrec.html#o6">chanrec::topicset</a>
1111       </table>
1112     </td>
1113   </tr>
1114 </table>
1115 <table cellspacing=5 cellpadding=0 border=0>
1116   <tr>
1117     <td>
1118       &nbsp;
1119     </td>
1120     <td>
1121
1122 <p>
1123 Time topic was set. 
1124 <p>
1125 If no topic was ever set, this will be equal to <a class="el" href="classchanrec.html#o5">chanrec::created</a>
1126 <p>
1127 Definition at line <a class="el" href="channels_8h-source.html#l00124">124</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
1128 <p>
1129 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>, and <a class="el" href="modules_8cpp-source.html#l00665">Server::PseudoToUser()</a>.    </td>
1130   </tr>
1131 </table>
1132 <a name="o2" doxytag="chanrec::users"></a><p>
1133 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
1134   <tr>
1135     <td class="mdRow">
1136       <table cellpadding="0" cellspacing="0" border="0">
1137         <tr>
1138           <td class="md" nowrap valign="top"> long <a class="el" href="classchanrec.html#o2">chanrec::users</a>
1139       </table>
1140     </td>
1141   </tr>
1142 </table>
1143 <table cellspacing=5 cellpadding=0 border=0>
1144   <tr>
1145     <td>
1146       &nbsp;
1147     </td>
1148     <td>
1149
1150 <p>
1151 Count of users on the channel used for fast user counting. 
1152 <p>
1153
1154 <p>
1155 Definition at line <a class="el" href="channels_8h-source.html#l00107">107</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.
1156 <p>
1157 Referenced by <a class="el" href="channels_8cpp-source.html#l00113">chanrec()</a>, <a class="el" href="channels_8cpp-source.html#l00208">DecUserCounter()</a>, <a class="el" href="channels_8cpp-source.html#l00215">GetUserCounter()</a>, and <a class="el" href="channels_8cpp-source.html#l00202">IncUserCounter()</a>.    </td>
1158   </tr>
1159 </table>
1160 <hr>The documentation for this class was generated from the following files:<ul>
1161 <li><a class="el" href="channels_8h-source.html">channels.h</a><li><a class="el" href="channels_8cpp-source.html">channels.cpp</a></ul>
1162 <hr size="1"><address style="align: right;"><small>Generated on Tue Apr 26 17:11:47 2005 for InspIRCd by
1163 <a href="http://www.doxygen.org/index.html">
1164 <img src="doxygen.png" alt="doxygen" align="middle" border=0 > 
1165 </a>1.3.3 </small></address>
1166 </body>
1167 </html>