]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/module-doc/users_8cpp-source.html
Added new docs for class InspIRCd and globals.h etc
[user/henk/code/inspircd.git] / docs / module-doc / users_8cpp-source.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
3 <title>InspIRCd: users.cpp Source File</title>
4 <link href="inspircd.doxygen.css" rel="stylesheet" type="text/css">
5 </head><body>
6 <!-- Generated by Doxygen 1.4.4-20050815 -->
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">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
8 <div class="nav">
9 <a class="el" href="dir_000000.html">home</a>&nbsp;&raquo&nbsp;<a class="el" href="dir_000001.html">brain</a>&nbsp;&raquo&nbsp;<a class="el" href="dir_000002.html">inspircd-cvs</a>&nbsp;&raquo&nbsp;<a class="el" href="dir_000003.html">inspircd</a>&nbsp;&raquo&nbsp;<a class="el" href="dir_000005.html">src</a></div>
10 <h1>users.cpp</h1><a href="users_8cpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*       +------------------------------------+</span>
11 <a name="l00002"></a>00002 <span class="comment"> *       | Inspire Internet Relay Chat Daemon |</span>
12 <a name="l00003"></a>00003 <span class="comment"> *       +------------------------------------+</span>
13 <a name="l00004"></a>00004 <span class="comment"> *</span>
14 <a name="l00005"></a>00005 <span class="comment"> *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.</span>
15 <a name="l00006"></a>00006 <span class="comment"> *                       E-mail:</span>
16 <a name="l00007"></a>00007 <span class="comment"> *                &lt;brain@chatspike.net&gt;</span>
17 <a name="l00008"></a>00008 <span class="comment"> *                &lt;Craig@chatspike.net&gt;</span>
18 <a name="l00009"></a>00009 <span class="comment"> *     </span>
19 <a name="l00010"></a>00010 <span class="comment"> * Written by Craig Edwards, Craig McLure, and others.</span>
20 <a name="l00011"></a>00011 <span class="comment"> * This program is free but copyrighted software; see</span>
21 <a name="l00012"></a>00012 <span class="comment"> *            the file COPYING for details.</span>
22 <a name="l00013"></a>00013 <span class="comment"> *</span>
23 <a name="l00014"></a>00014 <span class="comment"> * ---------------------------------------------------</span>
24 <a name="l00015"></a>00015 <span class="comment"> */</span>
25 <a name="l00016"></a>00016 
26 <a name="l00017"></a>00017 <span class="keyword">using</span> <span class="keyword">namespace </span>std;
27 <a name="l00018"></a>00018 
28 <a name="l00019"></a>00019 <span class="preprocessor">#include "inspircd_config.h"</span> 
29 <a name="l00020"></a>00020 <span class="preprocessor">#include "<a class="code" href="channels_8h.html">channels.h</a>"</span>
30 <a name="l00021"></a>00021 <span class="preprocessor">#include "<a class="code" href="connection_8h.html">connection.h</a>"</span>
31 <a name="l00022"></a>00022 <span class="preprocessor">#include "<a class="code" href="users_8h.html">users.h</a>"</span>
32 <a name="l00023"></a>00023 <span class="preprocessor">#include "<a class="code" href="inspircd_8h.html">inspircd.h</a>"</span>
33 <a name="l00024"></a>00024 <span class="preprocessor">#include &lt;stdio.h&gt;</span>
34 <a name="l00025"></a>00025 <span class="preprocessor">#ifdef THREADED_DNS</span>
35 <a name="l00026"></a>00026 <span class="preprocessor"></span><span class="preprocessor">#include &lt;pthread.h&gt;</span>
36 <a name="l00027"></a>00027 <span class="preprocessor">#include &lt;signal.h&gt;</span>
37 <a name="l00028"></a>00028 <span class="preprocessor">#endif</span>
38 <a name="l00029"></a>00029 <span class="preprocessor"></span><span class="preprocessor">#include "inspstring.h"</span>
39 <a name="l00030"></a>00030 <span class="preprocessor">#include "<a class="code" href="commands_8h.html">commands.h</a>"</span>
40 <a name="l00031"></a>00031 <span class="preprocessor">#include "helperfuncs.h"</span>
41 <a name="l00032"></a>00032 
42 <a name="l00033"></a>00033 <span class="keyword">extern</span> <a class="code" href="classServerConfig.html">ServerConfig</a>* <a class="code" href="channels_8cpp.html#Config">Config</a>;
43 <a name="l00034"></a>00034 <span class="keyword">extern</span> time_t <a class="code" href="channels_8cpp.html#TIME">TIME</a>;
44 <a name="l00035"></a>00035 
45 <a name="l00036"></a><a class="code" href="classuserrec.html#userrec_28_29">00036</a> <a class="code" href="classuserrec.html#userrec_28_29">userrec::userrec</a>()
46 <a name="l00037"></a>00037 {
47 <a name="l00038"></a>00038         <span class="comment">// the PROPER way to do it, AVOID bzero at *ALL* costs</span>
48 <a name="l00039"></a>00039         strcpy(<a class="code" href="classuserrec.html#nick_5BNICKMAX_5D">nick</a>,<span class="stringliteral">""</span>);
49 <a name="l00040"></a>00040         strcpy(<a class="code" href="classconnection.html#ip_5B_31_36_5D">ip</a>,<span class="stringliteral">"127.0.0.1"</span>);
50 <a name="l00041"></a>00041         <a class="code" href="classuserrec.html#timeout">timeout</a> = 0;
51 <a name="l00042"></a>00042         strcpy(<a class="code" href="classuserrec.html#ident_5BIDENTMAX_2B_32_5D">ident</a>,<span class="stringliteral">""</span>);
52 <a name="l00043"></a>00043         strcpy(<a class="code" href="classconnection.html#host_5B_31_36_30_5D">host</a>,<span class="stringliteral">""</span>);
53 <a name="l00044"></a>00044         strcpy(<a class="code" href="classuserrec.html#dhost_5B_31_36_30_5D">dhost</a>,<span class="stringliteral">""</span>);
54 <a name="l00045"></a>00045         strcpy(<a class="code" href="classuserrec.html#fullname_5BMAXGECOS_2B_31_5D">fullname</a>,<span class="stringliteral">""</span>);
55 <a name="l00046"></a>00046         strcpy(<a class="code" href="classuserrec.html#modes_5B_35_34_5D">modes</a>,<span class="stringliteral">""</span>);
56 <a name="l00047"></a>00047         <a class="code" href="classuserrec.html#server">server</a> = (<span class="keywordtype">char</span>*)<a class="code" href="inspircd_8h.html#FindServerNamePtr_28std_3A_3Astring_20servername_29">FindServerNamePtr</a>(Config-&gt;<a class="code" href="classServerConfig.html#ServerName_5BMAXBUF_5D">ServerName</a>);
57 <a name="l00048"></a>00048         strcpy(<a class="code" href="classuserrec.html#awaymsg_5BMAXAWAY_2B_31_5D">awaymsg</a>,<span class="stringliteral">""</span>);
58 <a name="l00049"></a>00049         strcpy(<a class="code" href="classuserrec.html#oper_5BNICKMAX_5D">oper</a>,<span class="stringliteral">""</span>);
59 <a name="l00050"></a>00050         <a class="code" href="classuserrec.html#reset_5Fdue">reset_due</a> = <a class="code" href="channels_8cpp.html#TIME">TIME</a>;
60 <a name="l00051"></a>00051         <a class="code" href="classuserrec.html#lines_5Fin">lines_in</a> = 0;
61 <a name="l00052"></a>00052         <a class="code" href="classconnection.html#fd">fd</a> = <a class="code" href="classconnection.html#lastping">lastping</a> = <a class="code" href="classconnection.html#signon">signon</a> = <a class="code" href="classconnection.html#idle_5Flastmsg">idle_lastmsg</a> = <a class="code" href="classconnection.html#nping">nping</a> = <a class="code" href="classconnection.html#registered">registered</a> = 0;
62 <a name="l00053"></a>00053         <a class="code" href="classuserrec.html#flood">flood</a> = <a class="code" href="classconnection.html#port">port</a> = <a class="code" href="classconnection.html#bytes_5Fin">bytes_in</a> = <a class="code" href="classconnection.html#bytes_5Fout">bytes_out</a> = <a class="code" href="classconnection.html#cmds_5Fin">cmds_in</a> = <a class="code" href="classconnection.html#cmds_5Fout">cmds_out</a> = 0;
63 <a name="l00054"></a>00054         <a class="code" href="classconnection.html#haspassed">haspassed</a> = <span class="keyword">false</span>;
64 <a name="l00055"></a>00055         <a class="code" href="classuserrec.html#dns_5Fdone">dns_done</a> = <span class="keyword">false</span>;
65 <a name="l00056"></a>00056         <a class="code" href="classuserrec.html#recvq">recvq</a> = <span class="stringliteral">""</span>;
66 <a name="l00057"></a>00057         <a class="code" href="classuserrec.html#sendq">sendq</a> = <span class="stringliteral">""</span>;
67 <a name="l00058"></a>00058         <a class="code" href="classuserrec.html#chans">chans</a>.clear();
68 <a name="l00059"></a>00059         <a class="code" href="classuserrec.html#invites">invites</a>.clear();
69 <a name="l00060"></a>00060 }
70 <a name="l00061"></a>00061 
71 <a name="l00062"></a><a class="code" href="classuserrec.html#_7Euserrec_28_29">00062</a> <a class="code" href="classuserrec.html#_7Euserrec_28_29">userrec::~userrec</a>()
72 <a name="l00063"></a>00063 {
73 <a name="l00064"></a>00064 }
74 <a name="l00065"></a>00065 
75 <a name="l00066"></a><a class="code" href="classuserrec.html#CloseSocket_28_29">00066</a> <span class="keywordtype">void</span> <a class="code" href="classuserrec.html#CloseSocket_28_29">userrec::CloseSocket</a>()
76 <a name="l00067"></a>00067 {
77 <a name="l00068"></a>00068         shutdown(this-&gt;fd,2);
78 <a name="l00069"></a>00069         close(this-&gt;fd);
79 <a name="l00070"></a>00070 }
80 <a name="l00071"></a>00071  
81 <a name="l00072"></a><a class="code" href="classuserrec.html#GetFullHost_28_29">00072</a> <span class="keywordtype">char</span>* <a class="code" href="classuserrec.html#GetFullHost_28_29">userrec::GetFullHost</a>()
82 <a name="l00073"></a>00073 {
83 <a name="l00074"></a>00074         <span class="keyword">static</span> <span class="keywordtype">char</span> result[MAXBUF];
84 <a name="l00075"></a>00075         snprintf(result,MAXBUF,<span class="stringliteral">"%s!%s@%s"</span>,<a class="code" href="classuserrec.html#nick_5BNICKMAX_5D">nick</a>,<a class="code" href="classuserrec.html#ident_5BIDENTMAX_2B_32_5D">ident</a>,<a class="code" href="classuserrec.html#dhost_5B_31_36_30_5D">dhost</a>);
85 <a name="l00076"></a>00076         <span class="keywordflow">return</span> result;
86 <a name="l00077"></a>00077 }
87 <a name="l00078"></a>00078 
88 <a name="l00079"></a><a class="code" href="classuserrec.html#ReadData_28void_20_2Abuffer_2C_20size_5Ft_20size_29">00079</a> <span class="keywordtype">int</span> <a class="code" href="classuserrec.html#ReadData_28void_20_2Abuffer_2C_20size_5Ft_20size_29">userrec::ReadData</a>(<span class="keywordtype">void</span>* buffer, size_t size)
89 <a name="l00080"></a>00080 {
90 <a name="l00081"></a>00081         <span class="keywordflow">if</span> (this-&gt;fd &gt; -1)
91 <a name="l00082"></a>00082         {
92 <a name="l00083"></a>00083                 <span class="keywordflow">return</span> read(this-&gt;fd, buffer, size);
93 <a name="l00084"></a>00084         }
94 <a name="l00085"></a>00085         <span class="keywordflow">else</span> <span class="keywordflow">return</span> 0;
95 <a name="l00086"></a>00086 }
96 <a name="l00087"></a>00087 
97 <a name="l00088"></a>00088 
98 <a name="l00089"></a><a class="code" href="classuserrec.html#GetFullRealHost_28_29">00089</a> <span class="keywordtype">char</span>* <a class="code" href="classuserrec.html#GetFullRealHost_28_29">userrec::GetFullRealHost</a>()
99 <a name="l00090"></a>00090 {
100 <a name="l00091"></a>00091         <span class="keyword">static</span> <span class="keywordtype">char</span> fresult[MAXBUF];
101 <a name="l00092"></a>00092         snprintf(fresult,MAXBUF,<span class="stringliteral">"%s!%s@%s"</span>,<a class="code" href="classuserrec.html#nick_5BNICKMAX_5D">nick</a>,<a class="code" href="classuserrec.html#ident_5BIDENTMAX_2B_32_5D">ident</a>,<a class="code" href="classconnection.html#host_5B_31_36_30_5D">host</a>);
102 <a name="l00093"></a>00093         <span class="keywordflow">return</span> fresult;
103 <a name="l00094"></a>00094 }
104 <a name="l00095"></a>00095 
105 <a name="l00096"></a><a class="code" href="classuserrec.html#IsInvited_28char_20_2Achannel_29">00096</a> <span class="keywordtype">bool</span> <a class="code" href="classuserrec.html#IsInvited_28char_20_2Achannel_29">userrec::IsInvited</a>(<span class="keywordtype">char</span>* channel)
106 <a name="l00097"></a>00097 {
107 <a name="l00098"></a>00098         <span class="keywordflow">for</span> (InvitedList::iterator i = <a class="code" href="classuserrec.html#invites">invites</a>.begin(); i != <a class="code" href="classuserrec.html#invites">invites</a>.end(); i++)
108 <a name="l00099"></a>00099         {
109 <a name="l00100"></a>00100                 <span class="keywordflow">if</span> (i-&gt;channel) {
110 <a name="l00101"></a>00101                         <span class="keywordflow">if</span> (!strcasecmp(i-&gt;channel,channel))
111 <a name="l00102"></a>00102                         {
112 <a name="l00103"></a>00103                                 <span class="keywordflow">return</span> <span class="keyword">true</span>;
113 <a name="l00104"></a>00104                         }
114 <a name="l00105"></a>00105                 }
115 <a name="l00106"></a>00106         }
116 <a name="l00107"></a>00107         <span class="keywordflow">return</span> <span class="keyword">false</span>;
117 <a name="l00108"></a>00108 }
118 <a name="l00109"></a>00109 
119 <a name="l00110"></a><a class="code" href="classuserrec.html#GetInviteList_28_29">00110</a> <a class="code" href="users_8h.html#InvitedList">InvitedList</a>* <a class="code" href="classuserrec.html#GetInviteList_28_29">userrec::GetInviteList</a>()
120 <a name="l00111"></a>00111 {
121 <a name="l00112"></a>00112         <span class="keywordflow">return</span> &amp;<a class="code" href="classuserrec.html#invites">invites</a>;
122 <a name="l00113"></a>00113 }
123 <a name="l00114"></a>00114 
124 <a name="l00115"></a><a class="code" href="classuserrec.html#InviteTo_28char_20_2Achannel_29">00115</a> <span class="keywordtype">void</span> <a class="code" href="classuserrec.html#InviteTo_28char_20_2Achannel_29">userrec::InviteTo</a>(<span class="keywordtype">char</span>* channel)
125 <a name="l00116"></a>00116 {
126 <a name="l00117"></a>00117         <a class="code" href="classInvited.html">Invited</a> i;
127 <a name="l00118"></a>00118         strlcpy(i.<a class="code" href="classInvited.html#channel_5BCHANMAX_5D">channel</a>,channel,CHANMAX);
128 <a name="l00119"></a>00119         <a class="code" href="classuserrec.html#invites">invites</a>.push_back(i);
129 <a name="l00120"></a>00120 }
130 <a name="l00121"></a>00121 
131 <a name="l00122"></a><a class="code" href="classuserrec.html#RemoveInvite_28char_20_2Achannel_29">00122</a> <span class="keywordtype">void</span> <a class="code" href="classuserrec.html#RemoveInvite_28char_20_2Achannel_29">userrec::RemoveInvite</a>(<span class="keywordtype">char</span>* channel)
132 <a name="l00123"></a>00123 {
133 <a name="l00124"></a>00124         <a class="code" href="globals_8h.html#log_28int_20level_2C_20char_20_2Atext_2C_2E_2E_2E_29">log</a>(<a class="code" href="inspircd__io_8h.html#DEBUG">DEBUG</a>,<span class="stringliteral">"Removing invites"</span>);
134 <a name="l00125"></a>00125         <span class="keywordflow">if</span> (channel)
135 <a name="l00126"></a>00126         {
136 <a name="l00127"></a>00127                 <span class="keywordflow">if</span> (<a class="code" href="classuserrec.html#invites">invites</a>.size())
137 <a name="l00128"></a>00128                 {
138 <a name="l00129"></a>00129                         <span class="keywordflow">for</span> (InvitedList::iterator i = <a class="code" href="classuserrec.html#invites">invites</a>.begin(); i != <a class="code" href="classuserrec.html#invites">invites</a>.end(); i++)
139 <a name="l00130"></a>00130                         {
140 <a name="l00131"></a>00131                                 <span class="keywordflow">if</span> (i-&gt;channel)
141 <a name="l00132"></a>00132                                 {
142 <a name="l00133"></a>00133                                         <span class="keywordflow">if</span> (!strcasecmp(i-&gt;channel,channel))
143 <a name="l00134"></a>00134                                         {
144 <a name="l00135"></a>00135                                                 <a class="code" href="classuserrec.html#invites">invites</a>.erase(i);
145 <a name="l00136"></a>00136                                                 <span class="keywordflow">return</span>;
146 <a name="l00137"></a>00137                                         }
147 <a name="l00138"></a>00138                                 }
148 <a name="l00139"></a>00139                         }
149 <a name="l00140"></a>00140                 }
150 <a name="l00141"></a>00141         }
151 <a name="l00142"></a>00142 }
152 <a name="l00143"></a>00143 
153 <a name="l00144"></a><a class="code" href="classuserrec.html#HasPermission_28char_20_2Acommand_29">00144</a> <span class="keywordtype">bool</span> <a class="code" href="classuserrec.html#HasPermission_28char_20_2Acommand_29">userrec::HasPermission</a>(<span class="keywordtype">char</span>* command)
154 <a name="l00145"></a>00145 {
155 <a name="l00146"></a>00146         <span class="keywordtype">char</span> TypeName[MAXBUF],Classes[MAXBUF],ClassName[MAXBUF],CommandList[MAXBUF];
156 <a name="l00147"></a>00147         <span class="keywordtype">char</span>* mycmd;
157 <a name="l00148"></a>00148         <span class="keywordtype">char</span>* savept;
158 <a name="l00149"></a>00149         <span class="keywordtype">char</span>* savept2;
159 <a name="l00150"></a>00150         
160 <a name="l00151"></a>00151         <span class="comment">// users on u-lined servers can completely bypass</span>
161 <a name="l00152"></a>00152         <span class="comment">// all permissions based checks.</span>
162 <a name="l00153"></a>00153         <span class="comment">//</span>
163 <a name="l00154"></a>00154         <span class="comment">// of course, if this is sent to a remote server and this</span>
164 <a name="l00155"></a>00155         <span class="comment">// server is not ulined there, then that other server</span>
165 <a name="l00156"></a>00156         <span class="comment">// silently drops the command.</span>
166 <a name="l00157"></a>00157         <span class="keywordflow">if</span> (<a class="code" href="commands_8h.html#is_5Fuline_28const_20char_20_2Aserver_29">is_uline</a>(this-&gt;server))
167 <a name="l00158"></a>00158                 <span class="keywordflow">return</span> <span class="keyword">true</span>;
168 <a name="l00159"></a>00159         
169 <a name="l00160"></a>00160         <span class="comment">// are they even an oper at all?</span>
170 <a name="l00161"></a>00161         <span class="keywordflow">if</span> (strchr(this-&gt;modes,<span class="charliteral">'o'</span>))
171 <a name="l00162"></a>00162         {
172 <a name="l00163"></a>00163                 <span class="keywordflow">for</span> (<span class="keywordtype">int</span> j =0; j &lt; Config-&gt;ConfValueEnum(<span class="stringliteral">"type"</span>,&amp;Config-&gt;<a class="code" href="classServerConfig.html#config_5Ff">config_f</a>); j++)
173 <a name="l00164"></a>00164                 {
174 <a name="l00165"></a>00165                         Config-&gt;<a class="code" href="classServerConfig.html#ConfValue_28char_20_2Atag_2C_20char_20_2Avar_2C_20int_20index_2C_20char_20_2Aresult_2C_20std_3A_3Astringstream_20_2Aconfig_29">ConfValue</a>(<span class="stringliteral">"type"</span>,<span class="stringliteral">"name"</span>,j,TypeName,&amp;Config-&gt;<a class="code" href="classServerConfig.html#config_5Ff">config_f</a>);
175 <a name="l00166"></a>00166                         <span class="keywordflow">if</span> (!strcmp(TypeName,this-&gt;oper))
176 <a name="l00167"></a>00167                         {
177 <a name="l00168"></a>00168                                 Config-&gt;<a class="code" href="classServerConfig.html#ConfValue_28char_20_2Atag_2C_20char_20_2Avar_2C_20int_20index_2C_20char_20_2Aresult_2C_20std_3A_3Astringstream_20_2Aconfig_29">ConfValue</a>(<span class="stringliteral">"type"</span>,<span class="stringliteral">"classes"</span>,j,Classes,&amp;Config-&gt;<a class="code" href="classServerConfig.html#config_5Ff">config_f</a>);
178 <a name="l00169"></a>00169                                 <span class="keywordtype">char</span>* myclass = strtok_r(Classes,<span class="stringliteral">" "</span>,&amp;savept);
179 <a name="l00170"></a>00170                                 <span class="keywordflow">while</span> (myclass)
180 <a name="l00171"></a>00171                                 {
181 <a name="l00172"></a>00172                                         <span class="keywordflow">for</span> (<span class="keywordtype">int</span> k =0; k &lt; Config-&gt;ConfValueEnum(<span class="stringliteral">"class"</span>,&amp;Config-&gt;<a class="code" href="classServerConfig.html#config_5Ff">config_f</a>); k++)
182 <a name="l00173"></a>00173                                         {
183 <a name="l00174"></a>00174                                                 Config-&gt;<a class="code" href="classServerConfig.html#ConfValue_28char_20_2Atag_2C_20char_20_2Avar_2C_20int_20index_2C_20char_20_2Aresult_2C_20std_3A_3Astringstream_20_2Aconfig_29">ConfValue</a>(<span class="stringliteral">"class"</span>,<span class="stringliteral">"name"</span>,k,ClassName,&amp;Config-&gt;<a class="code" href="classServerConfig.html#config_5Ff">config_f</a>);
184 <a name="l00175"></a>00175                                                 <span class="keywordflow">if</span> (!strcmp(ClassName,myclass))
185 <a name="l00176"></a>00176                                                 {
186 <a name="l00177"></a>00177                                                         Config-&gt;<a class="code" href="classServerConfig.html#ConfValue_28char_20_2Atag_2C_20char_20_2Avar_2C_20int_20index_2C_20char_20_2Aresult_2C_20std_3A_3Astringstream_20_2Aconfig_29">ConfValue</a>(<span class="stringliteral">"class"</span>,<span class="stringliteral">"commands"</span>,k,CommandList,&amp;Config-&gt;<a class="code" href="classServerConfig.html#config_5Ff">config_f</a>);
187 <a name="l00178"></a>00178                                                         mycmd = strtok_r(CommandList,<span class="stringliteral">" "</span>,&amp;savept2);
188 <a name="l00179"></a>00179                                                         <span class="keywordflow">while</span> (mycmd)
189 <a name="l00180"></a>00180                                                         {
190 <a name="l00181"></a>00181                                                                 <span class="keywordflow">if</span> ((!strcasecmp(mycmd,command)) || (*mycmd == <span class="charliteral">'*'</span>))
191 <a name="l00182"></a>00182                                                                 {
192 <a name="l00183"></a>00183                                                                         <span class="keywordflow">return</span> <span class="keyword">true</span>;
193 <a name="l00184"></a>00184                                                                 }
194 <a name="l00185"></a>00185                                                                 mycmd = strtok_r(NULL,<span class="stringliteral">" "</span>,&amp;savept2);
195 <a name="l00186"></a>00186                                                         }
196 <a name="l00187"></a>00187                                                 }
197 <a name="l00188"></a>00188                                         }
198 <a name="l00189"></a>00189                                         myclass = strtok_r(NULL,<span class="stringliteral">" "</span>,&amp;savept);
199 <a name="l00190"></a>00190                                 }
200 <a name="l00191"></a>00191                         }
201 <a name="l00192"></a>00192                 }
202 <a name="l00193"></a>00193         }
203 <a name="l00194"></a>00194         <span class="keywordflow">return</span> <span class="keyword">false</span>;
204 <a name="l00195"></a>00195 }
205 <a name="l00196"></a>00196 
206 <a name="l00197"></a>00197 
207 <a name="l00198"></a><a class="code" href="classuserrec.html#AddBuffer_28std_3A_3Astring_20a_29">00198</a> <span class="keywordtype">bool</span> <a class="code" href="classuserrec.html#AddBuffer_28std_3A_3Astring_20a_29">userrec::AddBuffer</a>(<a class="code" href="namespaceirc.html#string">std::string</a> a)
208 <a name="l00199"></a>00199 {
209 <a name="l00200"></a>00200         <a class="code" href="namespaceirc.html#string">std::string</a> b = <span class="stringliteral">""</span>;
210 <a name="l00201"></a>00201         <span class="keywordflow">for</span> (<span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> i = 0; i &lt; a.length(); i++)
211 <a name="l00202"></a>00202                 <span class="keywordflow">if</span> ((a[i] != <span class="charliteral">'\r'</span>) &amp;&amp; (a[i] != <span class="charliteral">'\0'</span>) &amp;&amp; (a[i] != 7))
212 <a name="l00203"></a>00203                         b = b + a[i];
213 <a name="l00204"></a>00204         std::stringstream stream(<a class="code" href="classuserrec.html#recvq">recvq</a>);
214 <a name="l00205"></a>00205         stream &lt;&lt; b;
215 <a name="l00206"></a>00206         <a class="code" href="classuserrec.html#recvq">recvq</a> = stream.str();
216 <a name="l00207"></a>00207         <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> i = 0;
217 <a name="l00208"></a>00208         <span class="comment">// count the size of the first line in the buffer.</span>
218 <a name="l00209"></a>00209         <span class="keywordflow">while</span> (i &lt; <a class="code" href="classuserrec.html#recvq">recvq</a>.length())
219 <a name="l00210"></a>00210         {
220 <a name="l00211"></a>00211                 <span class="keywordflow">if</span> (<a class="code" href="classuserrec.html#recvq">recvq</a>[i++] == <span class="charliteral">'\n'</span>)
221 <a name="l00212"></a>00212                         <span class="keywordflow">break</span>;
222 <a name="l00213"></a>00213         }
223 <a name="l00214"></a>00214         <span class="keywordflow">if</span> (<a class="code" href="classuserrec.html#recvq">recvq</a>.length() &gt; (unsigned)this-&gt;<a class="code" href="classuserrec.html#recvqmax">recvqmax</a>)
224 <a name="l00215"></a>00215         {
225 <a name="l00216"></a>00216                 this-&gt;<a class="code" href="classuserrec.html#SetWriteError_28std_3A_3Astring_20error_29">SetWriteError</a>(<span class="stringliteral">"RecvQ exceeded"</span>);
226 <a name="l00217"></a>00217                 <a class="code" href="globals_8h.html#WriteOpers_28char_20_2Atext_2C_2E_2E_2E_29">WriteOpers</a>(<span class="stringliteral">"*** User %s RecvQ of %d exceeds connect class maximum of %d"</span>,this-&gt;nick,<a class="code" href="classuserrec.html#recvq">recvq</a>.length(),this-&gt;<a class="code" href="classuserrec.html#recvqmax">recvqmax</a>);
227 <a name="l00218"></a>00218         }
228 <a name="l00219"></a>00219         <span class="comment">// return false if we've had more than 600 characters WITHOUT</span>
229 <a name="l00220"></a>00220         <span class="comment">// a carriage return (this is BAD, drop the socket)</span>
230 <a name="l00221"></a>00221         <span class="keywordflow">return</span> (i &lt; 600);
231 <a name="l00222"></a>00222 }
232 <a name="l00223"></a>00223 
233 <a name="l00224"></a><a class="code" href="classuserrec.html#BufferIsReady_28_29">00224</a> <span class="keywordtype">bool</span> <a class="code" href="classuserrec.html#BufferIsReady_28_29">userrec::BufferIsReady</a>()
234 <a name="l00225"></a>00225 {
235 <a name="l00226"></a>00226         <span class="keywordflow">for</span> (<span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> i = 0; i &lt; <a class="code" href="classuserrec.html#recvq">recvq</a>.length(); i++)
236 <a name="l00227"></a>00227                 <span class="keywordflow">if</span> (<a class="code" href="classuserrec.html#recvq">recvq</a>[i] == <span class="charliteral">'\n'</span>)
237 <a name="l00228"></a>00228                         <span class="keywordflow">return</span> <span class="keyword">true</span>;
238 <a name="l00229"></a>00229         <span class="keywordflow">return</span> <span class="keyword">false</span>;
239 <a name="l00230"></a>00230 }
240 <a name="l00231"></a>00231 
241 <a name="l00232"></a><a class="code" href="classuserrec.html#ClearBuffer_28_29">00232</a> <span class="keywordtype">void</span> <a class="code" href="classuserrec.html#ClearBuffer_28_29">userrec::ClearBuffer</a>()
242 <a name="l00233"></a>00233 {
243 <a name="l00234"></a>00234         <a class="code" href="classuserrec.html#recvq">recvq</a> = <span class="stringliteral">""</span>;
244 <a name="l00235"></a>00235 }
245 <a name="l00236"></a>00236 
246 <a name="l00237"></a><a class="code" href="classuserrec.html#GetBuffer_28_29">00237</a> <a class="code" href="namespaceirc.html#string">std::string</a> <a class="code" href="classuserrec.html#GetBuffer_28_29">userrec::GetBuffer</a>()
247 <a name="l00238"></a>00238 {
248 <a name="l00239"></a>00239         <span class="keywordflow">if</span> (<a class="code" href="classuserrec.html#recvq">recvq</a> == <span class="stringliteral">""</span>)
249 <a name="l00240"></a>00240                 <span class="keywordflow">return</span> <span class="stringliteral">""</span>;
250 <a name="l00241"></a>00241         <span class="keywordtype">char</span>* line = (<span class="keywordtype">char</span>*)<a class="code" href="classuserrec.html#recvq">recvq</a>.c_str();
251 <a name="l00242"></a>00242         <a class="code" href="namespaceirc.html#string">std::string</a> ret = <span class="stringliteral">""</span>;
252 <a name="l00243"></a>00243         <span class="keywordflow">while</span> ((*line != <span class="charliteral">'\n'</span>) &amp;&amp; (strlen(line)))
253 <a name="l00244"></a>00244         {
254 <a name="l00245"></a>00245                 ret = ret + *line;
255 <a name="l00246"></a>00246                 line++;
256 <a name="l00247"></a>00247         }
257 <a name="l00248"></a>00248         <span class="keywordflow">if</span> ((*line == <span class="charliteral">'\n'</span>) || (*line == <span class="charliteral">'\r'</span>))
258 <a name="l00249"></a>00249                 line++;
259 <a name="l00250"></a>00250         <a class="code" href="classuserrec.html#recvq">recvq</a> = line;
260 <a name="l00251"></a>00251         <span class="keywordflow">return</span> ret;
261 <a name="l00252"></a>00252 }
262 <a name="l00253"></a>00253 
263 <a name="l00254"></a><a class="code" href="classuserrec.html#AddWriteBuf_28std_3A_3Astring_20data_29">00254</a> <span class="keywordtype">void</span> <a class="code" href="classuserrec.html#AddWriteBuf_28std_3A_3Astring_20data_29">userrec::AddWriteBuf</a>(<a class="code" href="namespaceirc.html#string">std::string</a> data)
264 <a name="l00255"></a>00255 {
265 <a name="l00256"></a>00256         <span class="keywordflow">if</span> (this-&gt;GetWriteError() != <span class="stringliteral">""</span>)
266 <a name="l00257"></a>00257                 <span class="keywordflow">return</span>;
267 <a name="l00258"></a>00258         <span class="keywordflow">if</span> (<a class="code" href="classuserrec.html#sendq">sendq</a>.length() + data.length() &gt; (unsigned)this-&gt;<a class="code" href="classuserrec.html#sendqmax">sendqmax</a>)
268 <a name="l00259"></a>00259         {
269 <a name="l00260"></a>00260                 <a class="code" href="globals_8h.html#WriteOpers_28char_20_2Atext_2C_2E_2E_2E_29">WriteOpers</a>(<span class="stringliteral">"*** User %s SendQ of %d exceeds connect class maximum of %d"</span>,this-&gt;nick,<a class="code" href="classuserrec.html#sendq">sendq</a>.length() + data.length(),this-&gt;<a class="code" href="classuserrec.html#sendqmax">sendqmax</a>);
270 <a name="l00261"></a>00261                 this-&gt;<a class="code" href="classuserrec.html#SetWriteError_28std_3A_3Astring_20error_29">SetWriteError</a>(<span class="stringliteral">"SendQ exceeded"</span>);
271 <a name="l00262"></a>00262                 <span class="keywordflow">return</span>;
272 <a name="l00263"></a>00263         }
273 <a name="l00264"></a>00264         std::stringstream stream;
274 <a name="l00265"></a>00265         stream &lt;&lt; <a class="code" href="classuserrec.html#sendq">sendq</a> &lt;&lt; data;
275 <a name="l00266"></a>00266         <a class="code" href="classuserrec.html#sendq">sendq</a> = stream.str();
276 <a name="l00267"></a>00267 }
277 <a name="l00268"></a>00268 
278 <a name="l00269"></a>00269 <span class="comment">// send AS MUCH OF THE USERS SENDQ as we are able to (might not be all of it)</span>
279 <a name="l00270"></a><a class="code" href="classuserrec.html#FlushWriteBuf_28_29">00270</a> <span class="keywordtype">void</span> <a class="code" href="classuserrec.html#FlushWriteBuf_28_29">userrec::FlushWriteBuf</a>()
280 <a name="l00271"></a>00271 {
281 <a name="l00272"></a>00272         <span class="keywordflow">if</span> (<a class="code" href="classuserrec.html#sendq">sendq</a>.length())
282 <a name="l00273"></a>00273         {
283 <a name="l00274"></a>00274                 <span class="keywordtype">char</span>* tb = (<span class="keywordtype">char</span>*)this-&gt;<a class="code" href="classuserrec.html#sendq">sendq</a>.c_str();
284 <a name="l00275"></a>00275                 <span class="keywordtype">int</span> n_sent = write(this-&gt;fd,tb,this-&gt;sendq.length());
285 <a name="l00276"></a>00276                 <span class="keywordflow">if</span> (n_sent == -1)
286 <a name="l00277"></a>00277                 {
287 <a name="l00278"></a>00278                         this-&gt;<a class="code" href="classuserrec.html#SetWriteError_28std_3A_3Astring_20error_29">SetWriteError</a>(strerror(errno));
288 <a name="l00279"></a>00279                 }
289 <a name="l00280"></a>00280                 <span class="keywordflow">else</span>
290 <a name="l00281"></a>00281                 {
291 <a name="l00282"></a>00282                         <span class="comment">// advance the queue</span>
292 <a name="l00283"></a>00283                         tb += n_sent;
293 <a name="l00284"></a>00284                         this-&gt;<a class="code" href="classuserrec.html#sendq">sendq</a> = tb;
294 <a name="l00285"></a>00285                         <span class="comment">// update the user's stats counters</span>
295 <a name="l00286"></a>00286                         this-&gt;<a class="code" href="classconnection.html#bytes_5Fout">bytes_out</a> += n_sent;
296 <a name="l00287"></a>00287                         this-&gt;<a class="code" href="classconnection.html#cmds_5Fout">cmds_out</a>++;
297 <a name="l00288"></a>00288                 }
298 <a name="l00289"></a>00289         }
299 <a name="l00290"></a>00290 }
300 <a name="l00291"></a>00291 
301 <a name="l00292"></a><a class="code" href="classuserrec.html#SetWriteError_28std_3A_3Astring_20error_29">00292</a> <span class="keywordtype">void</span> <a class="code" href="classuserrec.html#SetWriteError_28std_3A_3Astring_20error_29">userrec::SetWriteError</a>(<a class="code" href="namespaceirc.html#string">std::string</a> error)
302 <a name="l00293"></a>00293 {
303 <a name="l00294"></a>00294         <a class="code" href="globals_8h.html#log_28int_20level_2C_20char_20_2Atext_2C_2E_2E_2E_29">log</a>(<a class="code" href="inspircd__io_8h.html#DEBUG">DEBUG</a>,<span class="stringliteral">"Setting error string for %s to '%s'"</span>,this-&gt;nick,error.c_str());
304 <a name="l00295"></a>00295         <span class="comment">// don't try to set the error twice, its already set take the first string.</span>
305 <a name="l00296"></a>00296         <span class="keywordflow">if</span> (this-&gt;WriteError == <span class="stringliteral">""</span>)
306 <a name="l00297"></a>00297                 this-&gt;<a class="code" href="classuserrec.html#WriteError">WriteError</a> = error;
307 <a name="l00298"></a>00298 }
308 <a name="l00299"></a>00299 
309 <a name="l00300"></a><a class="code" href="classuserrec.html#GetWriteError_28_29">00300</a> <a class="code" href="namespaceirc.html#string">std::string</a> <a class="code" href="classuserrec.html#GetWriteError_28_29">userrec::GetWriteError</a>()
310 <a name="l00301"></a>00301 {
311 <a name="l00302"></a>00302         <span class="keywordflow">return</span> this-&gt;<a class="code" href="classuserrec.html#WriteError">WriteError</a>;
312 <a name="l00303"></a>00303 }
313 </pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 14 19:16:12 2005 for InspIRCd by&nbsp;
314 <a href="http://www.doxygen.org/index.html">
315 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.4-20050815 </small></address>
316 </body>
317 </html>