Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. menuconfig IP_DCCP
  2. tristate "The DCCP Protocol (EXPERIMENTAL)"
  3. depends on INET && EXPERIMENTAL
  4. ---help---
  5. Datagram Congestion Control Protocol (RFC 4340)
  6. From http://www.ietf.org/rfc/rfc4340.txt:
  7. The Datagram Congestion Control Protocol (DCCP) is a transport
  8. protocol that implements bidirectional, unicast connections of
  9. congestion-controlled, unreliable datagrams. It should be suitable
  10. for use by applications such as streaming media, Internet telephony,
  11. and on-line games.
  12. To compile this protocol support as a module, choose M here: the
  13. module will be called dccp.
  14. If in doubt, say N.
  15. if IP_DCCP
  16. config INET_DCCP_DIAG
  17. depends on INET_DIAG
  18. def_tristate y if (IP_DCCP = y && INET_DIAG = y)
  19. def_tristate m
  20. config IP_DCCP_ACKVEC
  21. bool
  22. source "net/dccp/ccids/Kconfig"
  23. menu "DCCP Kernel Hacking"
  24. depends on DEBUG_KERNEL=y
  25. config IP_DCCP_DEBUG
  26. bool "DCCP debug messages"
  27. ---help---
  28. Only use this if you're hacking DCCP.
  29. When compiling DCCP as a module, this debugging output can be toggled
  30. by setting the parameter dccp_debug of the `dccp' module to 0 or 1.
  31. Just say N.
  32. config NET_DCCPPROBE
  33. tristate "DCCP connection probing"
  34. depends on PROC_FS && KPROBES
  35. ---help---
  36. This module allows for capturing the changes to DCCP connection
  37. state in response to incoming packets. It is used for debugging
  38. DCCP congestion avoidance modules. If you don't understand
  39. what was just said, you don't need it: say N.
  40. Documentation on how to use DCCP connection probing can be found
  41. at http://linux-net.osdl.org/index.php/DccpProbe
  42. To compile this code as a module, choose M here: the
  43. module will be called dccp_probe.
  44. endmenu
  45. endif # IP_DDCP