diff options
author | Luca Deri <deri@ntop.org> | 2020-05-28 17:44:18 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2020-05-28 17:44:18 +0200 |
commit | 9c3bfeca80a5064ce5ac689002a9f518d0cb3347 (patch) | |
tree | e845e6d58531680c7466603b3118289042a3fa21 /example/reader_util.h | |
parent | f6038c358a71ab43bd1e1b53103659f62ea5adce (diff) |
Added support for Encrypted TLS SNI dissection
https://datatracker.ietf.org/doc/draft-ietf-tls-sni-encryption/
Diffstat (limited to 'example/reader_util.h')
-rw-r--r-- | example/reader_util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/example/reader_util.h b/example/reader_util.h index 789729c33..f8302866f 100644 --- a/example/reader_util.h +++ b/example/reader_util.h @@ -204,6 +204,10 @@ typedef struct ndpi_flow_info { ja3_client[33], ja3_server[33], sha1_cert_fingerprint[20]; u_int8_t sha1_cert_fingerprint_set; + struct { + u_int16_t cipher_suite; + char *esni; + } encrypted_sni; time_t notBefore, notAfter; u_int16_t server_cipher; ndpi_cipher_weakness client_unsafe_cipher, server_unsafe_cipher; |