aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-02-23 16:54:11 +0000
committerMatt Caswell <matt@openssl.org>2017-03-02 17:44:15 +0000
commit6746648c4270442fefc05ae25b0afcf326391b60 (patch)
tree19fa7c0f4f1059dad21b2ded76eef627d603115d /apps
parentbfa9a9afe82e603339801da73ddbabd02d919888 (diff)
downloadopenssl-6746648c4270442fefc05ae25b0afcf326391b60.tar.gz
Ensure the max_early_data option to s_server can be 0
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2737)
Diffstat (limited to 'apps')
-rw-r--r--apps/s_server.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/apps/s_server.c b/apps/s_server.c
index 889cc94b73..6e5c945e71 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -918,7 +918,7 @@ const OPTIONS s_server_options[] = {
{"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
#endif
{"keylogfile", OPT_KEYLOG_FILE, '>', "Write TLS secrets to file"},
- {"max_early_data", OPT_MAX_EARLY, 'p',
+ {"max_early_data", OPT_MAX_EARLY, 'n',
"The maximum number of bytes of early data"},
{"early_data", OPT_EARLY_DATA, '-', "Attempt to read early data"},
{NULL, OPT_EOF, 0, NULL}
@@ -997,7 +997,7 @@ int s_server_main(int argc, char *argv[])
unsigned int split_send_fragment = 0, max_pipelines = 0;
const char *s_serverinfo_file = NULL;
const char *keylog_file = NULL;
- uint32_t max_early_data = 0;
+ int max_early_data = -1;
/* Init of few remaining global variables */
local_argc = argc;
@@ -1508,6 +1508,10 @@ int s_server_main(int argc, char *argv[])
break;
case OPT_MAX_EARLY:
max_early_data = atoi(opt_arg());
+ if (max_early_data < 0) {
+ BIO_printf(bio_err, "Invalid value for max_early_data\n");
+ goto end;
+ }
break;
case OPT_EARLY_DATA:
early_data = 1;
@@ -2002,7 +2006,7 @@ int s_server_main(int argc, char *argv[])
if (set_keylog_file(ctx, keylog_file))
goto end;
- if (max_early_data > 0)
+ if (max_early_data >= 0)
SSL_CTX_set_max_early_data(ctx, max_early_data);
BIO_printf(bio_s_out, "ACCEPT\n");