Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 2 | # |
| 3 | # RxRPC session sockets |
| 4 | # |
| 5 | |
| 6 | config AF_RXRPC |
| 7 | tristate "RxRPC session sockets" |
Kees Cook | af2b08d | 2012-10-02 11:20:00 -0700 | [diff] [blame] | 8 | depends on INET |
David Howells | d5a784b | 2007-11-30 23:06:40 +1100 | [diff] [blame] | 9 | select CRYPTO |
David Howells | 80c72fe | 2007-05-03 03:11:29 -0700 | [diff] [blame] | 10 | select KEYS |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 11 | help |
| 12 | Say Y or M here to include support for RxRPC session sockets (just |
| 13 | the transport part, not the presentation part: (un)marshalling is |
| 14 | left to the application). |
| 15 | |
| 16 | These are used for AFS kernel filesystem and userspace utilities. |
| 17 | |
| 18 | This module at the moment only supports client operations and is |
| 19 | currently incomplete. |
| 20 | |
| 21 | See Documentation/networking/rxrpc.txt. |
| 22 | |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 23 | config AF_RXRPC_IPV6 |
| 24 | bool "IPv6 support for RxRPC" |
| 25 | depends on (IPV6 = m && AF_RXRPC = m) || (IPV6 = y && AF_RXRPC) |
| 26 | help |
| 27 | Say Y here to allow AF_RXRPC to use IPV6 UDP as well as IPV4 UDP as |
| 28 | its network transport. |
| 29 | |
David Howells | 8a681c36 | 2016-09-17 10:49:15 +0100 | [diff] [blame] | 30 | config AF_RXRPC_INJECT_LOSS |
| 31 | bool "Inject packet loss into RxRPC packet stream" |
| 32 | depends on AF_RXRPC |
| 33 | help |
| 34 | Say Y here to inject packet loss by discarding some received and some |
| 35 | transmitted packets. |
| 36 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 37 | |
| 38 | config AF_RXRPC_DEBUG |
| 39 | bool "RxRPC dynamic debugging" |
| 40 | depends on AF_RXRPC |
| 41 | help |
| 42 | Say Y here to make runtime controllable debugging messages appear. |
| 43 | |
| 44 | See Documentation/networking/rxrpc.txt. |
| 45 | |
| 46 | |
| 47 | config RXKAD |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 48 | bool "RxRPC Kerberos security" |
David Howells | 80c72fe | 2007-05-03 03:11:29 -0700 | [diff] [blame] | 49 | depends on AF_RXRPC |
David Howells | b1bdb69 | 2007-04-27 15:28:45 -0700 | [diff] [blame] | 50 | select CRYPTO |
| 51 | select CRYPTO_MANAGER |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 52 | select CRYPTO_SKCIPHER |
David Howells | b1bdb69 | 2007-04-27 15:28:45 -0700 | [diff] [blame] | 53 | select CRYPTO_PCBC |
| 54 | select CRYPTO_FCRYPT |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 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.txt. |