0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 19:28:52 +02:00

modules/console: Default empty string for tmp_dh_path param to net listen cmd.

This commit is contained in:
Jason Volk 2018-08-30 19:23:50 -07:00
parent f580cb37d3
commit 560a5eda44

View file

@ -2582,7 +2582,7 @@ console_cmd__net__listen(opt &out, const string_view &line)
{ "port", token.at("port", 8448L) },
{ "certificate_pem_path", token.at("certificate_pem_path") },
{ "private_key_pem_path", token.at("private_key_pem_path") },
{ "tmp_dh_path", token.at("tmp_dh_path") },
{ "tmp_dh_path", token.at("tmp_dh_path", ""_sv) },
{ "backlog", token.at("backlog", -1L) },
{ "max_connections", token.at("max_connections", -1L) },
};