2019-05-19 13:07:45 +01:00
# SPDX-License-Identifier: GPL-2.0-only
2012-10-02 11:19:43 -07:00
menu "DCCP CCIDs Configuration"
2005-08-09 20:14:34 -07:00
2006-09-19 13:12:44 -07:00
config IP_DCCP_CCID2_DEBUG
2009-01-04 21:42:53 -08:00
bool "CCID-2 debugging messages"
2020-06-14 01:50:22 +09:00
help
2009-01-04 21:42:53 -08:00
Enable CCID-2 specific debugging messages.
2006-11-20 18:26:03 -02:00
2009-01-04 21:42:53 -08:00
The debugging output can additionally be toggled by setting the
ccid2_debug parameter to 0 or 1.
2006-09-19 13:12:44 -07:00
2009-01-04 21:42:53 -08:00
If in doubt, say N.
2006-09-19 13:12:44 -07:00
2005-08-09 20:14:34 -07:00
config IP_DCCP_CCID3
2012-10-02 11:19:43 -07:00
bool "CCID-3 (TCP-Friendly)"
2009-01-04 21:42:53 -08:00
def_bool y if (IP_DCCP = y || IP_DCCP = m)
2020-06-14 01:50:22 +09:00
help
2009-01-04 21:42:53 -08:00
CCID-3 denotes TCP-Friendly Rate Control (TFRC), an equation-based
2005-08-09 20:14:34 -07:00
rate-controlled congestion control mechanism. TFRC is designed to
be reasonably fair when competing for bandwidth with TCP-like flows,
where a flow is "reasonably fair" if its sending rate is generally
within a factor of two of the sending rate of a TCP flow under the
same conditions. However, TFRC has a much lower variation of
2009-01-04 21:42:53 -08:00
throughput over time compared with TCP, which makes CCID-3 more
suitable than CCID-2 for applications such streaming media where a
2005-08-09 20:14:34 -07:00
relatively smooth sending rate is of importance.
2009-01-04 21:42:53 -08:00
CCID-3 is further described in RFC 4342,
2020-07-13 09:51:08 +02:00
https://www.ietf.org/rfc/rfc4342.txt
2006-03-20 17:41:47 -08:00
The TFRC congestion control algorithms were initially described in
2009-01-11 00:17:22 -08:00
RFC 5348.
2005-08-09 20:14:34 -07:00
2006-10-24 16:17:51 -07:00
This text was extracted from RFC 4340 (sec. 10.2),
2020-07-13 09:51:08 +02:00
https://www.ietf.org/rfc/rfc4340.txt
2006-11-20 18:26:03 -02:00
2009-01-04 21:42:53 -08:00
If in doubt, say N.
2005-08-09 20:14:34 -07:00
2006-11-20 18:28:09 -02:00
config IP_DCCP_CCID3_DEBUG
2009-01-04 21:42:53 -08:00
bool "CCID-3 debugging messages"
depends on IP_DCCP_CCID3
2020-06-14 01:50:22 +09:00
help
2009-01-04 21:42:53 -08:00
Enable CCID-3 specific debugging messages.
2006-11-20 18:28:09 -02:00
2009-01-04 21:42:53 -08:00
The debugging output can additionally be toggled by setting the
ccid3_debug parameter to 0 or 1.
2006-11-20 18:28:09 -02:00
2009-01-04 21:42:53 -08:00
If in doubt, say N.
2006-12-03 14:50:23 -02:00
2007-12-06 12:26:38 -02:00
config IP_DCCP_TFRC_LIB
2009-01-04 21:45:33 -08:00
def_bool y if IP_DCCP_CCID3
2007-12-06 12:26:38 -02:00
config IP_DCCP_TFRC_DEBUG
2009-01-04 21:45:33 -08:00
def_bool y if IP_DCCP_CCID3_DEBUG
2005-08-09 20:14:34 -07:00
endmenu