1
0
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:
Sébastien Helleu
2023-04-05 23:54:30 +02:00
parent 9ccdc5aff6
commit ff2f94c12b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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 */
+1 -1
View File
@@ -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)