diff options
author | Luca <deri@ntop.org> | 2020-01-02 07:37:03 +0100 |
---|---|---|
committer | Luca <deri@ntop.org> | 2020-01-02 07:37:03 +0100 |
commit | 8b01056b21905d4ad466aa74f7673ed06f66a64b (patch) | |
tree | ffe0b8599c94e2cf665bc879ad2f5ed9a633a1d9 /src/lib/ndpi_utils.c | |
parent | f6c7a33177d4db9c7fdac054b8b0e26f99715c28 (diff) |
Renamed TLS requested server name
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index 6979d099c..2e7fe4966 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -1043,7 +1043,8 @@ int ndpi_flow2json(struct ndpi_detection_module_struct *ndpi_struct, if(!unknown_tls_version) { ndpi_serialize_start_of_block(serializer, "tls"); ndpi_serialize_string_string(serializer, "version", version); - ndpi_serialize_string_string(serializer, "client_cert", flow->protos.stun_ssl.ssl.client_certificate); + ndpi_serialize_string_string(serializer, "client_requested_server_name", + flow->protos.stun_ssl.ssl.client_requested_server_name); if(flow->protos.stun_ssl.ssl.server_names) ndpi_serialize_string_string(serializer, "server_names", flow->protos.stun_ssl.ssl.server_names); ndpi_serialize_string_string(serializer, "issuer", flow->protos.stun_ssl.ssl.server_organization); |