diff options
author | Jakub Kicinski <kuba@kernel.org> | 2022-04-08 06:38:17 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-04-08 13:49:08 +0300 |
commit | 7dc59c33d62c4520a119051d4486c214ef5caa23 (patch) | |
tree | 7ba139a1374660ed29a1e0ed51a79f59a27ca674 /include/net/strparser.h | |
parent | c3f6bb74137c68b515b7e2ff123a80611e801013 (diff) | |
download | linux-7dc59c33d62c4520a119051d4486c214ef5caa23.tar.xz |
tls: rx: don't store the decryption status in socket context
Similar justification to previous change, the information
about decryption status belongs in the skb.
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/strparser.h')
-rw-r--r-- | include/net/strparser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/strparser.h b/include/net/strparser.h index c271543076cf..a191486eb1e4 100644 --- a/include/net/strparser.h +++ b/include/net/strparser.h @@ -72,6 +72,7 @@ struct sk_skb_cb { u64 temp_reg; struct tls_msg { u8 control; + u8 decrypted; } tls; }; |