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
Compare Revisions
4e2ce944e983bfbf7d23210a2bfb4a60d5d56dcc...90a4a59f81a0ee01098e2c27463a85edd123db11
Commits (2)
WHOIS now shows if the user is connected via SSL
· e5e83889
Randy Sommerfeld
authored
May 25, 2021
e5e83889
Merge branch 'master' of gitlab.synchro.net:main/sbbs
· 90a4a59f
Randy Sommerfeld
authored
May 25, 2021
90a4a59f
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 @
90a4a59f
...
...
@@ -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
,
...
...