Kconfig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. menu "DCCP CCIDs Configuration"
  2. config IP_DCCP_CCID2_DEBUG
  3. bool "CCID-2 debugging messages"
  4. ---help---
  5. Enable CCID-2 specific debugging messages.
  6. The debugging output can additionally be toggled by setting the
  7. ccid2_debug parameter to 0 or 1.
  8. If in doubt, say N.
  9. config IP_DCCP_CCID3
  10. bool "CCID-3 (TCP-Friendly)"
  11. def_bool y if (IP_DCCP = y || IP_DCCP = m)
  12. ---help---
  13. CCID-3 denotes TCP-Friendly Rate Control (TFRC), an equation-based
  14. rate-controlled congestion control mechanism. TFRC is designed to
  15. be reasonably fair when competing for bandwidth with TCP-like flows,
  16. where a flow is "reasonably fair" if its sending rate is generally
  17. within a factor of two of the sending rate of a TCP flow under the
  18. same conditions. However, TFRC has a much lower variation of
  19. throughput over time compared with TCP, which makes CCID-3 more
  20. suitable than CCID-2 for applications such streaming media where a
  21. relatively smooth sending rate is of importance.
  22. CCID-3 is further described in RFC 4342,
  23. http://www.ietf.org/rfc/rfc4342.txt
  24. The TFRC congestion control algorithms were initially described in
  25. RFC 5348.
  26. This text was extracted from RFC 4340 (sec. 10.2),
  27. http://www.ietf.org/rfc/rfc4340.txt
  28. If in doubt, say N.
  29. config IP_DCCP_CCID3_DEBUG
  30. bool "CCID-3 debugging messages"
  31. depends on IP_DCCP_CCID3
  32. ---help---
  33. Enable CCID-3 specific debugging messages.
  34. The debugging output can additionally be toggled by setting the
  35. ccid3_debug parameter to 0 or 1.
  36. If in doubt, say N.
  37. config IP_DCCP_TFRC_LIB
  38. def_bool y if IP_DCCP_CCID3
  39. config IP_DCCP_TFRC_DEBUG
  40. def_bool y if IP_DCCP_CCID3_DEBUG
  41. endmenu