forked from wolfSSL/wolfssl
no DTLS streaming checks
This commit is contained in:
@@ -432,6 +432,11 @@ void client_test(void* args)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (input < 0) {
|
||||||
|
int readErr = CyaSSL_get_error(ssl, 0);
|
||||||
|
if (readErr != SSL_ERROR_WANT_READ)
|
||||||
|
err_sys("CyaSSL_read failed");
|
||||||
|
}
|
||||||
|
|
||||||
if (resumeSession) {
|
if (resumeSession) {
|
||||||
if (doDTLS) {
|
if (doDTLS) {
|
||||||
|
@@ -355,6 +355,12 @@ THREAD_RETURN CYASSL_THREAD server_test(void* args)
|
|||||||
if (idx > 0) {
|
if (idx > 0) {
|
||||||
input[idx] = 0;
|
input[idx] = 0;
|
||||||
printf("Client message: %s\n", input);
|
printf("Client message: %s\n", input);
|
||||||
|
|
||||||
|
}
|
||||||
|
else if (idx < 0) {
|
||||||
|
int readErr = SSL_get_error(ssl, 0);
|
||||||
|
if (readErr != SSL_ERROR_WANT_READ)
|
||||||
|
err_sys("SSL_read failed");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (SSL_write(ssl, msg, sizeof(msg)) != sizeof(msg))
|
if (SSL_write(ssl, msg, sizeof(msg)) != sizeof(msg))
|
||||||
|
@@ -1,19 +1,3 @@
|
|||||||
# server DTLSv1 RC4-SHA
|
|
||||||
-u
|
|
||||||
-l RC4-SHA
|
|
||||||
|
|
||||||
# client DTLSv1 RC4-SHA
|
|
||||||
-u
|
|
||||||
-l RC4-SHA
|
|
||||||
|
|
||||||
# server DTLSv1 RC4-MD5
|
|
||||||
-u
|
|
||||||
-l RC4-MD5
|
|
||||||
|
|
||||||
# client DTLSv1 RC4-MD5
|
|
||||||
-u
|
|
||||||
-l RC4-MD5
|
|
||||||
|
|
||||||
# server DTLSv1 DES-CBC3-SHA
|
# server DTLSv1 DES-CBC3-SHA
|
||||||
-u
|
-u
|
||||||
-l DES-CBC3-SHA
|
-l DES-CBC3-SHA
|
||||||
@@ -54,26 +38,6 @@
|
|||||||
-u
|
-u
|
||||||
-l AES256-SHA256
|
-l AES256-SHA256
|
||||||
|
|
||||||
# server DTLSv1 RC4-SHA NON-BLOCKING
|
|
||||||
-u
|
|
||||||
-l RC4-SHA
|
|
||||||
-N
|
|
||||||
|
|
||||||
# client DTLSv1 RC4-SHA NON-BLOCKING
|
|
||||||
-u
|
|
||||||
-l RC4-SHA
|
|
||||||
-N
|
|
||||||
|
|
||||||
# server DTLSv1 RC4-MD5 NON-BLOCKING
|
|
||||||
-u
|
|
||||||
-l RC4-MD5
|
|
||||||
-N
|
|
||||||
|
|
||||||
# client DTLSv1 RC4-MD5 NON-BLOCKING
|
|
||||||
-u
|
|
||||||
-l RC4-MD5
|
|
||||||
-N
|
|
||||||
|
|
||||||
# server DTLSv1 DES-CBC3-SHA NON-BLOCKING
|
# server DTLSv1 DES-CBC3-SHA NON-BLOCKING
|
||||||
-u
|
-u
|
||||||
-l DES-CBC3-SHA
|
-l DES-CBC3-SHA
|
||||||
|
Reference in New Issue
Block a user