1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-09 17:43:12 +02:00

Take out labeled-response until it is unbroken (as in: don't load

by default for now). Not a high priority item at the moment.
This commit is contained in:
Bram Matthys
2019-08-13 18:49:18 +02:00
parent 4f4a867b58
commit 4d74ca9d9a
2 changed files with 2 additions and 1 deletions
-1
View File
@@ -206,7 +206,6 @@ loadmodule "plaintext-policy"; /* plaintext-policy announce */
loadmodule "server-time"; /* adds server timestamp to various messages */
loadmodule "sts"; /* strict transport policy (set::tls::sts-policy) */
loadmodule "echo-message"; /* shows clients if their messages are altered/filtered */
loadmodule "labeled-response"; /* help clients with correlating requests to responses (EXPERIMENTAL) */
/*** Other ***/
+2
View File
@@ -75,6 +75,8 @@ MOD_INIT(labeled-response)
HookAdd(modinfo->handle, HOOKTYPE_PRE_COMMAND, 2000000000, lr_pre_command);
HookAdd(modinfo->handle, HOOKTYPE_POST_COMMAND, -2000000000, lr_post_command);
HookAdd(modinfo->handle, HOOKTYPE_PACKET, 0, lr_packet);
config_warn("The labeled-response module is currently broken / in development !!");
return MOD_SUCCESS;
}