ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_stats.c
(Generate patch)

Comparing ircd-hybrid/trunk/modules/m_stats.c (file contents):
Revision 9156 by michael, Wed Jan 1 09:58:45 2020 UTC vs.
Revision 9157 by michael, Mon Jan 13 14:56:38 2020 UTC

# Line 266 | Line 266 | stats_connect(struct Client *source_p, i
266  
267      if (IsConfAllowAutoConn(conf))
268        *p++ = 'A';
269 <    if (IsConfSSL(conf))
269 >    if (IsConfTLS(conf))
270        *p++ = 'S';
271      if (p == buf)
272        *p++ = '*';
# Line 962 | Line 962 | show_ports(struct Client *source_p)
962  
963      if (listener->flags & LISTENER_SERVER)
964        *p++ = 'S';
965 <    if (listener->flags & LISTENER_SSL)
966 <      *p++ = 's';
965 >    if (listener->flags & LISTENER_TLS)
966 >      *p++ = 'T';
967      *p = '\0';
968  
969      if (HasUMode(source_p, UMODE_ADMIN) && ConfigServerHide.hide_server_ips == 0)

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)