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" |
Kees Cook | af2b08d | 2012-10-02 11:20:00 -0700 | [diff] [blame] | 7 | depends on INET |
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 | |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 22 | config 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 Howells | 8a681c36 | 2016-09-17 10:49:15 +0100 | [diff] [blame] | 29 | config 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 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 36 | |
| 37 | config 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 | |
| 46 | config RXKAD |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 47 | bool "RxRPC Kerberos security" |
David Howells | 80c72fe | 2007-05-03 03:11:29 -0700 | [diff] [blame] | 48 | depends on AF_RXRPC |
David Howells | b1bdb69 | 2007-04-27 15:28:45 -0700 | [diff] [blame] | 49 | select CRYPTO |
| 50 | select CRYPTO_MANAGER |
| 51 | select CRYPTO_BLKCIPHER |
| 52 | select CRYPTO_PCBC |
| 53 | select CRYPTO_FCRYPT |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 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. |