diff options
| author | 2019-08-09 03:03:34 +0100 | |
|---|---|---|
| committer | 2019-08-09 03:46:23 +0100 | |
| commit | 541c461cca2c734354bd009c530265db2005df58 (patch) | |
| tree | 1b16f93da60050bffa0cc3b45f05ab5728943a8c /src/modules | |
| parent | Fix DNSBL lookups for IPv6. (diff) | |
Fix waitpong referring to registration timeouts as ping timeouts.
If the client does not send a PONG message in time then they will
receive a registration timeout. The client will only receive a ping
timeout in response to a unanswered PING whilst fuilly connected to
the server.
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/m_conn_waitpong.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_conn_waitpong.cpp b/src/modules/m_conn_waitpong.cpp index f2e9590c8..d2de63b3f 100644 --- a/src/modules/m_conn_waitpong.cpp +++ b/src/modules/m_conn_waitpong.cpp @@ -52,7 +52,7 @@ class ModuleWaitPong : public Module } if(sendsnotice) - user->WriteNotice("*** If you are having problems connecting due to ping timeouts, please type /quote PONG " + pingrpl + " or /raw PONG " + pingrpl + " now."); + user->WriteNotice("*** If you are having problems connecting due to registration timeouts type /quote PONG " + pingrpl + " or /raw PONG " + pingrpl + " now."); ext.set(user, pingrpl); return MOD_RES_PASSTHRU; |
