0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-15 16:38:20 +02:00

modules/console: Reorder net listen cmd arguments.

This commit is contained in:
Jason Volk 2019-03-10 13:34:57 -07:00
parent 86450d6f48
commit 2fdc19e113

View file

@ -4441,8 +4441,8 @@ console_cmd__net__listen(opt &out, const string_view &line)
"name",
"host",
"port",
"certificate_pem_path",
"private_key_pem_path",
"certificate_pem_path",
"certificate_chain_path",
"tmp_dh_path",
"backlog",
@ -4453,8 +4453,8 @@ console_cmd__net__listen(opt &out, const string_view &line)
{
{ "host", token.at("host", "0.0.0.0"_sv) },
{ "port", token.at("port", 8448L) },
{ "certificate_pem_path", token.at("certificate_pem_path") },
{ "private_key_pem_path", token.at("private_key_pem_path") },
{ "certificate_pem_path", token.at("certificate_pem_path") },
{ "certificate_chain_path", token.at("certificate_chain_path", ""_sv) },
{ "tmp_dh_path", token.at("tmp_dh_path", ""_sv) },
{ "backlog", token.at("backlog", -1L) },