1*4882a593Smuzhiyun# SPDX-License-Identifier: GPL-2.0-only 2*4882a593Smuzhiyunmenuconfig IP_DCCP 3*4882a593Smuzhiyun tristate "The DCCP Protocol" 4*4882a593Smuzhiyun depends on INET 5*4882a593Smuzhiyun help 6*4882a593Smuzhiyun Datagram Congestion Control Protocol (RFC 4340) 7*4882a593Smuzhiyun 8*4882a593Smuzhiyun From https://www.ietf.org/rfc/rfc4340.txt: 9*4882a593Smuzhiyun 10*4882a593Smuzhiyun The Datagram Congestion Control Protocol (DCCP) is a transport 11*4882a593Smuzhiyun protocol that implements bidirectional, unicast connections of 12*4882a593Smuzhiyun congestion-controlled, unreliable datagrams. It should be suitable 13*4882a593Smuzhiyun for use by applications such as streaming media, Internet telephony, 14*4882a593Smuzhiyun and on-line games. 15*4882a593Smuzhiyun 16*4882a593Smuzhiyun To compile this protocol support as a module, choose M here: the 17*4882a593Smuzhiyun module will be called dccp. 18*4882a593Smuzhiyun 19*4882a593Smuzhiyun If in doubt, say N. 20*4882a593Smuzhiyun 21*4882a593Smuzhiyunif IP_DCCP 22*4882a593Smuzhiyun 23*4882a593Smuzhiyunconfig INET_DCCP_DIAG 24*4882a593Smuzhiyun depends on INET_DIAG 25*4882a593Smuzhiyun def_tristate y if (IP_DCCP = y && INET_DIAG = y) 26*4882a593Smuzhiyun def_tristate m 27*4882a593Smuzhiyun 28*4882a593Smuzhiyunsource "net/dccp/ccids/Kconfig" 29*4882a593Smuzhiyun 30*4882a593Smuzhiyunmenu "DCCP Kernel Hacking" 31*4882a593Smuzhiyun depends on DEBUG_KERNEL=y 32*4882a593Smuzhiyun 33*4882a593Smuzhiyunconfig IP_DCCP_DEBUG 34*4882a593Smuzhiyun bool "DCCP debug messages" 35*4882a593Smuzhiyun help 36*4882a593Smuzhiyun Only use this if you're hacking DCCP. 37*4882a593Smuzhiyun 38*4882a593Smuzhiyun When compiling DCCP as a module, this debugging output can be toggled 39*4882a593Smuzhiyun by setting the parameter dccp_debug of the `dccp' module to 0 or 1. 40*4882a593Smuzhiyun 41*4882a593Smuzhiyun Just say N. 42*4882a593Smuzhiyun 43*4882a593Smuzhiyun 44*4882a593Smuzhiyunendmenu 45*4882a593Smuzhiyun 46*4882a593Smuzhiyunendif # IP_DDCP 47