Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # RxRPC session sockets
  3. #
  4. config AF_RXRPC
  5. tristate "RxRPC session sockets"
  6. depends on INET && EXPERIMENTAL
  7. select KEYS
  8. help
  9. Say Y or M here to include support for RxRPC session sockets (just
  10. the transport part, not the presentation part: (un)marshalling is
  11. left to the application).
  12. These are used for AFS kernel filesystem and userspace utilities.
  13. This module at the moment only supports client operations and is
  14. currently incomplete.
  15. See Documentation/networking/rxrpc.txt.
  16. config AF_RXRPC_DEBUG
  17. bool "RxRPC dynamic debugging"
  18. depends on AF_RXRPC
  19. help
  20. Say Y here to make runtime controllable debugging messages appear.
  21. See Documentation/networking/rxrpc.txt.
  22. config RXKAD
  23. tristate "RxRPC Kerberos security"
  24. depends on AF_RXRPC
  25. select CRYPTO
  26. select CRYPTO_MANAGER
  27. select CRYPTO_BLKCIPHER
  28. select CRYPTO_PCBC
  29. select CRYPTO_FCRYPT
  30. help
  31. Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
  32. through the use of the key retention service.
  33. See Documentation/networking/rxrpc.txt.