summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-05-09 14:17:55 +0100
committerSadie Powell <sadie@witchery.services>2025-05-09 14:17:55 +0100
commit459f3d07c999a0d55555d10139758e586d891f64 (patch)
treef42933cfa978d8b146cf9f9470e98a24dddbb4ee /docs
parentb76b407b33973bf1ac00a842b5b325fb8e378170 (diff)
Add TLS usage to the anope.user RPC event.
Diffstat (limited to 'docs')
-rw-r--r--docs/RPC/rpc_data.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/RPC/rpc_data.md b/docs/RPC/rpc_data.md
index 03bc9fa0b..aa31fdd6d 100644
--- a/docs/RPC/rpc_data.md
+++ b/docs/RPC/rpc_data.md
@@ -425,6 +425,7 @@ nickchanged | int | The time at which the user last changed thei
real | string | The real name of the user.
server | string | The server that the user is connected to.
signon | int | The time at which the user connected to the network.
+tls | bool | Whether the user is connected using TLS (SSL).
uid | string or null | The unique immutable identifier of the user or null if the IRCd does not use UIDs.
vhost | string or null | The virtual host of the user or null if they have no vhost.
vident | string or null | The virtual ident (username) of the user or null if they have no vident.
@@ -451,6 +452,7 @@ vident | string or null | The virtual ident (username) of the user or
"real": "An IRC User",
"server": "irc.example.com",
"signon": 1740408296,
+ "tls": true,
"vhost": "staff.example.com",
"vident": null,
}