Kconfig 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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_DEBUG
  18. bool "RxRPC dynamic debugging"
  19. depends on AF_RXRPC
  20. help
  21. Say Y here to make runtime controllable debugging messages appear.
  22. See Documentation/networking/rxrpc.txt.
  23. config RXKAD
  24. tristate "RxRPC Kerberos security"
  25. depends on AF_RXRPC
  26. select CRYPTO
  27. select CRYPTO_MANAGER
  28. select CRYPTO_BLKCIPHER
  29. select CRYPTO_PCBC
  30. select CRYPTO_FCRYPT
  31. help
  32. Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
  33. through the use of the key retention service.
  34. See Documentation/networking/rxrpc.txt.