Merge tag 'for-v3.8-merged' of git://git.infradead.org/battery-2.6
[linux-2.6-block.git] / net / sctp / Kconfig
CommitLineData
1da177e4
LT
1#
2# SCTP configuration
3#
4
29e32ccd 5menuconfig IP_SCTP
1da177e4 6 tristate "The SCTP Protocol (EXPERIMENTAL)"
29e32ccd 7 depends on INET && EXPERIMENTAL
1da177e4 8 depends on IPV6 || IPV6=n
b7e0fe9f
VY
9 select CRYPTO
10 select CRYPTO_HMAC
11 select CRYPTO_SHA1
9ad0977f 12 select LIBCRC32C
1da177e4
LT
13 ---help---
14 Stream Control Transmission Protocol
15
16 From RFC 2960 <http://www.ietf.org/rfc/rfc2960.txt>.
17
18 "SCTP is a reliable transport protocol operating on top of a
19 connectionless packet network such as IP. It offers the following
20 services to its users:
21
22 -- acknowledged error-free non-duplicated transfer of user data,
23 -- data fragmentation to conform to discovered path MTU size,
24 -- sequenced delivery of user messages within multiple streams,
25 with an option for order-of-arrival delivery of individual user
26 messages,
27 -- optional bundling of multiple user messages into a single SCTP
28 packet, and
29 -- network-level fault tolerance through supporting of multi-
30 homing at either or both ends of an association."
31
32 To compile this protocol support as a module, choose M here: the
33 module will be called sctp.
34
35 If in doubt, say N.
36
29e32ccd
JE
37if IP_SCTP
38
787a51a0
WY
39config NET_SCTPPROBE
40 tristate "SCTP: Association probing"
41 depends on PROC_FS && KPROBES
42 ---help---
43 This module allows for capturing the changes to SCTP association
44 state in response to incoming packets. It is used for debugging
45 SCTP congestion control algorithms. If you don't understand
46 what was just said, you don't need it: say N.
47
48 To compile this code as a module, choose M here: the
49 module will be called sctp_probe.
50
1da177e4
LT
51config SCTP_DBG_MSG
52 bool "SCTP: Debug messages"
1da177e4
LT
53 help
54 If you say Y, this will enable verbose debugging messages.
55
56 If unsure, say N. However, if you are running into problems, use
57 this option to gather detailed trace information
58
59config SCTP_DBG_OBJCNT
60 bool "SCTP: Debug object counts"
c4e85f82 61 depends on PROC_FS
1da177e4
LT
62 help
63 If you say Y, this will enable debugging support for counting the
64 type of objects that are currently allocated. This is useful for
c4e85f82 65 identifying memory leaks. This debug information can be viewed by
1da177e4
LT
66 'cat /proc/net/sctp/sctp_dbg_objcnt'
67
68 If unsure, say N
69
3c68198e
NH
70config SCTP_COOKIE_HMAC_MD5
71 bool "Enable optional MD5 hmac cookie generation"
1da177e4 72 help
3c68198e
NH
73 Enable optional MD5 hmac based SCTP cookie generation
74 default y
75 select CRYPTO_HMAC if SCTP_COOKIE_HMAC_MD5
76 select CRYPTO_MD5 if SCTP_COOKIE_HMAC_MD5
77
78config SCTP_COOKIE_HMAC_SHA1
79 bool "Enable optional SHA1 hmac cookie generation"
1da177e4 80 help
3c68198e
NH
81 Enable optional SHA1 hmac based SCTP cookie generation
82 default y
83 select CRYPTO_HMAC if SCTP_COOKIE_HMAC_SHA1
84 select CRYPTO_SHA1 if SCTP_COOKIE_HMAC_SHA1
1da177e4 85
29e32ccd
JE
86
87endif # IP_SCTP