summaryrefslogtreecommitdiff
path: root/include/cull_list.h
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-15 20:59:05 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-15 20:59:05 +0000
commitb57c7f4e466f72fdd2ac3deca42caa1ea7748338 (patch)
tree3cbfe66354be62ddd22d7614e9d6116f465e807b /include/cull_list.h
parent694e307c09334c21aaf1a6c3f0b7b6d95440dd3e (diff)
In the grand tradition of huge fucking commits:
- chanrec -> Channel - userrec -> User Enjoy. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8204 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/cull_list.h')
-rw-r--r--include/cull_list.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/cull_list.h b/include/cull_list.h
index 129f0d43d..c5daab5dd 100644
--- a/include/cull_list.h
+++ b/include/cull_list.h
@@ -35,7 +35,7 @@ class CoreExport CullItem : public classbase
/** Holds a pointer to the user,
* must be valid and can be a local or remote user.
*/
- userrec* user;
+ User* user;
/** Holds the quit reason to use for this user.
*/
std::string reason;
@@ -53,7 +53,7 @@ class CoreExport CullItem : public classbase
* @param r The quit reason of the added user
* @param ro The quit reason to show to opers only
*/
- CullItem(userrec* u, std::string &r, const char* ro = "");
+ CullItem(User* u, std::string &r, const char* ro = "");
/** Constrcutor.
* Initializes the CullItem with a user pointer
* and their quit reason
@@ -61,7 +61,7 @@ class CoreExport CullItem : public classbase
* @param r The quit reason of the added user
* @param ro The quit reason to show to opers only
*/
- CullItem(userrec* u, const char* r, const char* ro = "");
+ CullItem(User* u, const char* r, const char* ro = "");
/** Make the quit silent a module is dealing with
* displaying this users quit, so we shouldn't
@@ -80,7 +80,7 @@ class CoreExport CullItem : public classbase
/** Returns a pointer to the user
*/
- userrec* GetUser();
+ User* GetUser();
/** Returns the user's quit reason
*/
std::string& GetReason();
@@ -111,7 +111,7 @@ class CoreExport CullList : public classbase
/** Holds a list of users already added for quick lookup
*/
- std::map<userrec*, userrec*> exempt;
+ std::map<User*, User*> exempt;
/** Holds a list of users being quit.
* See the information for CullItem for
@@ -133,7 +133,7 @@ class CoreExport CullList : public classbase
* @param reason The quit reason of the user being added
* @param o_reason The quit reason to show only to opers
*/
- void AddItem(userrec* user, std::string &reason, const char* o_reason = "");
+ void AddItem(User* user, std::string &reason, const char* o_reason = "");
/** Adds a user to the cull list for later
* removal via QUIT.
@@ -141,11 +141,11 @@ class CoreExport CullList : public classbase
* @param reason The quit reason of the user being added
* @param o_reason The quit reason to show only to opers
*/
- void AddItem(userrec* user, const char* reason, const char* o_reason = "");
+ void AddItem(User* user, const char* reason, const char* o_reason = "");
/* Turn an item into a silent item (don't send out QUIT for this user)
*/
- void MakeSilent(userrec* user);
+ void MakeSilent(User* user);
/** Applies the cull list, quitting all the users
* on the list with their quit reasons all at once.