David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1 | # |
| 2 | # RxRPC session sockets |
| 3 | # |
| 4 | |
| 5 | config AF_RXRPC |
| 6 | tristate "RxRPC session sockets" |
David Howells | 71a904b | 2007-05-22 16:13:49 -0700 | [diff] [blame] | 7 | depends on INET && EXPERIMENTAL |
David Howells | d5a784b | 2007-11-30 23:06:40 +1100 | [diff] [blame] | 8 | select CRYPTO |
David Howells | 80c72fe | 2007-05-03 03:11:29 -0700 | [diff] [blame] | 9 | select KEYS |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 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 | |
| 22 | |
| 23 | config AF_RXRPC_DEBUG |
| 24 | bool "RxRPC dynamic debugging" |
| 25 | depends on AF_RXRPC |
| 26 | help |
| 27 | Say Y here to make runtime controllable debugging messages appear. |
| 28 | |
| 29 | See Documentation/networking/rxrpc.txt. |
| 30 | |
| 31 | |
| 32 | config RXKAD |
| 33 | tristate "RxRPC Kerberos security" |
David Howells | 80c72fe | 2007-05-03 03:11:29 -0700 | [diff] [blame] | 34 | depends on AF_RXRPC |
David Howells | b1bdb69 | 2007-04-27 15:28:45 -0700 | [diff] [blame] | 35 | select CRYPTO |
| 36 | select CRYPTO_MANAGER |
| 37 | select CRYPTO_BLKCIPHER |
| 38 | select CRYPTO_PCBC |
| 39 | select CRYPTO_FCRYPT |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 40 | help |
| 41 | Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC |
| 42 | through the use of the key retention service. |
| 43 | |
| 44 | See Documentation/networking/rxrpc.txt. |