]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands.cpp
Changed the type of struct whowas records are stored in (no need to waste a big heavy...
[user/henk/code/inspircd.git] / src / commands.cpp
index f98ad5eb2ba13835bc33def6be7dd743effdd6df..18329e9b37b15940759ded0605ba86a70474fb5d 100644 (file)
@@ -201,12 +201,13 @@ struct InAddr_HashComp
 typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, StrHashComp> user_hash;
 typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, StrHashComp> chan_hash;
 typedef nspace::hash_map<in_addr,string*, nspace::hash<in_addr>, InAddr_HashComp> address_cache;
+typedef nspace::hash_map<std::string, WhoWasUser*, nspace::hash<string>, StrHashComp> whowas_hash;
 typedef std::deque<command_t> command_table;
 
 
 extern user_hash clientlist;
 extern chan_hash chanlist;
-extern user_hash whowas;
+extern whowas_hash whowas;
 extern command_table cmdlist;
 extern file_cache MOTD;
 extern file_cache RULES;
@@ -473,7 +474,7 @@ void handle_invite(char **parameters, int pcnt, userrec *user)
                }
                else
                {
-                       if (c->inviteonly)
+                       if (c->binarymodes & CM_INVITEONLY)
                        {
                                WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[0]);
                        }
@@ -482,7 +483,7 @@ void handle_invite(char **parameters, int pcnt, userrec *user)
                return;
        }
 
-       if (c->inviteonly)
+       if (c->binarymodes & CM_INVITEONLY)
        {
                if (cstatus(user,c) < STATUS_HOP)
                {
@@ -528,7 +529,7 @@ void handle_topic(char **parameters, int pcnt, userrec *user)
                        Ptr = FindChan(parameters[0]);
                        if (Ptr)
                        {
-                               if (((Ptr) && (!has_channel(user,Ptr))) && (Ptr->secret))
+                               if (((Ptr) && (!has_channel(user,Ptr))) && (Ptr->binarymodes & CM_SECRET))
                                {
                                        WriteServ(user->fd,"442 %s %s :You're not on that channel!",user->nick, Ptr->name);
                                        return;
@@ -562,7 +563,7 @@ void handle_topic(char **parameters, int pcnt, userrec *user)
                                        WriteServ(user->fd,"442 %s %s :You're not on that channel!",user->nick, Ptr->name);
                                        return;
                                }
-                               if ((Ptr->topiclock) && (cstatus(user,Ptr)<STATUS_HOP))
+                               if ((Ptr->binarymodes & CM_TOPICLOCK) && (cstatus(user,Ptr)<STATUS_HOP))
                                {
                                        WriteServ(user->fd,"482 %s %s :You must be at least a half-operator to change modes on this channel", user->nick, Ptr->name);
                                        return;
@@ -616,7 +617,7 @@ void handle_names(char **parameters, int pcnt, userrec *user)
        c = FindChan(parameters[0]);
        if (c)
        {
-                if (((c) && (!has_channel(user,c))) && (c->secret))
+                if (((c) && (!has_channel(user,c))) && (c->binarymodes & CM_SECRET))
                 {
                       WriteServ(user->fd,"442 %s %s :You're not on that channel!",user->nick, c->name);
                       return;
@@ -644,12 +645,12 @@ void handle_privmsg(char **parameters, int pcnt, userrec *user)
                chan = FindChan(parameters[0]);
                if (chan)
                {
-                       if ((chan->noexternal) && (!has_channel(user,chan)))
+                       if ((chan->binarymodes & CM_NOEXTERNAL) && (!has_channel(user,chan)))
                        {
                                WriteServ(user->fd,"404 %s %s :Cannot send to channel (no external messages)", user->nick, chan->name);
                                return;
                        }
-                       if ((chan->moderated) && (cstatus(user,chan)<STATUS_VOICE))
+                       if ((chan->binarymodes & CM_MODERATED) && (cstatus(user,chan)<STATUS_VOICE))
                        {
                                WriteServ(user->fd,"404 %s %s :Cannot send to channel (+m)", user->nick, chan->name);
                                return;
@@ -738,12 +739,12 @@ void handle_notice(char **parameters, int pcnt, userrec *user)
                chan = FindChan(parameters[0]);
                if (chan)
                {
-                       if ((chan->noexternal) && (!has_channel(user,chan)))
+                       if ((chan->binarymodes & CM_NOEXTERNAL) && (!has_channel(user,chan)))
                        {
                                WriteServ(user->fd,"404 %s %s :Cannot send to channel (no external messages)", user->nick, chan->name);
                                return;
                        }
-                       if ((chan->moderated) && (cstatus(user,chan)<STATUS_VOICE))
+                       if ((chan->binarymodes & CM_MODERATED) && (cstatus(user,chan)<STATUS_VOICE))
                        {
                                WriteServ(user->fd,"404 %s %s :Cannot send to channel (+m)", user->nick, chan->name);
                                return;
@@ -1121,7 +1122,7 @@ void handle_list(char **parameters, int pcnt, userrec *user)
        for (chan_hash::const_iterator i = chanlist.begin(); i != chanlist.end(); i++)
        {
                // if the channel is not private/secret, OR the user is on the channel anyway
-               if (((!i->second->c_private) && (!i->second->secret)) || (has_channel(user,i->second)))
+               if (((!(i->second->binarymodes & CM_PRIVATE)) && (!(i->second->binarymodes & CM_SECRET))) || (has_channel(user,i->second)))
                {
                        WriteServ(user->fd,"322 %s %s %d :[+%s] %s",user->nick,i->second->name,usercount_i(i->second),chanmodes(i->second),i->second->topic);
                }
@@ -1264,7 +1265,7 @@ void handle_away(char **parameters, int pcnt, userrec *user)
 
 void handle_whowas(char **parameters, int pcnt, userrec* user)
 {
-       user_hash::iterator i = whowas.find(parameters[0]);
+       whowas_hash::iterator i = whowas.find(parameters[0]);
 
        if (i == whowas.end())
        {
@@ -2421,7 +2422,7 @@ void handle_N(char token,char* params,serverrec* source,serverrec* reply, char*
        strlcpy(clientlist[nick]->server, server,256);
        strlcpy(clientlist[nick]->ident, ident,10); // +1 char to compensate for tilde
        strlcpy(clientlist[nick]->fullname, gecos,128);
-       strlcpy(clientlist[nick]->ip,ipaddr,32);
+       strlcpy(clientlist[nick]->ip,ipaddr,16);
        clientlist[nick]->signon = TS;
        clientlist[nick]->nping = 0; // this is ignored for a remote user anyway.
        clientlist[nick]->lastping = 1;