Kconfig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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_INJECT_RX_DELAY
  32. bool "Inject delay into packet reception"
  33. depends on SYSCTL
  34. help
  35. Say Y here to inject a delay into packet reception, allowing an
  36. extended RTT time to be modelled. The delay can be configured using
  37. /proc/sys/net/rxrpc/rxrpc_inject_rx_delay, setting a number of
  38. milliseconds up to 0.5s (note that the granularity is actually in
  39. jiffies).
  40. config AF_RXRPC_DEBUG
  41. bool "RxRPC dynamic debugging"
  42. help
  43. Say Y here to make runtime controllable debugging messages appear.
  44. See Documentation/networking/rxrpc.rst.
  45. config RXKAD
  46. bool "RxRPC Kerberos security"
  47. select CRYPTO
  48. select CRYPTO_MANAGER
  49. select CRYPTO_SKCIPHER
  50. select CRYPTO_PCBC
  51. select CRYPTO_FCRYPT
  52. help
  53. Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
  54. through the use of the key retention service.
  55. See Documentation/networking/rxrpc.rst.
  56. config RXPERF
  57. tristate "RxRPC test service"
  58. help
  59. Provide an rxperf service tester. This listens on UDP port 7009 for
  60. incoming calls from the rxperf program (an example of which can be
  61. found in OpenAFS).
  62. endif