MXS-3051: Show connection TLS cipher
This tells the user whether a session is using TLS or not. Currently, only the client TLS cipher is shown in MaxCtrl as the backend ciphers require additional formatting.
This commit is contained in:
@ -3866,7 +3866,16 @@ json_t* dcb_to_json(DCB* dcb)
|
||||
char buf[25];
|
||||
snprintf(buf, sizeof(buf), "%p", dcb);
|
||||
json_object_set_new(obj, "id", json_string(buf));
|
||||
json_object_set_new(obj, "server", json_string(dcb->server->name));
|
||||
|
||||
if (dcb->server)
|
||||
{
|
||||
json_object_set_new(obj, "server", json_string(dcb->server->name));
|
||||
}
|
||||
|
||||
if (dcb->ssl)
|
||||
{
|
||||
json_object_set_new(obj, "cipher", json_string(SSL_get_cipher_name(dcb->ssl)));
|
||||
}
|
||||
|
||||
if (dcb->func.diagnostics_json)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user