use CyaSSLv23_client_method() rather than TLSv1_1_client_method() to parallel echoserver.c

This commit is contained in:
John Safranek
2012-07-09 09:50:26 -07:00
parent fe64523480
commit 56d2180cf3

View File

@@ -69,7 +69,7 @@ void echoclient_test(void* args)
#if defined(CYASSL_DTLS)
method = DTLSv1_client_method();
#elif !defined(NO_TLS)
method = TLSv1_2_client_method();
method = CyaSSLv23_client_method();
#else
method = SSLv3_client_method();
#endif