mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
s3:utils: let smbstatus also report AES-256 encryption types for tcons
We already do that for sessions.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=15412
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Günther Deschner <gd@samba.org>
(cherry picked from commit 8119fd6d6a
)
This commit is contained in:
parent
c547e0c0ff
commit
6fbf5deb55
@ -549,6 +549,12 @@ static int traverse_connections(const struct connections_data *crec,
|
||||
case SMB2_ENCRYPTION_AES128_GCM:
|
||||
encryption = "AES-128-GCM";
|
||||
break;
|
||||
case SMB2_ENCRYPTION_AES256_CCM:
|
||||
encryption = "AES-256-CCM";
|
||||
break;
|
||||
case SMB2_ENCRYPTION_AES256_GCM:
|
||||
encryption = "AES-256-GCM";
|
||||
break;
|
||||
default:
|
||||
encryption = "???";
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user