Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# RxRPC session sockets
4#
5
6config AF_RXRPC
7 tristate "RxRPC session sockets"
8 depends on INET
9 select CRYPTO
10 select KEYS
11 select NET_UDP_TUNNEL
12 help
13 Say Y or M here to include support for RxRPC session sockets (just
14 the transport part, not the presentation part: (un)marshalling is
15 left to the application).
16
17 These are used for AFS kernel filesystem and userspace utilities.
18
19 This module at the moment only supports client operations and is
20 currently incomplete.
21
22 See Documentation/networking/rxrpc.rst.
23
24config AF_RXRPC_IPV6
25 bool "IPv6 support for RxRPC"
26 depends on (IPV6 = m && AF_RXRPC = m) || (IPV6 = y && AF_RXRPC)
27 help
28 Say Y here to allow AF_RXRPC to use IPV6 UDP as well as IPV4 UDP as
29 its network transport.
30
31config AF_RXRPC_INJECT_LOSS
32 bool "Inject packet loss into RxRPC packet stream"
33 depends on AF_RXRPC
34 help
35 Say Y here to inject packet loss by discarding some received and some
36 transmitted packets.
37
38
39config AF_RXRPC_DEBUG
40 bool "RxRPC dynamic debugging"
41 depends on AF_RXRPC
42 help
43 Say Y here to make runtime controllable debugging messages appear.
44
45 See Documentation/networking/rxrpc.rst.
46
47
48config RXKAD
49 bool "RxRPC Kerberos security"
50 depends on AF_RXRPC
51 select CRYPTO
52 select CRYPTO_MANAGER
53 select CRYPTO_SKCIPHER
54 select CRYPTO_PCBC
55 select CRYPTO_FCRYPT
56 help
57 Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
58 through the use of the key retention service.
59
60 See Documentation/networking/rxrpc.rst.