Blame view

net/dccp/Kconfig 1.64 KB
3df25df35   Jan Engelhardt   [DCCP]: Use menuc...
1
  menuconfig IP_DCCP
fa201d647   Kees Cook   net/dccp: remove ...
2
3
  	tristate "The DCCP Protocol"
  	depends on INET
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
4
  	---help---
0e64e94e4   Gerrit Renker   [DCCP]: Update do...
5
  	  Datagram Congestion Control Protocol (RFC 4340)
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
6

0e64e94e4   Gerrit Renker   [DCCP]: Update do...
7
  	  From http://www.ietf.org/rfc/rfc4340.txt:
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
8
9
10
11
12
  
  	  The Datagram Congestion Control Protocol (DCCP) is a transport
  	  protocol that implements bidirectional, unicast connections of
  	  congestion-controlled, unreliable datagrams. It should be suitable
  	  for use by applications such as streaming media, Internet telephony,
0e64e94e4   Gerrit Renker   [DCCP]: Update do...
13
  	  and on-line games.
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
14
15
16
17
18
  
  	  To compile this protocol support as a module, choose M here: the
  	  module will be called dccp.
  
  	  If in doubt, say N.
3df25df35   Jan Engelhardt   [DCCP]: Use menuc...
19
  if IP_DCCP
17b085eac   Arnaldo Carvalho de Melo   [INET_DIAG]: Move...
20
  config INET_DCCP_DIAG
3df25df35   Jan Engelhardt   [DCCP]: Use menuc...
21
  	depends on INET_DIAG
17b085eac   Arnaldo Carvalho de Melo   [INET_DIAG]: Move...
22
  	def_tristate y if (IP_DCCP = y && INET_DIAG = y)
4f5736c4c   Arnaldo Carvalho de Melo   [TCPDIAG]: Introd...
23
  	def_tristate m
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
24
  source "net/dccp/ccids/Kconfig"
725ba8eee   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
25
  menu "DCCP Kernel Hacking"
3df25df35   Jan Engelhardt   [DCCP]: Use menuc...
26
  	depends on DEBUG_KERNEL=y
725ba8eee   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
27
28
29
30
31
  
  config IP_DCCP_DEBUG
  	bool "DCCP debug messages"
  	---help---
  	  Only use this if you're hacking DCCP.
84116716c   Gerrit Renker   [DCCP]: enable de...
32
33
  	  When compiling DCCP as a module, this debugging output can be toggled
  	  by setting the parameter dccp_debug of the `dccp' module to 0 or 1.
725ba8eee   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
34
  	  Just say N.
e41542f51   Ian McDonald   [DCCP]: Introduce...
35
36
37
38
39
40
41
42
  config NET_DCCPPROBE
  	tristate "DCCP connection probing"
  	depends on PROC_FS && KPROBES
  	---help---
  	This module allows for capturing the changes to DCCP connection
  	state in response to incoming packets. It is used for debugging
  	DCCP congestion avoidance modules. If you don't understand
  	what was just said, you don't need it: say N.
fec5b80e4   Ian McDonald   [DCCP]: Fix DCCP ...
43
  	Documentation on how to use DCCP connection probing can be found
c996d8b9a   Michael Witten   Docs/Kconfig: Upd...
44
45
46
  	at:
  	
  	  http://www.linuxfoundation.org/collaborate/workgroups/networking/dccpprobe
e41542f51   Ian McDonald   [DCCP]: Introduce...
47
48
49
  
  	To compile this code as a module, choose M here: the
  	module will be called dccp_probe.
725ba8eee   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
50
  endmenu
3df25df35   Jan Engelhardt   [DCCP]: Use menuc...
51
  endif # IP_DDCP