aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authoremanuele-f <faranda@ntop.org>2020-01-02 12:56:25 +0100
committeremanuele-f <faranda@ntop.org>2020-01-02 12:56:25 +0100
commita58a135758e6b98fe1ebed4ac595a837864ef5a3 (patch)
treee463c2bd2949d36e3884c0a49a5b0b40110dcdba /src/include
parent634457615c91ef27436db92210f32522277f1818 (diff)
Add fingerprint_set flag
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ndpi_typedefs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h
index bbfc76d18..25a2c8363 100644
--- a/src/include/ndpi_typedefs.h
+++ b/src/include/ndpi_typedefs.h
@@ -646,8 +646,8 @@ struct ndpi_flow_tcp_struct {
void* srv_cert_fingerprint_ctx; /* SHA-1 */
/* NDPI_PROTOCOL_TLS */
- u_int8_t hello_processed:1, certificate_processed:1, subprotocol_detected:1, _pad:5;
- int16_t fingerprint_len; /* Need to be signed */
+ u_int8_t hello_processed:1, certificate_processed:1, subprotocol_detected:1,
+ fingerprint_set:1, _pad:4;
u_int8_t sha1_certificate_fingerprint[20];
} tls;