summaryrefslogtreecommitdiffstats
path: root/apps/include/s_apps.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/include/s_apps.h')
-rw-r--r--apps/include/s_apps.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/include/s_apps.h b/apps/include/s_apps.h
index 33c3b6278c..85eb6dcf36 100644
--- a/apps/include/s_apps.h
+++ b/apps/include/s_apps.h
@@ -16,7 +16,9 @@
#define PROTOCOL "tcp"
#define SSL_VERSION_ALLOWS_RENEGOTIATION(s) \
- (SSL_is_dtls(s) || (SSL_version(s) < TLS1_3_VERSION))
+ ((SSL_is_dtls(s) && (SSL_version(s) > DTLS1_3_VERSION \
+ || SSL_version(s) == DTLS1_BAD_VER)) \
+ || (!SSL_is_dtls(s) && SSL_version(s) < TLS1_3_VERSION))
typedef int (*do_server_cb)(int s, int stype, int prot, unsigned char *context);
void get_sock_info_address(int asock, char **hostname, char **service);