diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-06-06 03:15:50 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-06-06 03:15:50 +0200 |
commit | f2febe8ff61766f1b57305fae873071de4526d58 (patch) | |
tree | 7de052ec47e3989f518287d2973c19992278559a /include/usermanager.h | |
parent | eeabdde6fbd99bc0ba5739c65421a9c20b503f72 (diff) |
Move code between usermanager.(cpp|h), clarify comments
Initialize clientlist and uuidlist in UserManager constructor
Diffstat (limited to 'include/usermanager.h')
-rw-r--r-- | include/usermanager.h | 47 |
1 files changed, 22 insertions, 25 deletions
diff --git a/include/usermanager.h b/include/usermanager.h index 86978b3b3..50dac27bf 100644 --- a/include/usermanager.h +++ b/include/usermanager.h @@ -30,19 +30,16 @@ class CoreExport UserManager /** Map of local ip addresses for clone counting */ clonemap local_clones; + public: + /** Constructor, initializes variables and allocates the hashmaps + */ UserManager(); - ~UserManager() - { - for (user_hash::iterator i = clientlist->begin();i != clientlist->end();i++) - { - delete i->second; - } - clientlist->clear(); - delete clientlist; - delete uuidlist; - } + /** Destructor, destroys all users in clientlist and then deallocates + * the hashmaps + */ + ~UserManager(); /** Client list, a hash_map containing all clients, local and remote */ @@ -139,30 +136,30 @@ class CoreExport UserManager */ unsigned long LocalCloneCount(User *user); - /** Return a count of users, unknown and known connections - * @return The number of users + /** Return a count of all global users, unknown and known connections + * @return The number of users on the network, including local unregistered users */ - unsigned int UserCount(); + unsigned int UserCount() const { return this->clientlist->size(); } - /** Return a count of fully registered connections only - * @return The number of registered users + /** Return a count of fully registered connections on the network + * @return The number of registered users on the network */ - unsigned int RegisteredUserCount(); + unsigned int RegisteredUserCount() { return this->clientlist->size() - this->UnregisteredUserCount(); } - /** Return a count of opered (umode +o) users only - * @return The number of opers + /** Return a count of opered (umode +o) users on the network + * @return The number of opers on the network */ - unsigned int OperCount(); + unsigned int OperCount() const { return this->all_opers.size(); } - /** Return a count of unregistered (before NICK/USER) users only - * @return The number of unregistered (unknown) connections + /** Return a count of local unregistered (before NICK/USER) users + * @return The number of local unregistered (unknown) connections */ - unsigned int UnregisteredUserCount(); + unsigned int UnregisteredUserCount() const { return this->unregistered_count; } - /** Return a count of local users on this server only - * @return The number of local users + /** Return a count of local registered users + * @return The number of registered local users */ - unsigned int LocalUserCount(); + unsigned int LocalUserCount() const { return (this->local_count - this->UnregisteredUserCount()); } /** Number of users with a certain mode set on them */ |