Hallo, >>> handle->options |= SSL_OP_NO_TLSv1;
in 2.8.9 dev branch the code is around line 920 and looks like this
#if OPENSSL_VERSION_NUMBER >= 0x10100000L
SSL_set_min_proto_version(handle, TLS1_1_VERSION);
#else
SSL_set_options(handle, SSL_OP_NO_TLSv1);
#endif
this means "handle" is now treated as an opaque datatype with accessor
functions which is much cleaner than setting members within a struct
directly.
Tschau...Thomas
--
"Do you wanna be a legend or a passing footprint on the sands of time?"
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Lynx-dev mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/lynx-dev
