Merge branch 'main-v4.4' into main-v4.4-alpha.1
This commit is contained in:
commit
684e51a865
|
@ -368,11 +368,35 @@ end}.
|
||||||
]}.
|
]}.
|
||||||
|
|
||||||
%% RPC server port.
|
%% RPC server port.
|
||||||
|
{mapping, "rpc.driver", "gen_rpc.driver",
|
||||||
|
[ {default, tcp}
|
||||||
|
, {datatype, {enum, [tcp, ssl]}}
|
||||||
|
]}.
|
||||||
|
|
||||||
{mapping, "rpc.tcp_server_port", "gen_rpc.tcp_server_port", [
|
{mapping, "rpc.tcp_server_port", "gen_rpc.tcp_server_port", [
|
||||||
{default, 5369},
|
{default, 5369},
|
||||||
{datatype, integer}
|
{datatype, integer}
|
||||||
]}.
|
]}.
|
||||||
|
|
||||||
|
%% RPC SSL server port.
|
||||||
|
{mapping, "rpc.enable_ssl", "gen_rpc.ssl_server_port", [
|
||||||
|
{default, 5369},
|
||||||
|
{datatype, integer}
|
||||||
|
]}.
|
||||||
|
|
||||||
|
%% RPC SSL certificates
|
||||||
|
{mapping, "rpc.certfile", "gen_rpc.certfile", [
|
||||||
|
{datatype, string}
|
||||||
|
]}.
|
||||||
|
|
||||||
|
{mapping, "rpc.keyfile", "gen_rpc.keyfile", [
|
||||||
|
{datatype, string}
|
||||||
|
]}.
|
||||||
|
|
||||||
|
{mapping, "rpc.cacertfile", "gen_rpc.cacertfile", [
|
||||||
|
{datatype, string}
|
||||||
|
]}.
|
||||||
|
|
||||||
%% Number of tcp connections when connecting to RPC server
|
%% Number of tcp connections when connecting to RPC server
|
||||||
{mapping, "rpc.tcp_client_num", "gen_rpc.tcp_client_num", [
|
{mapping, "rpc.tcp_client_num", "gen_rpc.tcp_client_num", [
|
||||||
{default, 0},
|
{default, 0},
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
, {cowboy, {git, "https://github.com/emqx/cowboy", {tag, "2.8.2"}}}
|
, {cowboy, {git, "https://github.com/emqx/cowboy", {tag, "2.8.2"}}}
|
||||||
, {esockd, {git, "https://github.com/emqx/esockd", {tag, "5.8.0"}}}
|
, {esockd, {git, "https://github.com/emqx/esockd", {tag, "5.8.0"}}}
|
||||||
, {ekka, {git, "https://github.com/emqx/ekka", {tag, "0.8.2"}}}
|
, {ekka, {git, "https://github.com/emqx/ekka", {tag, "0.8.2"}}}
|
||||||
, {gen_rpc, {git, "https://github.com/emqx/gen_rpc", {tag, "2.6.0"}}}
|
, {gen_rpc, {git, "https://github.com/emqx/gen_rpc", {tag, "2.7.0"}}}
|
||||||
, {cuttlefish, {git, "https://github.com/emqx/cuttlefish", {tag, "v3.3.6"}}}
|
, {cuttlefish, {git, "https://github.com/emqx/cuttlefish", {tag, "v3.3.6"}}}
|
||||||
, {minirest, {git, "https://github.com/emqx/minirest", {tag, "0.3.7"}}}
|
, {minirest, {git, "https://github.com/emqx/minirest", {tag, "0.3.7"}}}
|
||||||
, {ecpool, {git, "https://github.com/emqx/ecpool", {tag, "0.5.1"}}}
|
, {ecpool, {git, "https://github.com/emqx/ecpool", {tag, "0.5.1"}}}
|
||||||
|
|
Loading…
Reference in New Issue