mirror of
https://github.com/matrix-construct/construct
synced 2024-12-28 00:14:07 +01:00
modules/console: Default empty string for tmp_dh_path param to net listen cmd.
This commit is contained in:
parent
f580cb37d3
commit
560a5eda44
1 changed files with 1 additions and 1 deletions
|
@ -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) },
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue