<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> <title>InspIRCd: users.cpp Source File</title> <link href="inspircd.doxygen.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.4.4-20050815 --> <div class="qindex"><a class="qindex" href="main.html">Main Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="namespacemembers.html">Namespace Members</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div> <div class="nav"> <a class="el" href="dir_000000.html">home</a> » <a class="el" href="dir_000001.html">brain</a> » <a class="el" href="dir_000002.html">inspircd-cvs</a> » <a class="el" href="dir_000003.html">inspircd</a> » <a class="el" href="dir_000005.html">src</a></div> <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> <a name="l00002"></a>00002 <span class="comment"> * | Inspire Internet Relay Chat Daemon |</span> <a name="l00003"></a>00003 <span class="comment"> * +------------------------------------+</span> <a name="l00004"></a>00004 <span class="comment"> *</span> <a name="l00005"></a>00005 <span class="comment"> * Inspire is copyright (C) 2002-2004 ChatSpike-Dev.</span> <a name="l00006"></a>00006 <span class="comment"> * E-mail:</span> <a name="l00007"></a>00007 <span class="comment"> * <brain@chatspike.net></span> <a name="l00008"></a>00008 <span class="comment"> * <Craig@chatspike.net></span> <a name="l00009"></a>00009 <span class="comment"> * </span> <a name="l00010"></a>00010 <span class="comment"> * Written by Craig Edwards, Craig McLure, and others.</span> <a name="l00011"></a>00011 <span class="comment"> * This program is free but copyrighted software; see</span> <a name="l00012"></a>00012 <span class="comment"> * the file COPYING for details.</span> <a name="l00013"></a>00013 <span class="comment"> *</span> <a name="l00014"></a>00014 <span class="comment"> * ---------------------------------------------------</span> <a name="l00015"></a>00015 <span class="comment"> */</span> <a name="l00016"></a>00016 <a name="l00017"></a>00017 <span class="keyword">using</span> <span class="keyword">namespace </span>std; <a name="l00018"></a>00018 <a name="l00019"></a>00019 <span class="preprocessor">#include "inspircd_config.h"</span> <a name="l00020"></a>00020 <span class="preprocessor">#include "<a class="code" href="channels_8h.html">channels.h</a>"</span> <a name="l00021"></a>00021 <span class="preprocessor">#include "<a class="code" href="connection_8h.html">connection.h</a>"</span> <a name="l00022"></a>00022 <span class="preprocessor">#include "<a class="code" href="users_8h.html">users.h</a>"</span> <a name="l00023"></a>00023 <span class="preprocessor">#include "<a class="code" href="inspircd_8h.html">inspircd.h</a>"</span> <a name="l00024"></a>00024 <span class="preprocessor">#include <stdio.h></span> <a name="l00025"></a>00025 <span class="preprocessor">#ifdef THREADED_DNS</span> <a name="l00026"></a>00026 <span class="preprocessor"></span><span class="preprocessor">#include <pthread.h></span> <a name="l00027"></a>00027 <span class="preprocessor">#include <signal.h></span> <a name="l00028"></a>00028 <span class="preprocessor">#endif</span> <a name="l00029"></a>00029 <span class="preprocessor"></span><span class="preprocessor">#include "inspstring.h"</span> <a name="l00030"></a>00030 <span class="preprocessor">#include "<a class="code" href="commands_8h.html">commands.h</a>"</span> <a name="l00031"></a>00031 <span class="preprocessor">#include "helperfuncs.h"</span> <a name="l00032"></a>00032 <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>; <a name="l00034"></a>00034 <span class="keyword">extern</span> time_t <a class="code" href="channels_8cpp.html#TIME">TIME</a>; <a name="l00035"></a>00035 <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>() <a name="l00037"></a>00037 { <a name="l00038"></a>00038 <span class="comment">// the PROPER way to do it, AVOID bzero at *ALL* costs</span> <a name="l00039"></a>00039 strcpy(<a class="code" href="classuserrec.html#nick_5BNICKMAX_5D">nick</a>,<span class="stringliteral">""</span>); <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>); <a name="l00041"></a>00041 <a class="code" href="classuserrec.html#timeout">timeout</a> = 0; <a name="l00042"></a>00042 strcpy(<a class="code" href="classuserrec.html#ident_5BIDENTMAX_2B_32_5D">ident</a>,<span class="stringliteral">""</span>); <a name="l00043"></a>00043 strcpy(<a class="code" href="classconnection.html#host_5B_31_36_30_5D">host</a>,<span class="stringliteral">""</span>); <a name="l00044"></a>00044 strcpy(<a class="code" href="classuserrec.html#dhost_5B_31_36_30_5D">dhost</a>,<span class="stringliteral">""</span>); <a name="l00045"></a>00045 strcpy(<a class="code" href="classuserrec.html#fullname_5BMAXGECOS_2B_31_5D">fullname</a>,<span class="stringliteral">""</span>); <a name="l00046"></a>00046 strcpy(<a class="code" href="classuserrec.html#modes_5B_35_34_5D">modes</a>,<span class="stringliteral">""</span>); <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-><a class="code" href="classServerConfig.html#ServerName_5BMAXBUF_5D">ServerName</a>); <a name="l00048"></a>00048 strcpy(<a class="code" href="classuserrec.html#awaymsg_5BMAXAWAY_2B_31_5D">awaymsg</a>,<span class="stringliteral">""</span>); <a name="l00049"></a>00049 strcpy(<a class="code" href="classuserrec.html#oper_5BNICKMAX_5D">oper</a>,<span class="stringliteral">""</span>); <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>; <a name="l00051"></a>00051 <a class="code" href="classuserrec.html#lines_5Fin">lines_in</a> = 0; <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; <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; <a name="l00054"></a>00054 <a class="code" href="classconnection.html#haspassed">haspassed</a> = <span class="keyword">false</span>; <a name="l00055"></a>00055 <a class="code" href="classuserrec.html#dns_5Fdone">dns_done</a> = <span class="keyword">false</span>; <a name="l00056"></a>00056 <a class="code" href="classuserrec.html#recvq">recvq</a> = <span class="stringliteral">""</span>; <a name="l00057"></a>00057 <a class="code" href="classuserrec.html#sendq">sendq</a> = <span class="stringliteral">""</span>; <a name="l00058"></a>00058 <a class="code" href="classuserrec.html#chans">chans</a>.clear(); <a name="l00059"></a>00059 <a class="code" href="classuserrec.html#invites">invites</a>.clear(); <a name="l00060"></a>00060 } <a name="l00061"></a>00061 <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>() <a name="l00063"></a>00063 { <a name="l00064"></a>00064 } <a name="l00065"></a>00065 <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>() <a name="l00067"></a>00067 { <a name="l00068"></a>00068 shutdown(this->fd,2); <a name="l00069"></a>00069 close(this->fd); <a name="l00070"></a>00070 } <a name="l00071"></a>00071 <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>() <a name="l00073"></a>00073 { <a name="l00074"></a>00074 <span class="keyword">static</span> <span class="keywordtype">char</span> result[MAXBUF]; <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>); <a name="l00076"></a>00076 <span class="keywordflow">return</span> result; <a name="l00077"></a>00077 } <a name="l00078"></a>00078 <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) <a name="l00080"></a>00080 { <a name="l00081"></a>00081 <span class="keywordflow">if</span> (this->fd > -1) <a name="l00082"></a>00082 { <a name="l00083"></a>00083 <span class="keywordflow">return</span> read(this->fd, buffer, size); <a name="l00084"></a>00084 } <a name="l00085"></a>00085 <span class="keywordflow">else</span> <span class="keywordflow">return</span> 0; <a name="l00086"></a>00086 } <a name="l00087"></a>00087 <a name="l00088"></a>00088 <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>() <a name="l00090"></a>00090 { <a name="l00091"></a>00091 <span class="keyword">static</span> <span class="keywordtype">char</span> fresult[MAXBUF]; <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>); <a name="l00093"></a>00093 <span class="keywordflow">return</span> fresult; <a name="l00094"></a>00094 } <a name="l00095"></a>00095 <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) <a name="l00097"></a>00097 { <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++) <a name="l00099"></a>00099 { <a name="l00100"></a>00100 <span class="keywordflow">if</span> (i->channel) { <a name="l00101"></a>00101 <span class="keywordflow">if</span> (!strcasecmp(i->channel,channel)) <a name="l00102"></a>00102 { <a name="l00103"></a>00103 <span class="keywordflow">return</span> <span class="keyword">true</span>; <a name="l00104"></a>00104 } <a name="l00105"></a>00105 } <a name="l00106"></a>00106 } <a name="l00107"></a>00107 <span class="keywordflow">return</span> <span class="keyword">false</span>; <a name="l00108"></a>00108 } <a name="l00109"></a>00109 <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>() <a name="l00111"></a>00111 { <a name="l00112"></a>00112 <span class="keywordflow">return</span> &<a class="code" href="classuserrec.html#invites">invites</a>; <a name="l00113"></a>00113 } <a name="l00114"></a>00114 <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) <a name="l00116"></a>00116 { <a name="l00117"></a>00117 <a class="code" href="classInvited.html">Invited</a> i; <a name="l00118"></a>00118 strlcpy(i.<a class="code" href="classInvited.html#channel_5BCHANMAX_5D">channel</a>,channel,CHANMAX); <a name="l00119"></a>00119 <a class="code" href="classuserrec.html#invites">invites</a>.push_back(i); <a name="l00120"></a>00120 } <a name="l00121"></a>00121 <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) <a name="l00123"></a>00123 { <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>); <a name="l00125"></a>00125 <span class="keywordflow">if</span> (channel) <a name="l00126"></a>00126 { <a name="l00127"></a>00127 <span class="keywordflow">if</span> (<a class="code" href="classuserrec.html#invites">invites</a>.size()) <a name="l00128"></a>00128 { <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++) <a name="l00130"></a>00130 { <a name="l00131"></a>00131 <span class="keywordflow">if</span> (i->channel) <a name="l00132"></a>00132 { <a name="l00133"></a>00133 <span class="keywordflow">if</span> (!strcasecmp(i->channel,channel)) <a name="l00134"></a>00134 { <a name="l00135"></a>00135 <a class="code" href="classuserrec.html#invites">invites</a>.erase(i); <a name="l00136"></a>00136 <span class="keywordflow">return</span>; <a name="l00137"></a>00137 } <a name="l00138"></a>00138 } <a name="l00139"></a>00139 } <a name="l00140"></a>00140 } <a name="l00141"></a>00141 } <a name="l00142"></a>00142 } <a name="l00143"></a>00143 <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) <a name="l00145"></a>00145 { <a name="l00146"></a>00146 <span class="keywordtype">char</span> TypeName[MAXBUF],Classes[MAXBUF],ClassName[MAXBUF],CommandList[MAXBUF]; <a name="l00147"></a>00147 <span class="keywordtype">char</span>* mycmd; <a name="l00148"></a>00148 <span class="keywordtype">char</span>* savept; <a name="l00149"></a>00149 <span class="keywordtype">char</span>* savept2; <a name="l00150"></a>00150 <a name="l00151"></a>00151 <span class="comment">// users on u-lined servers can completely bypass</span> <a name="l00152"></a>00152 <span class="comment">// all permissions based checks.</span> <a name="l00153"></a>00153 <span class="comment">//</span> <a name="l00154"></a>00154 <span class="comment">// of course, if this is sent to a remote server and this</span> <a name="l00155"></a>00155 <span class="comment">// server is not ulined there, then that other server</span> <a name="l00156"></a>00156 <span class="comment">// silently drops the command.</span> <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->server)) <a name="l00158"></a>00158 <span class="keywordflow">return</span> <span class="keyword">true</span>; <a name="l00159"></a>00159 <a name="l00160"></a>00160 <span class="comment">// are they even an oper at all?</span> <a name="l00161"></a>00161 <span class="keywordflow">if</span> (strchr(this->modes,<span class="charliteral">'o'</span>)) <a name="l00162"></a>00162 { <a name="l00163"></a>00163 <span class="keywordflow">for</span> (<span class="keywordtype">int</span> j =0; j < Config->ConfValueEnum(<span class="stringliteral">"type"</span>,&Config-><a class="code" href="classServerConfig.html#config_5Ff">config_f</a>); j++) <a name="l00164"></a>00164 { <a name="l00165"></a>00165 Config-><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,&Config-><a class="code" href="classServerConfig.html#config_5Ff">config_f</a>); <a name="l00166"></a>00166 <span class="keywordflow">if</span> (!strcmp(TypeName,this->oper)) <a name="l00167"></a>00167 { <a name="l00168"></a>00168 Config-><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,&Config-><a class="code" href="classServerConfig.html#config_5Ff">config_f</a>); <a name="l00169"></a>00169 <span class="keywordtype">char</span>* myclass = strtok_r(Classes,<span class="stringliteral">" "</span>,&savept); <a name="l00170"></a>00170 <span class="keywordflow">while</span> (myclass) <a name="l00171"></a>00171 { <a name="l00172"></a>00172 <span class="keywordflow">for</span> (<span class="keywordtype">int</span> k =0; k < Config->ConfValueEnum(<span class="stringliteral">"class"</span>,&Config-><a class="code" href="classServerConfig.html#config_5Ff">config_f</a>); k++) <a name="l00173"></a>00173 { <a name="l00174"></a>00174 Config-><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,&Config-><a class="code" href="classServerConfig.html#config_5Ff">config_f</a>); <a name="l00175"></a>00175 <span class="keywordflow">if</span> (!strcmp(ClassName,myclass)) <a name="l00176"></a>00176 { <a name="l00177"></a>00177 Config-><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,&Config-><a class="code" href="classServerConfig.html#config_5Ff">config_f</a>); <a name="l00178"></a>00178 mycmd = strtok_r(CommandList,<span class="stringliteral">" "</span>,&savept2); <a name="l00179"></a>00179 <span class="keywordflow">while</span> (mycmd) <a name="l00180"></a>00180 { <a name="l00181"></a>00181 <span class="keywordflow">if</span> ((!strcasecmp(mycmd,command)) || (*mycmd == <span class="charliteral">'*'</span>)) <a name="l00182"></a>00182 { <a name="l00183"></a>00183 <span class="keywordflow">return</span> <span class="keyword">true</span>; <a name="l00184"></a>00184 } <a name="l00185"></a>00185 mycmd = strtok_r(NULL,<span class="stringliteral">" "</span>,&savept2); <a name="l00186"></a>00186 } <a name="l00187"></a>00187 } <a name="l00188"></a>00188 } <a name="l00189"></a>00189 myclass = strtok_r(NULL,<span class="stringliteral">" "</span>,&savept); <a name="l00190"></a>00190 } <a name="l00191"></a>00191 } <a name="l00192"></a>00192 } <a name="l00193"></a>00193 } <a name="l00194"></a>00194 <span class="keywordflow">return</span> <span class="keyword">false</span>; <a name="l00195"></a>00195 } <a name="l00196"></a>00196 <a name="l00197"></a>00197 <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) <a name="l00199"></a>00199 { <a name="l00200"></a>00200 <a class="code" href="namespaceirc.html#string">std::string</a> b = <span class="stringliteral">""</span>; <a name="l00201"></a>00201 <span class="keywordflow">for</span> (<span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> i = 0; i < a.length(); i++) <a name="l00202"></a>00202 <span class="keywordflow">if</span> ((a[i] != <span class="charliteral">'\r'</span>) && (a[i] != <span class="charliteral">'\0'</span>) && (a[i] != 7)) <a name="l00203"></a>00203 b = b + a[i]; <a name="l00204"></a>00204 std::stringstream stream(<a class="code" href="classuserrec.html#recvq">recvq</a>); <a name="l00205"></a>00205 stream << b; <a name="l00206"></a>00206 <a class="code" href="classuserrec.html#recvq">recvq</a> = stream.str(); <a name="l00207"></a>00207 <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> i = 0; <a name="l00208"></a>00208 <span class="comment">// count the size of the first line in the buffer.</span> <a name="l00209"></a>00209 <span class="keywordflow">while</span> (i < <a class="code" href="classuserrec.html#recvq">recvq</a>.length()) <a name="l00210"></a>00210 { <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>) <a name="l00212"></a>00212 <span class="keywordflow">break</span>; <a name="l00213"></a>00213 } <a name="l00214"></a>00214 <span class="keywordflow">if</span> (<a class="code" href="classuserrec.html#recvq">recvq</a>.length() > (unsigned)this-><a class="code" href="classuserrec.html#recvqmax">recvqmax</a>) <a name="l00215"></a>00215 { <a name="l00216"></a>00216 this-><a class="code" href="classuserrec.html#SetWriteError_28std_3A_3Astring_20error_29">SetWriteError</a>(<span class="stringliteral">"RecvQ exceeded"</span>); <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->nick,<a class="code" href="classuserrec.html#recvq">recvq</a>.length(),this-><a class="code" href="classuserrec.html#recvqmax">recvqmax</a>); <a name="l00218"></a>00218 } <a name="l00219"></a>00219 <span class="comment">// return false if we've had more than 600 characters WITHOUT</span> <a name="l00220"></a>00220 <span class="comment">// a carriage return (this is BAD, drop the socket)</span> <a name="l00221"></a>00221 <span class="keywordflow">return</span> (i < 600); <a name="l00222"></a>00222 } <a name="l00223"></a>00223 <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>() <a name="l00225"></a>00225 { <a name="l00226"></a>00226 <span class="keywordflow">for</span> (<span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> i = 0; i < <a class="code" href="classuserrec.html#recvq">recvq</a>.length(); i++) <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>) <a name="l00228"></a>00228 <span class="keywordflow">return</span> <span class="keyword">true</span>; <a name="l00229"></a>00229 <span class="keywordflow">return</span> <span class="keyword">false</span>; <a name="l00230"></a>00230 } <a name="l00231"></a>00231 <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>() <a name="l00233"></a>00233 { <a name="l00234"></a>00234 <a class="code" href="classuserrec.html#recvq">recvq</a> = <span class="stringliteral">""</span>; <a name="l00235"></a>00235 } <a name="l00236"></a>00236 <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>() <a name="l00238"></a>00238 { <a name="l00239"></a>00239 <span class="keywordflow">if</span> (<a class="code" href="classuserrec.html#recvq">recvq</a> == <span class="stringliteral">""</span>) <a name="l00240"></a>00240 <span class="keywordflow">return</span> <span class="stringliteral">""</span>; <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(); <a name="l00242"></a>00242 <a class="code" href="namespaceirc.html#string">std::string</a> ret = <span class="stringliteral">""</span>; <a name="l00243"></a>00243 <span class="keywordflow">while</span> ((*line != <span class="charliteral">'\n'</span>) && (strlen(line))) <a name="l00244"></a>00244 { <a name="l00245"></a>00245 ret = ret + *line; <a name="l00246"></a>00246 line++; <a name="l00247"></a>00247 } <a name="l00248"></a>00248 <span class="keywordflow">if</span> ((*line == <span class="charliteral">'\n'</span>) || (*line == <span class="charliteral">'\r'</span>)) <a name="l00249"></a>00249 line++; <a name="l00250"></a>00250 <a class="code" href="classuserrec.html#recvq">recvq</a> = line; <a name="l00251"></a>00251 <span class="keywordflow">return</span> ret; <a name="l00252"></a>00252 } <a name="l00253"></a>00253 <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) <a name="l00255"></a>00255 { <a name="l00256"></a>00256 <span class="keywordflow">if</span> (this->GetWriteError() != <span class="stringliteral">""</span>) <a name="l00257"></a>00257 <span class="keywordflow">return</span>; <a name="l00258"></a>00258 <span class="keywordflow">if</span> (<a class="code" href="classuserrec.html#sendq">sendq</a>.length() + data.length() > (unsigned)this-><a class="code" href="classuserrec.html#sendqmax">sendqmax</a>) <a name="l00259"></a>00259 { <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->nick,<a class="code" href="classuserrec.html#sendq">sendq</a>.length() + data.length(),this-><a class="code" href="classuserrec.html#sendqmax">sendqmax</a>); <a name="l00261"></a>00261 this-><a class="code" href="classuserrec.html#SetWriteError_28std_3A_3Astring_20error_29">SetWriteError</a>(<span class="stringliteral">"SendQ exceeded"</span>); <a name="l00262"></a>00262 <span class="keywordflow">return</span>; <a name="l00263"></a>00263 } <a name="l00264"></a>00264 std::stringstream stream; <a name="l00265"></a>00265 stream << <a class="code" href="classuserrec.html#sendq">sendq</a> << data; <a name="l00266"></a>00266 <a class="code" href="classuserrec.html#sendq">sendq</a> = stream.str(); <a name="l00267"></a>00267 } <a name="l00268"></a>00268 <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> <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>() <a name="l00271"></a>00271 { <a name="l00272"></a>00272 <span class="keywordflow">if</span> (<a class="code" href="classuserrec.html#sendq">sendq</a>.length()) <a name="l00273"></a>00273 { <a name="l00274"></a>00274 <span class="keywordtype">char</span>* tb = (<span class="keywordtype">char</span>*)this-><a class="code" href="classuserrec.html#sendq">sendq</a>.c_str(); <a name="l00275"></a>00275 <span class="keywordtype">int</span> n_sent = write(this->fd,tb,this->sendq.length()); <a name="l00276"></a>00276 <span class="keywordflow">if</span> (n_sent == -1) <a name="l00277"></a>00277 { <a name="l00278"></a>00278 this-><a class="code" href="classuserrec.html#SetWriteError_28std_3A_3Astring_20error_29">SetWriteError</a>(strerror(errno)); <a name="l00279"></a>00279 } <a name="l00280"></a>00280 <span class="keywordflow">else</span> <a name="l00281"></a>00281 { <a name="l00282"></a>00282 <span class="comment">// advance the queue</span> <a name="l00283"></a>00283 tb += n_sent; <a name="l00284"></a>00284 this-><a class="code" href="classuserrec.html#sendq">sendq</a> = tb; <a name="l00285"></a>00285 <span class="comment">// update the user's stats counters</span> <a name="l00286"></a>00286 this-><a class="code" href="classconnection.html#bytes_5Fout">bytes_out</a> += n_sent; <a name="l00287"></a>00287 this-><a class="code" href="classconnection.html#cmds_5Fout">cmds_out</a>++; <a name="l00288"></a>00288 } <a name="l00289"></a>00289 } <a name="l00290"></a>00290 } <a name="l00291"></a>00291 <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) <a name="l00293"></a>00293 { <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->nick,error.c_str()); <a name="l00295"></a>00295 <span class="comment">// don't try to set the error twice, its already set take the first string.</span> <a name="l00296"></a>00296 <span class="keywordflow">if</span> (this->WriteError == <span class="stringliteral">""</span>) <a name="l00297"></a>00297 this-><a class="code" href="classuserrec.html#WriteError">WriteError</a> = error; <a name="l00298"></a>00298 } <a name="l00299"></a>00299 <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>() <a name="l00301"></a>00301 { <a name="l00302"></a>00302 <span class="keywordflow">return</span> this-><a class="code" href="classuserrec.html#WriteError">WriteError</a>; <a name="l00303"></a>00303 } </pre></div><hr size="1"><address style="align: right;"><small>Generated on Thu Dec 15 11:14:14 2005 for InspIRCd by <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.4-20050815 </small></address> </body> </html>