1#
2# RxRPC session sockets
3#
4
5config AF_RXRPC
6	tristate "RxRPC session sockets"
7	depends on INET && EXPERIMENTAL
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
14	  These are used for AFS kernel filesystem and userspace utilities.
15
16	  This module at the moment only supports client operations and is
17	  currently incomplete.
18
19	  See Documentation/networking/rxrpc.txt.
20
21
22config AF_RXRPC_DEBUG
23	bool "RxRPC dynamic debugging"
24	depends on AF_RXRPC
25	help
26	  Say Y here to make runtime controllable debugging messages appear.
27
28	  See Documentation/networking/rxrpc.txt.
29
30
31config RXKAD
32	tristate "RxRPC Kerberos security"
33	depends on AF_RXRPC
34	select CRYPTO
35	select CRYPTO_MANAGER
36	select CRYPTO_BLKCIPHER
37	select CRYPTO_PCBC
38	select CRYPTO_FCRYPT
39	help
40	  Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
41	  through the use of the key retention service.
42
43	  See Documentation/networking/rxrpc.txt.
44