@oej commented on this pull request.
> @@ -0,0 +1,196 @@ +#include "cdp_tls.h" + +cfg_option_t methods[] = { + {"TLSv1", .val = TLS_USE_TLSv1}, + {"TLSv1.0", .val = TLS_USE_TLSv1}, + {"TLSv1+", .val = TLS_USE_TLSv1_PLUS}, + {"TLSv1.0+", .val = TLS_USE_TLSv1_PLUS}, + {"TLSv1.1", .val = TLS_USE_TLSv1_1}, + {"TLSv1.1+", .val = TLS_USE_TLSv1_1_PLUS}, + {"TLSv1.2", .val = TLS_USE_TLSv1_2}, + {"TLSv1.2+", .val = TLS_USE_TLSv1_2_PLUS},
TLS 1.3 should be possible
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.