Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # RxRPC session sockets
  4. #
  5. config AF_RXRPC
  6. tristate "RxRPC session sockets"
  7. depends on INET
  8. select CRYPTO
  9. select KEYS
  10. select NET_UDP_TUNNEL
  11. help
  12. Say Y or M here to include support for RxRPC session sockets (just
  13. the transport part, not the presentation part: (un)marshalling is
  14. left to the application).
  15. These are used for AFS kernel filesystem and userspace utilities.
  16. This module at the moment only supports client operations and is
  17. currently incomplete.
  18. See Documentation/networking/rxrpc.rst.
  19. if AF_RXRPC
  20. config AF_RXRPC_IPV6
  21. bool "IPv6 support for RxRPC"
  22. depends on (IPV6 = m && AF_RXRPC = m) || (IPV6 = y && AF_RXRPC)
  23. help
  24. Say Y here to allow AF_RXRPC to use IPV6 UDP as well as IPV4 UDP as
  25. its network transport.
  26. config AF_RXRPC_INJECT_LOSS
  27. bool "Inject packet loss into RxRPC packet stream"
  28. help
  29. Say Y here to inject packet loss by discarding some received and some
  30. transmitted packets.
  31. config AF_RXRPC_DEBUG
  32. bool "RxRPC dynamic debugging"
  33. help
  34. Say Y here to make runtime controllable debugging messages appear.
  35. See Documentation/networking/rxrpc.rst.
  36. config RXKAD
  37. bool "RxRPC Kerberos security"
  38. select CRYPTO
  39. select CRYPTO_MANAGER
  40. select CRYPTO_SKCIPHER
  41. select CRYPTO_PCBC
  42. select CRYPTO_FCRYPT
  43. help
  44. Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
  45. through the use of the key retention service.
  46. See Documentation/networking/rxrpc.rst.
  47. endif