diff options
author | Mario Campos <mario-campos@github.com> | 2023-08-24 08:34:46 -0500 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-09-06 14:11:35 +0200 |
commit | 1ee3bad88b3e4386bef1e729488b9ceb88e95aef (patch) | |
tree | 6a0a5d661b6a1ef853908ca11ff3069f09a36e59 /src/plugins/xfer/xfer-config.c | |
parent | 7f0f947667ec6ed22b30e205627da51dffe620c4 (diff) | |
download | weechat-1ee3bad88b3e4386bef1e729488b9ceb88e95aef.zip |
xfer: update command/config docs with passive DCC support.
Diffstat (limited to 'src/plugins/xfer/xfer-config.c')
-rw-r--r-- | src/plugins/xfer/xfer-config.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/xfer/xfer-config.c b/src/plugins/xfer/xfer-config.c index 5d8d27eda..c67d716ae 100644 --- a/src/plugins/xfer/xfer-config.c +++ b/src/plugins/xfer/xfer-config.c @@ -271,17 +271,17 @@ xfer_config_init () xfer_config_network_own_ip = weechat_config_new_option ( xfer_config_file, xfer_config_section_network, "own_ip", "string", - N_("IP or DNS address used for sending files/chats " + N_("IP or DNS address used for sending and passively receiving files/chats " "(if empty, local interface IP is used)"), NULL, 0, 0, "", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); xfer_config_network_port_range = weechat_config_new_option ( xfer_config_file, xfer_config_section_network, "port_range", "string", - N_("restricts outgoing files/chats to use only ports in the given " - "range (useful for NAT) (syntax: a single port, ie. 5000 or a " - "port range, ie. 5000-5015, empty value means any port, it's " - "recommended to use ports greater than 1024, because only root " + N_("restricts outgoing files/chats and incoming/passive files to use " + "only ports in the given range (useful for NAT) (syntax: a single port, " + "ie. 5000 or a port range, ie. 5000-5015, empty value means any port, " + "it's recommended to use ports greater than 1024, because only root " "can use ports below 1024)"), NULL, 0, 0, "", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); |