Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. menuconfig IP_DCCP
  2. tristate "The DCCP Protocol"
  3. depends on INET
  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. source "net/dccp/ccids/Kconfig"
  21. menu "DCCP Kernel Hacking"
  22. depends on DEBUG_KERNEL=y
  23. config IP_DCCP_DEBUG
  24. bool "DCCP debug messages"
  25. ---help---
  26. Only use this if you're hacking DCCP.
  27. When compiling DCCP as a module, this debugging output can be toggled
  28. by setting the parameter dccp_debug of the `dccp' module to 0 or 1.
  29. Just say N.
  30. config NET_DCCPPROBE
  31. tristate "DCCP connection probing"
  32. depends on PROC_FS && KPROBES
  33. ---help---
  34. This module allows for capturing the changes to DCCP connection
  35. state in response to incoming packets. It is used for debugging
  36. DCCP congestion avoidance modules. If you don't understand
  37. what was just said, you don't need it: say N.
  38. Documentation on how to use DCCP connection probing can be found
  39. at:
  40. http://www.linuxfoundation.org/collaborate/workgroups/networking/dccpprobe
  41. To compile this code as a module, choose M here: the
  42. module will be called dccp_probe.
  43. endmenu
  44. endif # IP_DDCP