diff options
author | Vadim Fedorenko <vfedorenko@novek.ru> | 2020-11-24 18:24:46 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-11-27 14:32:37 -0800 |
commit | 6942a284fb3e6bcb8ab03c98ef5cb048e0fbb3e9 (patch) | |
tree | 9d7cac6b79e19d9703e2ec62f1b2943a54c8c4f8 /net/tls/tls_device.c | |
parent | 594e31bcebd6b8127ab8bcf37068ecef6c996459 (diff) | |
download | linux-6942a284fb3e6bcb8ab03c98ef5cb048e0fbb3e9.tar.bz2 |
net/tls: make inline helpers protocol-aware
Inline functions defined in tls.h have a lot of AES-specific
constants. Remove these constants and change argument to struct
tls_prot_info to have an access to cipher type in later patches
Signed-off-by: Vadim Fedorenko <vfedorenko@novek.ru>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/tls/tls_device.c')
-rw-r--r-- | net/tls/tls_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tls/tls_device.c b/net/tls/tls_device.c index 54d3e161d198..6f93ad5b7200 100644 --- a/net/tls/tls_device.c +++ b/net/tls/tls_device.c @@ -327,7 +327,7 @@ static int tls_device_record_close(struct sock *sk, /* fill prepend */ tls_fill_prepend(ctx, skb_frag_address(&record->frags[0]), record->len - prot->overhead_size, - record_type, prot->version); + record_type); return ret; } |