Hi, The application I am working on should not support TLS 1.1 and above protocols. I am using SSL_CTX_set_options( ctx, SSL_OP_NO_TLSv1_1); to disable the same after creating the SSL context. But it doesn't seem to disable the TLS1.1 and TLS1.2 protocols
Code Snippet: SSL_CTX *c = SSL_CTX_new(SSLv23_method()); SSL_CTX_set_options( c, SSL_OP_NO_TLSv1_1); Can someone please let me know if I am missing anything? Santhosh