From a12d4e56d7db6bcb0f84a26b930ab745ffdd427a Mon Sep 17 00:00:00 2001 From: thiagoftsm Date: Tue, 31 Mar 2020 22:53:32 +0000 Subject: Extend TLS Support (#8505) * tls13: This commit brings TLS 1.3 to Netdata * tls13: Update variables on slave side * tls13: Fix compilation error for old libraries * tls13: Fix compilation error for old libraries 2 * tls13 remove ciphers * tls13: TLS versions This commit brings the missing tls versions accpeted for Netdata and it also brings documentation update related to these versions * tls13: Remove dupplication This commit removes wrong dupplication of code * tls13: Documentation This commit brings fix for the documentation * tls13: Remove magic number This commit removes the magic number to allow the code to be readable * tls13: TLS version Small adjust with TLS version * tls13: Security Init This commit removes array from the function and overwrite the magic number with a string * tls13: Remove new variable name from stream * tls13: OpenSSL versions and old key name This commit removes the new key names and also update the names used to define openssl version --- streaming/rrdpush.c | 1 + 1 file changed, 1 insertion(+) (limited to 'streaming') diff --git a/streaming/rrdpush.c b/streaming/rrdpush.c index 0afe233531..d99a2be19d 100644 --- a/streaming/rrdpush.c +++ b/streaming/rrdpush.c @@ -109,6 +109,7 @@ int rrdpush_init() { } char *invalid_certificate = appconfig_get(&stream_config, CONFIG_SECTION_STREAM, "ssl skip certificate verification", "no"); + if ( !strcmp(invalid_certificate,"yes")){ if (netdata_validate_server == NETDATA_SSL_VALID_CERTIFICATE){ info("Netdata is configured to accept invalid SSL certificate."); -- cgit v1.2.3