X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fusers.cpp;h=3b02e82b9b0e324625999803c200420f5ee37e30;hb=b83765d756c2568d15b87654963b5237d0482367;hp=baef05e28043a6ee31144eaababf6ba1a6b9b390;hpb=396c9ef9f7a96934d3227bb7d1d091315e3d4fa8;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/users.cpp b/src/users.cpp index baef05e28..3b02e82b9 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -23,24 +23,16 @@ #include #include "inspstring.h" #include "commands.h" -#include "helperfuncs.h" + #include "typedefs.h" #include "socketengine.h" #include "hashcomp.h" -#include "message.h" #include "wildcard.h" #include "xline.h" #include "cull_list.h" -extern std::vector modules; -extern std::vector factory; -extern int MODCOUNT; -extern time_t TIME; -extern Server* MyServer; - irc::whowas::whowas_users whowas; static unsigned long already_sent[MAX_DESCRIPTORS] = {0}; -std::vector all_opers; typedef std::map opertype_t; typedef opertype_t operclass_t; @@ -81,7 +73,7 @@ bool DoType(ServerConfig* conf, const char* tag, char** entries, void** values, char* Classes = (char*)values[1]; opertypes[TypeName] = strdup(Classes); - log(DEBUG,"Read oper TYPE '%s' with classes '%s'",TypeName,Classes); + conf->GetInstance()->Log(DEBUG,"Read oper TYPE '%s' with classes '%s'",TypeName,Classes); return true; } @@ -91,7 +83,7 @@ bool DoClass(ServerConfig* conf, const char* tag, char** entries, void** values, char* CommandList = (char*)values[1]; operclass[ClassName] = strdup(CommandList); - log(DEBUG,"Read oper CLASS '%s' with commands '%s'",ClassName,CommandList); + conf->GetInstance()->Log(DEBUG,"Read oper CLASS '%s' with commands '%s'",ClassName,CommandList); return true; } @@ -129,16 +121,16 @@ bool userrec::ProcessNoticeMasks(const char *sm) void userrec::StartDNSLookup() { - log(DEBUG,"Commencing reverse lookup"); + ServerInstance->Log(DEBUG,"Commencing reverse lookup"); try { - log(DEBUG,"Passing instance: %08x",this->ServerInstance); + ServerInstance->Log(DEBUG,"Passing instance: %08x",this->ServerInstance); res_reverse = new UserResolver(this->ServerInstance, this, this->GetIPString(), false); - MyServer->AddResolver(res_reverse); + this->ServerInstance->AddResolver(res_reverse); } catch (ModuleException& e) { - log(DEBUG,"Error in resolver: %s",e.GetReason()); + ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason()); } } @@ -146,26 +138,30 @@ UserResolver::UserResolver(InspIRCd* Instance, userrec* user, std::string to_res Resolver(Instance, to_resolve, forward ? DNS_QUERY_FORWARD : DNS_QUERY_REVERSE), bound_user(user) { this->fwd = forward; - this->bound_fd = user->fd; + this->bound_fd = user->GetFd(); } void UserResolver::OnLookupComplete(const std::string &result) { - if ((!this->fwd) && (ServerInstance->fd_ref_table[this->bound_fd] == this->bound_user)) + if ((!this->fwd) && (ServerInstance->SE->GetRef(this->bound_fd) == this->bound_user)) { - log(DEBUG,"Commencing forward lookup"); + ServerInstance->Log(DEBUG,"Commencing forward lookup"); this->bound_user->stored_host = result; try { - bound_user->res_forward = new UserResolver(this->ServerInstance, this->bound_user, result, true); - MyServer->AddResolver(bound_user->res_forward); + /* Check we didnt time out */ + if (this->bound_user->registered != REG_ALL) + { + bound_user->res_forward = new UserResolver(this->ServerInstance, this->bound_user, result, true); + this->ServerInstance->AddResolver(bound_user->res_forward); + } } catch (ModuleException& e) { - log(DEBUG,"Error in resolver: %s",e.GetReason()); + ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason()); } } - else if ((this->fwd) && (ServerInstance->fd_ref_table[this->bound_fd] == this->bound_user)) + else if ((this->fwd) && (ServerInstance->SE->GetRef(this->bound_fd) == this->bound_user)) { /* Both lookups completed */ if (this->bound_user->GetIPString() == result) @@ -173,14 +169,18 @@ void UserResolver::OnLookupComplete(const std::string &result) std::string hostname = this->bound_user->stored_host; if (hostname.length() < 65) { - /* Hostnames starting with : are not a good thing (tm) */ - if (*(hostname.c_str()) == ':') - hostname = "0" + hostname; - - this->bound_user->WriteServ("NOTICE Auth :*** Found your hostname (%s)", hostname.c_str()); - this->bound_user->dns_done = true; - strlcpy(this->bound_user->dhost, hostname.c_str(),64); - strlcpy(this->bound_user->host, hostname.c_str(),64); + /* Check we didnt time out */ + if (this->bound_user->registered != REG_ALL) + { + /* Hostnames starting with : are not a good thing (tm) */ + if (*(hostname.c_str()) == ':') + hostname = "0" + hostname; + + this->bound_user->WriteServ("NOTICE Auth :*** Found your hostname (%s)", hostname.c_str()); + this->bound_user->dns_done = true; + strlcpy(this->bound_user->dhost, hostname.c_str(),64); + strlcpy(this->bound_user->host, hostname.c_str(),64); + } } else { @@ -196,7 +196,7 @@ void UserResolver::OnLookupComplete(const std::string &result) void UserResolver::OnError(ResolverError e, const std::string &errormessage) { - if (ServerInstance->fd_ref_table[this->bound_fd] == this->bound_user) + if (ServerInstance->SE->GetRef(this->bound_fd) == this->bound_user) { /* Error message here */ this->bound_user->WriteServ("NOTICE Auth :*** Could not resolve your hostname, using your IP address (%s) instead.", this->bound_user->GetIPString()); @@ -257,14 +257,15 @@ const char* userrec::FormatModes() userrec::userrec(InspIRCd* Instance) : ServerInstance(Instance) { - log(DEBUG,"userrec::userrec(): Instance: %08x",ServerInstance); + ServerInstance->Log(DEBUG,"userrec::userrec(): Instance: %08x",ServerInstance); // the PROPER way to do it, AVOID bzero at *ALL* costs *password = *nick = *ident = *host = *dhost = *fullname = *awaymsg = *oper = 0; server = (char*)Instance->FindServerNamePtr(Instance->Config->ServerName); - reset_due = TIME; - lines_in = fd = lastping = signon = idle_lastmsg = nping = registered = 0; + reset_due = ServerInstance->Time(); + lines_in = lastping = signon = idle_lastmsg = nping = registered = 0; timeout = flood = bytes_in = bytes_out = cmds_in = cmds_out = 0; haspassed = dns_done = false; + fd = -1; recvq = ""; sendq = ""; WriteError = ""; @@ -409,7 +410,7 @@ void userrec::InviteTo(irc::string &channel) void userrec::RemoveInvite(irc::string &channel) { - log(DEBUG,"Removing invites"); + ServerInstance->Log(DEBUG,"Removing invites"); if (invites.size()) { @@ -477,22 +478,24 @@ bool userrec::HasPermission(const std::string &command) return false; } - -bool userrec::AddBuffer(const std::string &a) +/** NOTE: We cannot pass a const reference to this method. + * The string is changed by the workings of the method, + * so that if we pass const ref, we end up copying it to + * something we can change anyway. Makes sense to just let + * the compiler do that copy for us. + */ +bool userrec::AddBuffer(std::string a) { - std::string b = ""; + std::string::size_type i = a.rfind('\r'); - /* NB: std::string is arsey about \r and \n and tries to translate them - * somehow, so we CANNOT use std::string::find() here :( - */ - for (std::string::const_iterator i = a.begin(); i != a.end(); i++) + while (i != std::string::npos) { - if (*i != '\r') - b += *i; + a.erase(i, 1); + i = a.rfind('\r'); } - if (b.length()) - recvq.append(b); + if (a.length()) + recvq.append(a); if (recvq.length() > (unsigned)this->recvqmax) { @@ -597,11 +600,11 @@ void userrec::FlushWriteBuf() void userrec::SetWriteError(const std::string &error) { - log(DEBUG,"SetWriteError: %s",error.c_str()); + ServerInstance->Log(DEBUG,"SetWriteError: %s",error.c_str()); // don't try to set the error twice, its already set take the first string. if (!this->WriteError.length()) { - log(DEBUG,"Setting error string for %s to '%s'",this->nick,error.c_str()); + ServerInstance->Log(DEBUG,"Setting error string for %s to '%s'",this->nick,error.c_str()); this->WriteError = error; } } @@ -616,9 +619,9 @@ void userrec::Oper(const std::string &opertype) this->modes[UM_OPERATOR] = 1; this->WriteServ("MODE %s :+o", this->nick); FOREACH_MOD(I_OnOper, OnOper(this, opertype)); - log(DEFAULT,"OPER: %s!%s@%s opered as type: %s", this->nick, this->ident, this->host, opertype.c_str()); + ServerInstance->Log(DEFAULT,"OPER: %s!%s@%s opered as type: %s", this->nick, this->ident, this->host, opertype.c_str()); strlcpy(this->oper, opertype.c_str(), NICKMAX - 1); - all_opers.push_back(this); + ServerInstance->all_opers.push_back(this); FOREACH_MOD(I_OnPostOper,OnPostOper(this, opertype)); } @@ -628,12 +631,12 @@ void userrec::UnOper() { *this->oper = 0; this->modes[UM_OPERATOR] = 0; - for (std::vector::iterator a = all_opers.begin(); a < all_opers.end(); a++) + for (std::vector::iterator a = ServerInstance->all_opers.begin(); a < ServerInstance->all_opers.end(); a++) { if (*a == this) { - log(DEBUG,"Oper removed from optimization list"); - all_opers.erase(a); + ServerInstance->Log(DEBUG,"Oper removed from optimization list"); + ServerInstance->all_opers.erase(a); return; } } @@ -684,11 +687,11 @@ void userrec::QuitUser(InspIRCd* Instance, userrec *user,const std::string &quit } catch (ModuleException& modexcept) { - log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); + Instance->Log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); } } - Instance->SE->DelFd(user->fd); + Instance->SE->DelFd(user); user->CloseSocket(); } @@ -709,10 +712,9 @@ void userrec::QuitUser(InspIRCd* Instance, userrec *user,const std::string &quit if (iter != Instance->clientlist.end()) { - log(DEBUG,"deleting user hash value %lx",(unsigned long)user); + Instance->Log(DEBUG,"deleting user hash value %lx",(unsigned long)user); if (IS_LOCAL(user)) { - Instance->fd_ref_table[user->fd] = NULL; if (find(Instance->local_users.begin(),Instance->local_users.end(),user) != Instance->local_users.end()) Instance->local_users.erase(find(Instance->local_users.begin(),Instance->local_users.end(),user)); } @@ -748,14 +750,14 @@ namespace irc } /* every hour, run this function which removes all entries over 3 days */ - void MaintainWhoWas(time_t TIME) + void MaintainWhoWas(time_t t) { for (whowas_users::iterator iter = ::whowas.begin(); iter != ::whowas.end(); iter++) { whowas_set* n = (whowas_set*)iter->second; if (n->size()) { - while ((n->begin() != n->end()) && ((*n->begin())->signon < TIME - 259200)) // 3 days + while ((n->begin() != n->end()) && ((*n->begin())->signon < t - 259200)) // 3 days { WhoWasGroup *a = *(n->begin()); DELETE(a); @@ -820,7 +822,7 @@ void userrec::AddClient(InspIRCd* Instance, int socket, int port, bool iscached, Instance->clientlist.erase(iter); } - log(DEBUG,"AddClient: %d %d %s",socket,port,ipaddr); + Instance->Log(DEBUG,"AddClient: %d %d %s",socket,port,ipaddr); _new = new userrec(Instance); Instance->clientlist[tempnick] = _new; @@ -832,12 +834,12 @@ void userrec::AddClient(InspIRCd* Instance, int socket, int port, bool iscached, strcpy(_new->ident, "unknown"); _new->registered = REG_NONE; - _new->signon = TIME + Instance->Config->dns_timeout; + _new->signon = Instance->Time() + Instance->Config->dns_timeout; _new->lastping = 1; - log(DEBUG,"Setting socket addresses"); + Instance->Log(DEBUG,"Setting socket addresses"); _new->SetSockAddr(AF_FAMILY, ipaddr, port); - log(DEBUG,"Socket addresses set."); + Instance->Log(DEBUG,"Socket addresses set."); /* Smarter than your average bear^H^H^H^Hset of strlcpys. */ for (const char* temp = _new->GetIPString(); *temp && j < 64; temp++, j++) @@ -865,14 +867,13 @@ void userrec::AddClient(InspIRCd* Instance, int socket, int port, bool iscached, } } - _new->nping = TIME + _new->pingmax + Instance->Config->dns_timeout; - _new->timeout = TIME+class_regtimeout; + _new->nping = Instance->Time() + _new->pingmax + Instance->Config->dns_timeout; + _new->timeout = Instance->Time() + class_regtimeout; _new->flood = class_flood; _new->threshold = class_threshold; _new->sendqmax = class_sqmax; _new->recvqmax = class_rqmax; - Instance->fd_ref_table[socket] = _new; Instance->local_users.push_back(_new); if (Instance->local_users.size() > Instance->Config->SoftLimit) @@ -902,10 +903,10 @@ void userrec::AddClient(InspIRCd* Instance, int socket, int port, bool iscached, userrec::QuitUser(Instance, _new,"Server is full"); return; } - char* e = matches_exception(ipaddr); + char* e = Instance->XLines->matches_exception(ipaddr); if (!e) { - char* r = matches_zline(ipaddr); + char* r = Instance->XLines->matches_zline(ipaddr); if (r) { char reason[MAXBUF]; @@ -917,7 +918,7 @@ void userrec::AddClient(InspIRCd* Instance, int socket, int port, bool iscached, if (socket > -1) { - if (!Instance->SE->AddFd(socket,true,X_ESTAB_CLIENT)) + if (!Instance->SE->AddFd(_new)) { userrec::QuitUser(Instance, _new, "Internal error handling connection"); return; @@ -968,7 +969,7 @@ long userrec::LocalCloneCount() void userrec::FullConnect(CullList* Goners) { ServerInstance->stats->statsConnects++; - this->idle_lastmsg = TIME; + this->idle_lastmsg = ServerInstance->Time(); ConnectClass a = this->GetClass(); @@ -999,11 +1000,11 @@ void userrec::FullConnect(CullList* Goners) char match_against[MAXBUF]; snprintf(match_against,MAXBUF,"%s@%s", this->ident, this->host); - char* e = matches_exception(match_against); + char* e = ServerInstance->XLines->matches_exception(match_against); if (!e) { - char* r = matches_gline(match_against); + char* r = ServerInstance->XLines->matches_gline(match_against); if (r) { @@ -1013,7 +1014,7 @@ void userrec::FullConnect(CullList* Goners) return; } - r = matches_kline(match_against); + r = ServerInstance->XLines->matches_kline(match_against); if (r) { @@ -1029,7 +1030,7 @@ void userrec::FullConnect(CullList* Goners) this->WriteServ("001 %s :Welcome to the %s IRC Network %s!%s@%s",this->nick, ServerInstance->Config->Network, this->nick, this->ident, this->host); this->WriteServ("002 %s :Your host is %s, running version %s",this->nick,ServerInstance->Config->ServerName,VERSION); this->WriteServ("003 %s :This server was created %s %s", this->nick, __TIME__, __DATE__); - this->WriteServ("004 %s %s %s %s %s %s", this->nick, ServerInstance->Config->ServerName, VERSION, ServerInstance->ModeGrok->UserModeList().c_str(), ServerInstance->ModeGrok->ChannelModeList().c_str(), ServerInstance->ModeGrok->ParaModeList().c_str()); + this->WriteServ("004 %s %s %s %s %s %s", this->nick, ServerInstance->Config->ServerName, VERSION, ServerInstance->Modes->UserModeList().c_str(), ServerInstance->Modes->ChannelModeList().c_str(), ServerInstance->Modes->ParaModeList().c_str()); // anfl @ #ratbox, efnet reminded me that according to the RFC this cant contain more than 13 tokens per line... // so i'd better split it :) @@ -1052,7 +1053,7 @@ void userrec::FullConnect(CullList* Goners) } } - ShowMOTD(this); + this->ShowMOTD(); /* * fix 3 by brain, move registered = 7 below these so that spurious modes and host @@ -1100,7 +1101,7 @@ bool userrec::ForceNickChange(const char* newnick) return false; } - if (matches_qline(newnick)) + if (ServerInstance->XLines->matches_qline(newnick)) { ServerInstance->stats->statsCollisions++; return false; @@ -1127,7 +1128,7 @@ void userrec::SetSockAddr(int protocol_family, const char* ip, int port) #ifdef SUPPORT_IP6LINKS case AF_INET6: { - log(DEBUG,"Set inet6 protocol address"); + ServerInstance->Log(DEBUG,"Set inet6 protocol address"); sockaddr_in6* sin = new sockaddr_in6; sin->sin6_family = AF_INET6; sin->sin6_port = port; @@ -1138,7 +1139,7 @@ void userrec::SetSockAddr(int protocol_family, const char* ip, int port) #endif case AF_INET: { - log(DEBUG,"Set inet4 protocol address"); + ServerInstance->Log(DEBUG,"Set inet4 protocol address"); sockaddr_in* sin = new sockaddr_in; sin->sin_family = AF_INET; sin->sin_port = port; @@ -1147,7 +1148,7 @@ void userrec::SetSockAddr(int protocol_family, const char* ip, int port) } break; default: - log(DEBUG,"Ut oh, I dont know protocol %d to be set on '%s'!", protocol_family, this->nick); + ServerInstance->Log(DEBUG,"Ut oh, I dont know protocol %d to be set on '%s'!", protocol_family, this->nick); break; } } @@ -1174,7 +1175,7 @@ int userrec::GetPort() } break; default: - log(DEBUG,"Ut oh, '%s' has an unknown protocol family!",this->nick); + ServerInstance->Log(DEBUG,"Ut oh, '%s' has an unknown protocol family!",this->nick); break; } return 0; @@ -1223,7 +1224,7 @@ const char* userrec::GetIPString() } break; default: - log(DEBUG,"Ut oh, '%s' has an unknown protocol family!",this->nick); + ServerInstance->Log(DEBUG,"Ut oh, '%s' has an unknown protocol family!",this->nick); break; } return ""; @@ -1266,37 +1267,41 @@ const char* userrec::GetIPString(char* buf) break; default: - log(DEBUG,"Ut oh, '%s' has an unknown protocol family!",this->nick); + ServerInstance->Log(DEBUG,"Ut oh, '%s' has an unknown protocol family!",this->nick); break; } return ""; } - -void userrec::Write(const std::string &text) +/** NOTE: We cannot pass a const reference to this method. + * The string is changed by the workings of the method, + * so that if we pass const ref, we end up copying it to + * something we can change anyway. Makes sense to just let + * the compiler do that copy for us. + */ +void userrec::Write(std::string text) { if ((this->fd < 0) || (this->fd > MAX_DESCRIPTORS)) return; - std::string crlf = text; - crlf.append("\r\n"); + text.append("\r\n"); if (ServerInstance->Config->GetIOHook(this->GetPort())) { try { - ServerInstance->Config->GetIOHook(this->GetPort())->OnRawSocketWrite(this->fd, crlf.data(), crlf.length()); + ServerInstance->Config->GetIOHook(this->GetPort())->OnRawSocketWrite(this->fd, text.data(), text.length()); } catch (ModuleException& modexcept) { - log(DEBUG,"Module exception caught: %s",modexcept.GetReason()); + ServerInstance->Log(DEBUG,"Module exception caught: %s",modexcept.GetReason()); } } else { - this->AddWriteBuf(crlf); + this->AddWriteBuf(text); } - ServerInstance->stats->statsSent += crlf.length(); + ServerInstance->stats->statsSent += text.length(); } /** Write() @@ -1669,7 +1674,7 @@ std::string userrec::ChannelList(userrec* source) */ if ((source == this) || (*source->oper && ServerInstance->Config->OperSpyWhois) || (((!rec->channel->modes[CM_PRIVATE]) && (!rec->channel->modes[CM_SECRET])) || (rec->channel->HasUser(source)))) { - list.append(cmode(this, rec->channel)).append(rec->channel->name).append(" "); + list.append(rec->channel->GetStatusChar(this)).append(rec->channel->name).append(" "); } } } @@ -1697,12 +1702,12 @@ void userrec::SplitChanList(userrec* dest, const std::string &cl) if(pos == std::string::npos) { - line += cl.substr(start, length - start); + line.append(cl.substr(start, length - start)); break; } else { - line += cl.substr(start, length - start + 1); + line.append(cl.substr(start, length - start + 1)); } } @@ -1720,46 +1725,83 @@ void userrec::SplitChanList(userrec* dest, const std::string &cl) */ ConnectClass& userrec::GetClass() { - for (ClassVector::iterator i = ServerInstance->Config->Classes.begin(); i != ServerInstance->Config->Classes.end(); i++) - { - if ((match(this->GetIPString(),i->host.c_str(),true)) || (match(this->host,i->host.c_str()))) - return *i; - } + for (ClassVector::iterator i = ServerInstance->Config->Classes.begin(); i != ServerInstance->Config->Classes.end(); i++) + { + if ((match(this->GetIPString(),i->host.c_str(),true)) || (match(this->host,i->host.c_str()))) + return *i; + } - return *(ServerInstance->Config->Classes.begin()); + return *(ServerInstance->Config->Classes.begin()); } void userrec::PurgeEmptyChannels() { - std::vector to_delete; - - // firstly decrement the count on each channel - for (std::vector::iterator f = this->chans.begin(); f != this->chans.end(); f++) - { - ucrec* uc = *f; - if (uc->channel) - { - if (uc->channel->DelUser(this) == 0) - { - /* No users left in here, mark it for deletion */ - to_delete.push_back(uc->channel); - uc->channel = NULL; - } - } - } - - for (std::vector::iterator n = to_delete.begin(); n != to_delete.end(); n++) - { - chanrec* thischan = *n; - chan_hash::iterator i2 = ServerInstance->chanlist.find(thischan->name); - if (i2 != ServerInstance->chanlist.end()) - { - FOREACH_MOD(I_OnChannelDelete,OnChannelDelete(i2->second)); - DELETE(i2->second); - ServerInstance->chanlist.erase(i2); - } - } - - this->UnOper(); + std::vector to_delete; + + // firstly decrement the count on each channel + for (std::vector::iterator f = this->chans.begin(); f != this->chans.end(); f++) + { + ucrec* uc = *f; + if (uc->channel) + { + uc->channel->RemoveAllPrefixes(this); + if (uc->channel->DelUser(this) == 0) + { + /* No users left in here, mark it for deletion */ + to_delete.push_back(uc->channel); + uc->channel = NULL; + } + } + } + + for (std::vector::iterator n = to_delete.begin(); n != to_delete.end(); n++) + { + chanrec* thischan = *n; + chan_hash::iterator i2 = ServerInstance->chanlist.find(thischan->name); + if (i2 != ServerInstance->chanlist.end()) + { + FOREACH_MOD(I_OnChannelDelete,OnChannelDelete(i2->second)); + DELETE(i2->second); + ServerInstance->chanlist.erase(i2); + } + } + + this->UnOper(); +} + +void userrec::ShowMOTD() +{ + if (!ServerInstance->Config->MOTD.size()) + { + this->WriteServ("422 %s :Message of the day file is missing.",this->nick); + return; + } + this->WriteServ("375 %s :%s message of the day", this->nick, ServerInstance->Config->ServerName); + + for (unsigned int i = 0; i < ServerInstance->Config->MOTD.size(); i++) + this->WriteServ("372 %s :- %s",this->nick,ServerInstance->Config->MOTD[i].c_str()); + + this->WriteServ("376 %s :End of message of the day.", this->nick); +} + +void userrec::ShowRULES() +{ + if (!ServerInstance->Config->RULES.size()) + { + this->WriteServ("NOTICE %s :Rules file is missing.",this->nick); + return; + } + this->WriteServ("NOTICE %s :%s rules",this->nick,ServerInstance->Config->ServerName); + + for (unsigned int i = 0; i < ServerInstance->Config->RULES.size(); i++) + this->WriteServ("NOTICE %s :%s",this->nick,ServerInstance->Config->RULES[i].c_str()); + + this->WriteServ("NOTICE %s :End of %s rules.",this->nick,ServerInstance->Config->ServerName); +} + +void userrec::HandleEvent(EventType et) +{ + /* WARNING: May delete this user! */ + ServerInstance->ProcessUser(this); }