6 tristate "The SCTP Protocol (EXPERIMENTAL)"
7 depends on INET && EXPERIMENTAL
8 depends on IPV6 || IPV6=n
12 select CRYPTO_MD5 if SCTP_HMAC_MD5
15 Stream Control Transmission Protocol
17 From RFC 2960 <http://www.ietf.org/rfc/rfc2960.txt>.
19 "SCTP is a reliable transport protocol operating on top of a
20 connectionless packet network such as IP. It offers the following
21 services to its users:
23 -- acknowledged error-free non-duplicated transfer of user data,
24 -- data fragmentation to conform to discovered path MTU size,
25 -- sequenced delivery of user messages within multiple streams,
26 with an option for order-of-arrival delivery of individual user
28 -- optional bundling of multiple user messages into a single SCTP
30 -- network-level fault tolerance through supporting of multi-
31 homing at either or both ends of an association."
33 To compile this protocol support as a module, choose M here: the
34 module will be called sctp.
41 bool "SCTP: Debug messages"
43 If you say Y, this will enable verbose debugging messages.
45 If unsure, say N. However, if you are running into problems, use
46 this option to gather detailed trace information
48 config SCTP_DBG_OBJCNT
49 bool "SCTP: Debug object counts"
52 If you say Y, this will enable debugging support for counting the
53 type of objects that are currently allocated. This is useful for
54 identifying memory leaks. This debug information can be viewed by
55 'cat /proc/net/sctp/sctp_dbg_objcnt'
60 prompt "SCTP: Cookie HMAC Algorithm"
63 HMAC algorithm to be used during association initialization. It
64 is strongly recommended to use HMAC-SHA1 or HMAC-MD5. See
65 configuration for Cryptographic API and enable those algorithms
66 to make usable by SCTP.
71 Choosing this disables the use of an HMAC during association
72 establishment. It is advised to use either HMAC-MD5 or HMAC-SHA1.
77 Enable the use of HMAC-SHA1 during association establishment. It
78 is advised to use either HMAC-MD5 or HMAC-SHA1.
83 Enable the use of HMAC-MD5 during association establishment. It is
84 advised to use either HMAC-MD5 or HMAC-SHA1.