Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. endmenu
  31. endif # IP_DDCP