deprecate delayed_ack setting
This commit is contained in:
parent
7351f68b98
commit
b728037ec3
|
@ -4525,7 +4525,6 @@ session_settings
|
||||||
int utp_syn_resends;
|
int utp_syn_resends;
|
||||||
int utp_num_resends;
|
int utp_num_resends;
|
||||||
int utp_connect_timeout;
|
int utp_connect_timeout;
|
||||||
int utp_delayed_ack;
|
|
||||||
bool utp_dynamic_sock_buf;
|
bool utp_dynamic_sock_buf;
|
||||||
int utp_loss_multiplier;
|
int utp_loss_multiplier;
|
||||||
|
|
||||||
|
@ -5342,12 +5341,6 @@ before giving up and closing the connection.
|
||||||
``utp_connect_timeout`` is the number of milliseconds of timeout for the initial SYN
|
``utp_connect_timeout`` is the number of milliseconds of timeout for the initial SYN
|
||||||
packet for uTP connections. For each timed out packet (in a row), the timeout is doubled.
|
packet for uTP connections. For each timed out packet (in a row), the timeout is doubled.
|
||||||
|
|
||||||
``utp_delayed_ack`` is the number of milliseconds to delay ACKs the most. Delaying ACKs
|
|
||||||
significantly helps reducing the amount of protocol overhead in the reverse direction
|
|
||||||
from downloads. It defaults to 100 milliseconds. If set to 0, delayed ACKs are disabled
|
|
||||||
and every incoming payload packet is ACKed. The granularity of this timer is capped by
|
|
||||||
the tick interval (as specified by ``tick_interval``).
|
|
||||||
|
|
||||||
``utp_dynamic_sock_buf`` controls if the uTP socket manager is allowed to increase
|
``utp_dynamic_sock_buf`` controls if the uTP socket manager is allowed to increase
|
||||||
the socket buffer if a network interface with a large MTU is used (such as loopback
|
the socket buffer if a network interface with a large MTU is used (such as loopback
|
||||||
or ethernet jumbo frames). This defaults to true and might improve uTP throughput.
|
or ethernet jumbo frames). This defaults to true and might improve uTP throughput.
|
||||||
|
|
|
@ -424,7 +424,9 @@ namespace aux {
|
||||||
TORRENT_SETTING(integer, utp_fin_resends)
|
TORRENT_SETTING(integer, utp_fin_resends)
|
||||||
TORRENT_SETTING(integer, utp_num_resends)
|
TORRENT_SETTING(integer, utp_num_resends)
|
||||||
TORRENT_SETTING(integer, utp_connect_timeout)
|
TORRENT_SETTING(integer, utp_connect_timeout)
|
||||||
|
#ifndef TORRENT_NO_DEPRECATE
|
||||||
TORRENT_SETTING(integer, utp_delayed_ack)
|
TORRENT_SETTING(integer, utp_delayed_ack)
|
||||||
|
#endif
|
||||||
TORRENT_SETTING(boolean, utp_dynamic_sock_buf)
|
TORRENT_SETTING(boolean, utp_dynamic_sock_buf)
|
||||||
TORRENT_SETTING(integer, mixed_mode_algorithm)
|
TORRENT_SETTING(integer, mixed_mode_algorithm)
|
||||||
TORRENT_SETTING(boolean, rate_limit_utp)
|
TORRENT_SETTING(boolean, rate_limit_utp)
|
||||||
|
|
Loading…
Reference in New Issue