Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. #
  2. # SCTP configuration
  3. #
  4. menuconfig IP_SCTP
  5. tristate "The SCTP Protocol (EXPERIMENTAL)"
  6. depends on INET && EXPERIMENTAL
  7. depends on IPV6 || IPV6=n
  8. select CRYPTO
  9. select CRYPTO_HMAC
  10. select CRYPTO_SHA1
  11. select CRYPTO_MD5 if SCTP_HMAC_MD5
  12. select LIBCRC32C
  13. ---help---
  14. Stream Control Transmission Protocol
  15. From RFC 2960 <http://www.ietf.org/rfc/rfc2960.txt>.
  16. "SCTP is a reliable transport protocol operating on top of a
  17. connectionless packet network such as IP. It offers the following
  18. services to its users:
  19. -- acknowledged error-free non-duplicated transfer of user data,
  20. -- data fragmentation to conform to discovered path MTU size,
  21. -- sequenced delivery of user messages within multiple streams,
  22. with an option for order-of-arrival delivery of individual user
  23. messages,
  24. -- optional bundling of multiple user messages into a single SCTP
  25. packet, and
  26. -- network-level fault tolerance through supporting of multi-
  27. homing at either or both ends of an association."
  28. To compile this protocol support as a module, choose M here: the
  29. module will be called sctp.
  30. If in doubt, say N.
  31. if IP_SCTP
  32. config NET_SCTPPROBE
  33. tristate "SCTP: Association probing"
  34. depends on PROC_FS && KPROBES
  35. ---help---
  36. This module allows for capturing the changes to SCTP association
  37. state in response to incoming packets. It is used for debugging
  38. SCTP congestion control algorithms. If you don't understand
  39. what was just said, you don't need it: say N.
  40. To compile this code as a module, choose M here: the
  41. module will be called sctp_probe.
  42. config SCTP_DBG_MSG
  43. bool "SCTP: Debug messages"
  44. help
  45. If you say Y, this will enable verbose debugging messages.
  46. If unsure, say N. However, if you are running into problems, use
  47. this option to gather detailed trace information
  48. config SCTP_DBG_OBJCNT
  49. bool "SCTP: Debug object counts"
  50. depends on PROC_FS
  51. help
  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'
  56. If unsure, say N
  57. choice
  58. prompt "SCTP: Cookie HMAC Algorithm"
  59. default SCTP_HMAC_MD5
  60. help
  61. HMAC algorithm to be used during association initialization. It
  62. is strongly recommended to use HMAC-SHA1 or HMAC-MD5. See
  63. configuration for Cryptographic API and enable those algorithms
  64. to make usable by SCTP.
  65. config SCTP_HMAC_NONE
  66. bool "None"
  67. help
  68. Choosing this disables the use of an HMAC during association
  69. establishment. It is advised to use either HMAC-MD5 or HMAC-SHA1.
  70. config SCTP_HMAC_SHA1
  71. bool "HMAC-SHA1"
  72. help
  73. Enable the use of HMAC-SHA1 during association establishment. It
  74. is advised to use either HMAC-MD5 or HMAC-SHA1.
  75. config SCTP_HMAC_MD5
  76. bool "HMAC-MD5"
  77. help
  78. Enable the use of HMAC-MD5 during association establishment. It is
  79. advised to use either HMAC-MD5 or HMAC-SHA1.
  80. endchoice
  81. endif # IP_SCTP