aboutsummaryrefslogtreecommitdiffstats
path: root/include/modules.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-10-29 15:44:01 +0100
committerGravatar Sadie Powell2022-10-29 15:54:59 +0100
commit6fc111ccb6650a67f014977b2e7ebc2fb5b16790 (patch)
treeea56149af9bf3e2226e32385ad6989355266090d /include/modules.h
parentUse User::IsFullyConnected instead of checking for REG_ALL. (diff)
Rename session registration to connection to avoid a semantic conflict.
We previously referred to both session registration and user registration as "registration" which is confusing for users who aren't familiar with how IRC works.
Diffstat (limited to 'include/modules.h')
-rw-r--r--include/modules.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/modules.h b/include/modules.h
index dfb3a70e5..123177372 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -301,7 +301,7 @@ public:
/** Called when before a user quits.
* The details of the exiting user are available to you in the parameter User* user
- * This event is only called when the user is fully registered when they quit. To catch
+ * This event is only called when the user is fully connected when they quit. To catch
* raw disconnections, use the OnUserDisconnect method.
* @param user The user who is quitting
* @param message The user's quit message (as seen by non-opers)
@@ -311,7 +311,7 @@ public:
/** Called when a user quits.
* The details of the exiting user are available to you in the parameter User* user
- * This event is only called when the user is fully registered when they quit. To catch
+ * This event is only called when the user is fully connected when they quit. To catch
* raw disconnections, use the OnUserDisconnect method.
* @param user The user who is quitting
* @param message The user's quit message (as seen by non-opers)
@@ -754,7 +754,7 @@ public:
* If any modules return false for this function, the user is held in the waiting
* state until all modules return true. For example a module which implements ident
* lookups will continue to return false for a user until their ident lookup is completed.
- * Note that the registration timeout for a user overrides these checks, if the registration
+ * Note that the connection timeout for a user overrides these checks, if the connection
* timeout is reached, the user is disconnected even if modules report that the user is
* not ready to connect.
* @param user The user to check