Kconfig 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. menu "DCCP CCIDs Configuration (EXPERIMENTAL)"
  2. depends on EXPERIMENTAL
  3. config IP_DCCP_CCID2
  4. tristate "CCID2 (TCP-Like) (EXPERIMENTAL)"
  5. def_tristate IP_DCCP
  6. ---help---
  7. CCID 2, TCP-like Congestion Control, denotes Additive Increase,
  8. Multiplicative Decrease (AIMD) congestion control with behavior
  9. modelled directly on TCP, including congestion window, slow start,
  10. timeouts, and so forth [RFC 2581]. CCID 2 achieves maximum
  11. bandwidth over the long term, consistent with the use of end-to-end
  12. congestion control, but halves its congestion window in response to
  13. each congestion event. This leads to the abrupt rate changes
  14. typical of TCP. Applications should use CCID 2 if they prefer
  15. maximum bandwidth utilization to steadiness of rate. This is often
  16. the case for applications that are not playing their data directly
  17. to the user. For example, a hypothetical application that
  18. transferred files over DCCP, using application-level retransmissions
  19. for lost packets, would prefer CCID 2 to CCID 3. On-line games may
  20. also prefer CCID 2. See RFC 4341 for further details.
  21. CCID2 is the default CCID used by DCCP.
  22. config IP_DCCP_CCID2_DEBUG
  23. bool "CCID2 debugging messages"
  24. depends on IP_DCCP_CCID2
  25. ---help---
  26. Enable CCID2-specific debugging messages.
  27. When compiling CCID2 as a module, this debugging output can
  28. additionally be toggled by setting the ccid2_debug module
  29. parameter to 0 or 1.
  30. If in doubt, say N.
  31. config IP_DCCP_CCID3
  32. tristate "CCID3 (TCP-Friendly) (EXPERIMENTAL)"
  33. def_tristate IP_DCCP
  34. select IP_DCCP_TFRC_LIB
  35. ---help---
  36. CCID 3 denotes TCP-Friendly Rate Control (TFRC), an equation-based
  37. rate-controlled congestion control mechanism. TFRC is designed to
  38. be reasonably fair when competing for bandwidth with TCP-like flows,
  39. where a flow is "reasonably fair" if its sending rate is generally
  40. within a factor of two of the sending rate of a TCP flow under the
  41. same conditions. However, TFRC has a much lower variation of
  42. throughput over time compared with TCP, which makes CCID 3 more
  43. suitable than CCID 2 for applications such streaming media where a
  44. relatively smooth sending rate is of importance.
  45. CCID 3 is further described in RFC 4342,
  46. http://www.ietf.org/rfc/rfc4342.txt
  47. The TFRC congestion control algorithms were initially described in
  48. RFC 3448.
  49. This text was extracted from RFC 4340 (sec. 10.2),
  50. http://www.ietf.org/rfc/rfc4340.txt
  51. To compile this CCID as a module, choose M here: the module will be
  52. called dccp_ccid3.
  53. If in doubt, say M.
  54. config IP_DCCP_CCID3_DEBUG
  55. bool "CCID3 debugging messages"
  56. depends on IP_DCCP_CCID3
  57. ---help---
  58. Enable CCID3-specific debugging messages.
  59. When compiling CCID3 as a module, this debugging output can
  60. additionally be toggled by setting the ccid3_debug module
  61. parameter to 0 or 1.
  62. If in doubt, say N.
  63. config IP_DCCP_CCID3_RTO
  64. int "Use higher bound for nofeedback timer"
  65. default 100
  66. depends on IP_DCCP_CCID3 && EXPERIMENTAL
  67. ---help---
  68. Use higher lower bound for nofeedback timer expiration.
  69. The TFRC nofeedback timer normally expires after the maximum of 4
  70. RTTs and twice the current send interval (RFC 3448, 4.3). On LANs
  71. with a small RTT this can mean a high processing load and reduced
  72. performance, since then the nofeedback timer is triggered very
  73. frequently.
  74. This option enables to set a higher lower bound for the nofeedback
  75. value. Values in units of milliseconds can be set here.
  76. A value of 0 disables this feature by enforcing the value specified
  77. in RFC 3448. The following values have been suggested as bounds for
  78. experimental use:
  79. * 16-20ms to match the typical multimedia inter-frame interval
  80. * 100ms as a reasonable compromise [default]
  81. * 1000ms corresponds to the lower TCP RTO bound (RFC 2988, 2.4)
  82. The default of 100ms is a compromise between a large value for
  83. efficient DCCP implementations, and a small value to avoid disrupting
  84. the network in times of congestion.
  85. The purpose of the nofeedback timer is to slow DCCP down when there
  86. is serious network congestion: experimenting with larger values should
  87. therefore not be performed on WANs.
  88. config IP_DCCP_TFRC_LIB
  89. tristate
  90. default n
  91. config IP_DCCP_TFRC_DEBUG
  92. bool
  93. depends on IP_DCCP_TFRC_LIB
  94. default y if IP_DCCP_CCID3_DEBUG
  95. endmenu