Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Commits
e5e83889
Commit
e5e83889
authored
May 25, 2021
by
Randy Sommerfeld
Browse files
WHOIS now shows if the user is connected via SSL
parent
6beb55ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
exec/load/ircd/core.js
exec/load/ircd/core.js
+6
-0
No files found.
exec/load/ircd/core.js
View file @
e5e83889
...
...
@@ -1106,6 +1106,12 @@ function IRCClient_do_whois(wi) {
));
}
if
(
wi
.
local
)
{
if
(
wi
.
socket
.
ssl_server
)
{
this
.
numeric
(
671
,
format
(
"
%s :is using a secure connection.
"
,
wi
.
nick
));
}
this
.
numeric
(
317
,
format
(
"
%s %s %s :seconds idle, signon time
"
,
wi
.
nick
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment