ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/src/user.c
(Generate patch)

Comparing ircd-hybrid/branches/8.2.x/src/user.c (file contents):
Revision 9155 by michael, Sat Jan 4 15:16:39 2020 UTC vs.
Revision 9156 by michael, Mon Jan 13 14:51:47 2020 UTC

# Line 64 | Line 64 | const struct user_modes  umode_tab[] =
64    { 'H', UMODE_HIDDEN       },
65    { 'X', UMODE_EXPIRATION   },
66    { 'R', UMODE_REGONLY      },
67 <  { 'S', UMODE_SSL          },
67 >  { 'S', UMODE_SECURE       },
68    { 'W', UMODE_WEBIRC       },
69    { 'a', UMODE_ADMIN        },
70    { 'b', UMODE_BOTS         },
# Line 257 | Line 257 | user_welcome(struct Client *client_p)
257   {
258    static const char built_date[] = __DATE__ " at " __TIME__;
259  
260 <  if (HasFlag(client_p, FLAGS_SSL))
260 >  if (HasFlag(client_p, FLAGS_TLS))
261    {
262 <    AddUMode(client_p, UMODE_SSL);
262 >    AddUMode(client_p, UMODE_SECURE);
263      sendto_one_notice(client_p, &me, ":*** Connected securely via %s",
264 <                      tls_get_cipher(&client_p->connection->fd->ssl));
264 >                      tls_get_cipher(&client_p->connection->fd->tls));
265    }
266  
267    sendto_one_numeric(client_p, &me, RPL_WELCOME, ConfigServerInfo.network_name,

Diff Legend

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