diff options
author | Jakub Kicinski <kuba@kernel.org> | 2023-07-28 23:08:01 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2023-07-28 23:08:02 +0200 |
commit | 05191d8896b42cacb4551409b482d321b4321eff (patch) | |
tree | 73d34fe08c5127f99428be7f39ef1ed22b6a36e2 /net/tls/tls.h | |
parent | octeontx2-af: Initialize 'cntr_val' to fix uninitialized symbol error (diff) | |
parent | net/handshake: Trace events for TLS Alert helpers (diff) | |
download | linux-05191d8896b42cacb4551409b482d321b4321eff.tar.xz linux-05191d8896b42cacb4551409b482d321b4321eff.zip |
Merge branch 'in-kernel-support-for-the-tls-alert-protocol'
Chuck Lever says:
====================
In-kernel support for the TLS Alert protocol
IMO the kernel doesn't need user space (ie, tlshd) to handle the TLS
Alert protocol. Instead, a set of small helper functions can be used
to handle sending and receiving TLS Alerts for in-kernel TLS
consumers.
====================
Merged on top of a tag in case it's needed in the NFS tree.
Link: https://lore.kernel.org/r/169047923706.5241.1181144206068116926.stgit@oracle-102.nfsv4bat.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/tls/tls.h')
-rw-r--r-- | net/tls/tls.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/tls/tls.h b/net/tls/tls.h index 7e4d45537deb..37539ac3ac2a 100644 --- a/net/tls/tls.h +++ b/net/tls/tls.h @@ -39,6 +39,7 @@ #include <linux/types.h> #include <linux/skmsg.h> #include <net/tls.h> +#include <net/tls_prot.h> #define TLS_PAGE_ORDER (min_t(unsigned int, PAGE_ALLOC_COSTLY_ORDER, \ TLS_MAX_PAYLOAD_SIZE >> PAGE_SHIFT)) |