Kconfig 1.0 KB

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