diff options
author | Jakub Kicinski | 2023-07-28 14:08:01 -0700 |
---|---|---|
committer | Jakub Kicinski | 2023-07-28 14:08:02 -0700 |
commit | 05191d8896b42cacb4551409b482d321b4321eff (patch) | |
tree | 73d34fe08c5127f99428be7f39ef1ed22b6a36e2 /net/tls | |
parent | 222a6c42e9ef131fd20463bf95d7ce7b39bee2f8 (diff) | |
parent | b470985c76df6d53a9454670fb7551e1197f55e2 (diff) |
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')
-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)) |