diff options
author | Fionera <[email protected]> | 2024-09-28 17:34:47 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-09-28 23:34:47 +0800 |
commit | b37033d92c53a896d206db4287a889efe2746a97 (patch) | |
tree | e44baeaed9c9845ccbd01581c1579de4b8379026 | |
parent | b7bab80bfe8207f0c8d32a4e7f9f9b1672d57c00 (diff) | |
download | rustdesk-server-b37033d92c53a896d206db4287a889efe2746a97.tar.gz rustdesk-server-b37033d92c53a896d206db4287a889efe2746a97.zip |
docs: the servers are by comma instead of colon (#462)
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 902fc1e..2cbd9c9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -17,9 +17,9 @@ fn main() -> ResultType<()> { "-c --config=[FILE] +takes_value 'Sets a custom config file' -p, --port=[NUMBER(default={RENDEZVOUS_PORT})] 'Sets the listening port' -s, --serial=[NUMBER(default=0)] 'Sets configure update serial number' - -R, --rendezvous-servers=[HOSTS] 'Sets rendezvous servers, separated by colon' + -R, --rendezvous-servers=[HOSTS] 'Sets rendezvous servers, separated by comma' -u, --software-url=[URL] 'Sets download url of RustDesk software of newest version' - -r, --relay-servers=[HOST] 'Sets the default relay servers, separated by colon' + -r, --relay-servers=[HOST] 'Sets the default relay servers, separated by comma' -M, --rmem=[NUMBER(default={RMEM})] 'Sets UDP recv buffer size, set system rmem_max first, e.g., sudo sysctl -w net.core.rmem_max=52428800. vi /etc/sysctl.conf, net.core.rmem_max=52428800, sudo sysctl –p' , --mask=[MASK] 'Determine if the connection comes from LAN, e.g. 192.168.0.0/16' -k, --key=[KEY] 'Only allow the client with the same key'", |