Kconfig 1.67 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0-only
2 3 4 5 6 7
#
# RxRPC session sockets
#

config AF_RXRPC
	tristate "RxRPC session sockets"
8
	depends on INET
9
	select CRYPTO
10
	select KEYS
11
	select NET_UDP_TUNNEL
12 13 14 15 16 17 18 19 20 21
	help
	  Say Y or M here to include support for RxRPC session sockets (just
	  the transport part, not the presentation part: (un)marshalling is
	  left to the application).

	  These are used for AFS kernel filesystem and userspace utilities.

	  This module at the moment only supports client operations and is
	  currently incomplete.

22
	  See Documentation/networking/rxrpc.rst.
23

24 25
if AF_RXRPC

26 27 28 29 30 31 32
config AF_RXRPC_IPV6
	bool "IPv6 support for RxRPC"
	depends on (IPV6 = m && AF_RXRPC = m) || (IPV6 = y && AF_RXRPC)
	help
	  Say Y here to allow AF_RXRPC to use IPV6 UDP as well as IPV4 UDP as
	  its network transport.

33 34 35 36 37 38
config AF_RXRPC_INJECT_LOSS
	bool "Inject packet loss into RxRPC packet stream"
	help
	  Say Y here to inject packet loss by discarding some received and some
	  transmitted packets.

39 40 41 42 43 44

config AF_RXRPC_DEBUG
	bool "RxRPC dynamic debugging"
	help
	  Say Y here to make runtime controllable debugging messages appear.

45
	  See Documentation/networking/rxrpc.rst.
46 47 48


config RXKAD
49
	bool "RxRPC Kerberos security"
50 51
	select CRYPTO
	select CRYPTO_MANAGER
52
	select CRYPTO_SKCIPHER
53 54
	select CRYPTO_PCBC
	select CRYPTO_FCRYPT
55 56 57 58
	help
	  Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
	  through the use of the key retention service.

59
	  See Documentation/networking/rxrpc.rst.
60

61 62 63 64 65 66 67
config RXPERF
	tristate "RxRPC test service"
	help
	  Provide an rxperf service tester.  This listens on UDP port 7009 for
	  incoming calls from the rxperf program (an example of which can be
	  found in OpenAFS).

68
endif