summaryrefslogtreecommitdiffstats
path: root/apps/s_client.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-26 16:46:49 +0000
committerMatt Caswell <matt@openssl.org>2015-01-27 14:28:41 +0000
commitf4002412518703d07fee321d4c88ee0bbe1694fe (patch)
tree5a19cf2b203f3a8877823223be6ff1fec3cf5ef2 /apps/s_client.c
parent8dd4ad0ff5d1d07ec4b6dd5d5104131269a472aa (diff)
Remove explicit setting of read_ahead for DTLS. It never makes sense not to
use read_ahead with DTLS because it doesn't work. Therefore read_ahead needs to be the default. Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'apps/s_client.c')
-rw-r--r--apps/s_client.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/s_client.c b/apps/s_client.c
index e30857f29a..0c4e6bdbd9 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -1299,12 +1299,6 @@ int MAIN(int argc, char **argv)
#endif
if (exc)
ssl_ctx_set_excert(ctx, exc);
- /*
- * DTLS: partial reads end up discarding unread UDP bytes :-( Setting
- * read ahead solves this problem.
- */
- if (socket_type == SOCK_DGRAM)
- SSL_CTX_set_read_ahead(ctx, 1);
#if !defined(OPENSSL_NO_TLSEXT)
# if !defined(OPENSSL_NO_NEXTPROTONEG)