Kconfig 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #
  2. # RxRPC session sockets
  3. #
  4. config AF_RXRPC
  5. tristate "RxRPC session sockets"
  6. depends on INET
  7. select CRYPTO
  8. select KEYS
  9. help
  10. Say Y or M here to include support for RxRPC session sockets (just
  11. the transport part, not the presentation part: (un)marshalling is
  12. left to the application).
  13. These are used for AFS kernel filesystem and userspace utilities.
  14. This module at the moment only supports client operations and is
  15. currently incomplete.
  16. See Documentation/networking/rxrpc.txt.
  17. config AF_RXRPC_IPV6
  18. bool "IPv6 support for RxRPC"
  19. depends on (IPV6 = m && AF_RXRPC = m) || (IPV6 = y && AF_RXRPC)
  20. help
  21. Say Y here to allow AF_RXRPC to use IPV6 UDP as well as IPV4 UDP as
  22. its network transport.
  23. config AF_RXRPC_INJECT_LOSS
  24. bool "Inject packet loss into RxRPC packet stream"
  25. depends on AF_RXRPC
  26. help
  27. Say Y here to inject packet loss by discarding some received and some
  28. transmitted packets.
  29. config AF_RXRPC_DEBUG
  30. bool "RxRPC dynamic debugging"
  31. depends on AF_RXRPC
  32. help
  33. Say Y here to make runtime controllable debugging messages appear.
  34. See Documentation/networking/rxrpc.txt.
  35. config RXKAD
  36. bool "RxRPC Kerberos security"
  37. depends on AF_RXRPC
  38. select CRYPTO
  39. select CRYPTO_MANAGER
  40. select CRYPTO_BLKCIPHER
  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.txt.