diff options
author | Sadie Powell <sadie@witchery.services> | 2025-05-09 14:17:55 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-05-09 14:17:55 +0100 |
commit | 459f3d07c999a0d55555d10139758e586d891f64 (patch) | |
tree | f42933cfa978d8b146cf9f9470e98a24dddbb4ee /modules | |
parent | b76b407b33973bf1ac00a842b5b325fb8e378170 (diff) |
Add TLS usage to the anope.user RPC event.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/rpc/rpc_data.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/rpc/rpc_data.cpp b/modules/rpc/rpc_data.cpp index bfc1fa565..1e8f990b0 100644 --- a/modules/rpc/rpc_data.cpp +++ b/modules/rpc/rpc_data.cpp @@ -489,7 +489,8 @@ public: .Reply("nickchanged", u->timestamp) .Reply("real", u->realname) .Reply("server", u->server->GetName()) - .Reply("signon", u->signon); + .Reply("signon", u->signon) + .Reply("tls", u->IsSecurelyConnected()); if (u->IsIdentified()) { |