mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 04:16:38 +02:00
core: replace SSL by TLS in comments (issue #1903)
This commit is contained in:
@@ -57,7 +57,7 @@ struct t_hook_connect
|
||||
int ipv6; /* use IPv6 */
|
||||
int sock; /* socket (set when connected) */
|
||||
int retry; /* retry count */
|
||||
gnutls_session_t *gnutls_sess; /* GnuTLS session (SSL connection) */
|
||||
gnutls_session_t *gnutls_sess; /* GnuTLS session (TLS connection) */
|
||||
gnutls_callback_t *gnutls_cb; /* GnuTLS callback during handshake */
|
||||
int gnutls_dhkey_size; /* Diffie Hellman Key Exchange size */
|
||||
char *gnutls_priorities; /* GnuTLS priorities */
|
||||
|
||||
@@ -1826,7 +1826,7 @@ network_connect_with_fork (struct t_hook *hook_connect)
|
||||
const char *pos_error;
|
||||
pid_t pid;
|
||||
|
||||
/* initialize GnuTLS if SSL asked */
|
||||
/* initialize GnuTLS if TLS asked */
|
||||
if (HOOK_CONNECT(hook_connect, gnutls_sess))
|
||||
{
|
||||
if (gnutls_init (HOOK_CONNECT(hook_connect, gnutls_sess), GNUTLS_CLIENT) != GNUTLS_E_SUCCESS)
|
||||
|
||||
Reference in New Issue
Block a user