X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcommands.cpp;h=4e44003850caef1d6d45963e1fa658b5ed750a8d;hb=21f9acdb6c5c35b26d926f75845135f16c3c54e9;hp=7f74471c8b040c8d26e6b4f913c36ac1aa0e3bcd;hpb=4bbca0643b56f26f73a05462d226b2dd8871626b;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/commands.cpp b/src/commands.cpp index 7f74471c8..4e4400385 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -11,6 +11,8 @@ * --------------------------------------------------- */ +/* $Core: libIRCDcommands */ + #include "inspircd.h" #include "wildcard.h" #include "xline.h" @@ -18,7 +20,7 @@ /* All other ircds when doing this check usually just look for a string of *@* or *. We're smarter than that, though. */ -bool InspIRCd::HostMatchesEveryone(const std::string &mask, userrec* user) +bool InspIRCd::HostMatchesEveryone(const std::string &mask, User* user) { char itrigger[MAXBUF]; long matches = 0; @@ -49,7 +51,7 @@ bool InspIRCd::HostMatchesEveryone(const std::string &mask, userrec* user) return false; } -bool InspIRCd::IPMatchesEveryone(const std::string &ip, userrec* user) +bool InspIRCd::IPMatchesEveryone(const std::string &ip, User* user) { char itrigger[MAXBUF]; long matches = 0; @@ -78,7 +80,7 @@ bool InspIRCd::IPMatchesEveryone(const std::string &ip, userrec* user) return false; } -bool InspIRCd::NickMatchesEveryone(const std::string &nick, userrec* user) +bool InspIRCd::NickMatchesEveryone(const std::string &nick, User* user) { char itrigger[MAXBUF]; long matches = 0;