X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fusers.h;h=5f066cdd4619235e7100daed8742741b2b0f3bb2;hb=28801718521fa1d07af3678d6ec171e4a95ffd19;hp=1eb48c2f08c4fb8b48d7411c358a73ab1d018fdd;hpb=3b9d311e5c104a8aed39fa402228f649c5c4dd7c;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/users.h b/include/users.h index 1eb48c2f0..5f066cdd4 100644 --- a/include/users.h +++ b/include/users.h @@ -456,10 +456,10 @@ class CoreExport User : public EventHandler std::map* AllowedOperCommands; /** Allowed user modes from oper classes. */ - bool* AllowedUserModes; + std::bitset<64> AllowedUserModes; /** Allowed channel modes from oper classes. */ - bool* AllowedChanModes; + std::bitset<64> AllowedChanModes; public: /** Contains a pointer to the connect class a user is on from - this will be NULL for remote connections. @@ -520,7 +520,7 @@ class CoreExport User : public EventHandler */ time_t nping; - /** Stored reverse lookup from res_forward + /** Stored reverse lookup from res_forward. Should not be used after resolution. */ std::string stored_host; @@ -708,9 +708,10 @@ class CoreExport User : public EventHandler User(InspIRCd* Instance, const std::string &uid = ""); /** Check if the user matches a G or K line, and disconnect them if they do. + * @param doZline True if ZLines should be checked (if IP has changed since initial connect) * Returns true if the user matched a ban, false else. */ - bool CheckLines(); + bool CheckLines(bool doZline = false); /** Returns the full displayed host of the user * This member function returns the hostname of the user as seen by other users