diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2023-07-21 03:41:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-21 03:41:43 +0200 |
commit | c85f2fb0f44f734a34ac905d4e35fcf479f19901 (patch) | |
tree | 560473f07584e41faaad4a03f473c6e22eb93a6c /src/include/ndpi_typedefs.h | |
parent | fa0bd515b5c4861ba05cb14732da85c98d537386 (diff) |
TLS: add basic, basic, detection of Encrypted ClientHello (#2053)
Diffstat (limited to 'src/include/ndpi_typedefs.h')
-rw-r--r-- | src/include/ndpi_typedefs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index 08ba99ef0..9844e7400 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -1524,6 +1524,11 @@ struct ndpi_flow_struct { u_int16_t cipher_suite; char *esni; } encrypted_sni; + + struct { + u_int16_t version; + } encrypted_ch; + ndpi_cipher_weakness server_unsafe_cipher; } tls_quic; /* Used also by DTLS and POPS/IMAPS/SMTPS/FTPS */ |