Kconfig 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. menu "DCCP CCIDs Configuration (EXPERIMENTAL)"
  2. depends on EXPERIMENTAL
  3. config IP_DCCP_CCID2_DEBUG
  4. bool "CCID-2 debugging messages"
  5. ---help---
  6. Enable CCID-2 specific debugging messages.
  7. The debugging output can additionally be toggled by setting the
  8. ccid2_debug parameter to 0 or 1.
  9. If in doubt, say N.
  10. config IP_DCCP_CCID3
  11. bool "CCID-3 (TCP-Friendly) (EXPERIMENTAL)"
  12. def_bool y if (IP_DCCP = y || IP_DCCP = m)
  13. ---help---
  14. CCID-3 denotes TCP-Friendly Rate Control (TFRC), an equation-based
  15. rate-controlled congestion control mechanism. TFRC is designed to
  16. be reasonably fair when competing for bandwidth with TCP-like flows,
  17. where a flow is "reasonably fair" if its sending rate is generally
  18. within a factor of two of the sending rate of a TCP flow under the
  19. same conditions. However, TFRC has a much lower variation of
  20. throughput over time compared with TCP, which makes CCID-3 more
  21. suitable than CCID-2 for applications such streaming media where a
  22. relatively smooth sending rate is of importance.
  23. CCID-3 is further described in RFC 4342,
  24. http://www.ietf.org/rfc/rfc4342.txt
  25. The TFRC congestion control algorithms were initially described in
  26. RFC 5348.
  27. This text was extracted from RFC 4340 (sec. 10.2),
  28. http://www.ietf.org/rfc/rfc4340.txt
  29. If in doubt, say N.
  30. config IP_DCCP_CCID3_DEBUG
  31. bool "CCID-3 debugging messages"
  32. depends on IP_DCCP_CCID3
  33. ---help---
  34. Enable CCID-3 specific debugging messages.
  35. The debugging output can additionally be toggled by setting the
  36. ccid3_debug parameter to 0 or 1.
  37. If in doubt, say N.
  38. config IP_DCCP_CCID3_RTO
  39. int "Use higher bound for nofeedback timer"
  40. default 100
  41. depends on IP_DCCP_CCID3 && EXPERIMENTAL
  42. ---help---
  43. Use higher lower bound for nofeedback timer expiration.
  44. The TFRC nofeedback timer normally expires after the maximum of 4
  45. RTTs and twice the current send interval (RFC 3448, 4.3). On LANs
  46. with a small RTT this can mean a high processing load and reduced
  47. performance, since then the nofeedback timer is triggered very
  48. frequently.
  49. This option enables to set a higher lower bound for the nofeedback
  50. value. Values in units of milliseconds can be set here.
  51. A value of 0 disables this feature by enforcing the value specified
  52. in RFC 3448. The following values have been suggested as bounds for
  53. experimental use:
  54. * 16-20ms to match the typical multimedia inter-frame interval
  55. * 100ms as a reasonable compromise [default]
  56. * 1000ms corresponds to the lower TCP RTO bound (RFC 2988, 2.4)
  57. The default of 100ms is a compromise between a large value for
  58. efficient DCCP implementations, and a small value to avoid disrupting
  59. the network in times of congestion.
  60. The purpose of the nofeedback timer is to slow DCCP down when there
  61. is serious network congestion: experimenting with larger values should
  62. therefore not be performed on WANs.
  63. config IP_DCCP_TFRC_LIB
  64. def_bool y if IP_DCCP_CCID3
  65. config IP_DCCP_TFRC_DEBUG
  66. def_bool y if IP_DCCP_CCID3_DEBUG
  67. endmenu