Hello, I am working on a custom client/server C applications and I would like to support: SSLv3, and TLSv1, TLSv1.1 or TLS v1.2 on server side (because I need to support older clients too) and just TLSv1.1 or TLS v1.2 on client side.
Actually I am just using: SSL_CTX_new(SSLv3_server_method()) on server and: SSL_CTX_new(SSLv3_client_method()) on client I think I should use the SSL_CTX_set_options but It's not clear to me how to just support the above protocols. Any help? -- Marco Bambini