Linux Audio

Check our new training course

Loading...
v6.2
 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
24if AF_RXRPC
25
26config AF_RXRPC_IPV6
27	bool "IPv6 support for RxRPC"
28	depends on (IPV6 = m && AF_RXRPC = m) || (IPV6 = y && AF_RXRPC)
29	help
30	  Say Y here to allow AF_RXRPC to use IPV6 UDP as well as IPV4 UDP as
31	  its network transport.
32
33config AF_RXRPC_INJECT_LOSS
34	bool "Inject packet loss into RxRPC packet stream"
 
35	help
36	  Say Y here to inject packet loss by discarding some received and some
37	  transmitted packets.
38
39
40config AF_RXRPC_DEBUG
41	bool "RxRPC dynamic debugging"
 
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	select CRYPTO
51	select CRYPTO_MANAGER
52	select CRYPTO_SKCIPHER
53	select CRYPTO_PCBC
54	select CRYPTO_FCRYPT
55	help
56	  Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
57	  through the use of the key retention service.
58
59	  See Documentation/networking/rxrpc.rst.
60
61config RXPERF
62	tristate "RxRPC test service"
63	help
64	  Provide an rxperf service tester.  This listens on UDP port 7009 for
65	  incoming calls from the rxperf program (an example of which can be
66	  found in OpenAFS).
67
68endif
v4.17
 
 1#
 2# RxRPC session sockets
 3#
 4
 5config AF_RXRPC
 6	tristate "RxRPC session sockets"
 7	depends on INET
 8	select CRYPTO
 9	select KEYS
 
10	help
11	  Say Y or M here to include support for RxRPC session sockets (just
12	  the transport part, not the presentation part: (un)marshalling is
13	  left to the application).
14
15	  These are used for AFS kernel filesystem and userspace utilities.
16
17	  This module at the moment only supports client operations and is
18	  currently incomplete.
19
20	  See Documentation/networking/rxrpc.txt.
 
 
21
22config AF_RXRPC_IPV6
23	bool "IPv6 support for RxRPC"
24	depends on (IPV6 = m && AF_RXRPC = m) || (IPV6 = y && AF_RXRPC)
25	help
26	  Say Y here to allow AF_RXRPC to use IPV6 UDP as well as IPV4 UDP as
27	  its network transport.
28
29config AF_RXRPC_INJECT_LOSS
30	bool "Inject packet loss into RxRPC packet stream"
31	depends on AF_RXRPC
32	help
33	  Say Y here to inject packet loss by discarding some received and some
34	  transmitted packets.
35
36
37config AF_RXRPC_DEBUG
38	bool "RxRPC dynamic debugging"
39	depends on AF_RXRPC
40	help
41	  Say Y here to make runtime controllable debugging messages appear.
42
43	  See Documentation/networking/rxrpc.txt.
44
45
46config RXKAD
47	bool "RxRPC Kerberos security"
48	depends on AF_RXRPC
49	select CRYPTO
50	select CRYPTO_MANAGER
51	select CRYPTO_BLKCIPHER
52	select CRYPTO_PCBC
53	select CRYPTO_FCRYPT
54	help
55	  Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
56	  through the use of the key retention service.
57
58	  See Documentation/networking/rxrpc.txt.