diff options
Diffstat (limited to 'example/reader_util.c')
-rw-r--r-- | example/reader_util.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/example/reader_util.c b/example/reader_util.c index 6400d2260..2a726b6e1 100644 --- a/example/reader_util.c +++ b/example/reader_util.c @@ -546,11 +546,6 @@ static void ndpi_free_flow_tls_data(struct ndpi_flow_info *flow) { flow->ssh_tls.tls_subjectDN = NULL; } - if(flow->ssh_tls.encrypted_sni.esni) { - ndpi_free(flow->ssh_tls.encrypted_sni.esni); - flow->ssh_tls.encrypted_sni.esni = NULL; - } - if(flow->ssh_tls.ja4_client_raw) { ndpi_free(flow->ssh_tls.ja4_client_raw); flow->ssh_tls.ja4_client_raw = NULL; @@ -1563,11 +1558,6 @@ void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_fl if(flow->ndpi_flow->protos.tls_quic.subjectDN) flow->ssh_tls.tls_subjectDN = strdup(flow->ndpi_flow->protos.tls_quic.subjectDN); - if(flow->ndpi_flow->protos.tls_quic.encrypted_sni.esni) { - flow->ssh_tls.encrypted_sni.esni = strdup(flow->ndpi_flow->protos.tls_quic.encrypted_sni.esni); - flow->ssh_tls.encrypted_sni.cipher_suite = flow->ndpi_flow->protos.tls_quic.encrypted_sni.cipher_suite; - } - flow->ssh_tls.encrypted_ch.version = flow->ndpi_flow->protos.tls_quic.encrypted_ch.version; if(flow->ndpi_flow->protos.tls_quic.tls_supported_versions) { |