diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2023-04-17 17:32:33 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2023-04-20 04:48:48 +0300 |
commit | 2fd5532044a89d2403b543520b4902e196f7d165 (patch) | |
tree | 83a039a0f137dfb9878080629350e4b8b43712c1 /Documentation/netlink | |
parent | 3b3009ea8abb713b022d94fba95ec270cf6e7eae (diff) | |
download | linux-2fd5532044a89d2403b543520b4902e196f7d165.tar.xz |
net/handshake: Add a kernel API for requesting a TLSv1.3 handshake
To enable kernel consumers of TLS to request a TLS handshake, add
support to net/handshake/ to request a handshake upcall.
This patch also acts as a template for adding handshake upcall
support for other kernel transport layer security providers.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'Documentation/netlink')
-rw-r--r-- | Documentation/netlink/specs/handshake.yaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/netlink/specs/handshake.yaml b/Documentation/netlink/specs/handshake.yaml index 0333d92b1438..614f1a585511 100644 --- a/Documentation/netlink/specs/handshake.yaml +++ b/Documentation/netlink/specs/handshake.yaml @@ -16,7 +16,7 @@ definitions: type: enum name: handler-class value-start: 0 - entries: [ none, max ] + entries: [ none, tlshd, max ] - type: enum name: msg-type @@ -120,3 +120,5 @@ mcast-groups: list: - name: none + - + name: tlshd |