blob: 13396c74b5c12c7b875f7ff292baa472a61fe0d6 [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001#
2# RxRPC session sockets
3#
4
5config AF_RXRPC
6 tristate "RxRPC session sockets"
Kees Cookaf2b08d2012-10-02 11:20:00 -07007 depends on INET
David Howellsd5a784b2007-11-30 23:06:40 +11008 select CRYPTO
David Howells80c72fe2007-05-03 03:11:29 -07009 select KEYS
David Howells17926a72007-04-26 15:48:28 -070010 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
David Howellsd1912742016-09-17 07:26:01 +010022config 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
David Howells17926a72007-04-26 15:48:28 -070029
30config AF_RXRPC_DEBUG
31 bool "RxRPC dynamic debugging"
32 depends on AF_RXRPC
33 help
34 Say Y here to make runtime controllable debugging messages appear.
35
36 See Documentation/networking/rxrpc.txt.
37
38
39config RXKAD
David Howells648af7f2016-04-07 17:23:51 +010040 bool "RxRPC Kerberos security"
David Howells80c72fe2007-05-03 03:11:29 -070041 depends on AF_RXRPC
David Howellsb1bdb692007-04-27 15:28:45 -070042 select CRYPTO
43 select CRYPTO_MANAGER
44 select CRYPTO_BLKCIPHER
45 select CRYPTO_PCBC
46 select CRYPTO_FCRYPT
David Howells17926a72007-04-26 15:48:28 -070047 help
48 Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
49 through the use of the key retention service.
50
51 See Documentation/networking/rxrpc.txt.