Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only
0002 menuconfig IP_DCCP
0003         tristate "The DCCP Protocol"
0004         depends on INET
0005         help
0006           Datagram Congestion Control Protocol (RFC 4340)
0007 
0008           From https://www.ietf.org/rfc/rfc4340.txt:
0009 
0010           The Datagram Congestion Control Protocol (DCCP) is a transport
0011           protocol that implements bidirectional, unicast connections of
0012           congestion-controlled, unreliable datagrams. It should be suitable
0013           for use by applications such as streaming media, Internet telephony,
0014           and on-line games.
0015 
0016           To compile this protocol support as a module, choose M here: the
0017           module will be called dccp.
0018 
0019           If in doubt, say N.
0020 
0021 if IP_DCCP
0022 
0023 config INET_DCCP_DIAG
0024         depends on INET_DIAG
0025         def_tristate y if (IP_DCCP = y && INET_DIAG = y)
0026         def_tristate m
0027 
0028 source "net/dccp/ccids/Kconfig"
0029 
0030 menu "DCCP Kernel Hacking"
0031         depends on DEBUG_KERNEL=y
0032 
0033 config IP_DCCP_DEBUG
0034         bool "DCCP debug messages"
0035         help
0036           Only use this if you're hacking DCCP.
0037 
0038           When compiling DCCP as a module, this debugging output can be toggled
0039           by setting the parameter dccp_debug of the `dccp' module to 0 or 1.
0040 
0041           Just say N.
0042 
0043 
0044 endmenu
0045 
0046 endif # IP_DDCP