aboutsummaryrefslogtreecommitdiff
path: root/example/reader_util.h
diff options
context:
space:
mode:
authorlns <matzeton@googlemail.com>2022-08-05 21:26:54 +0200
committerlns <matzeton@googlemail.com>2022-08-08 18:22:40 +0200
commit9939b5c30775993941a4b9afe01ddc36434afbf1 (patch)
tree6084e87015382a703fcd8b5536511d9d0728ad3e /example/reader_util.h
parent523360001e4c9e64d875febd9f024daa2691c31a (diff)
Add TiVoConnect dissector. Fixes #1697.add/tivoconnect
* added static assert if supported, to complain if the flow struct changes Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'example/reader_util.h')
-rw-r--r--example/reader_util.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/example/reader_util.h b/example/reader_util.h
index dab9ae57d..26510f700 100644
--- a/example/reader_util.h
+++ b/example/reader_util.h
@@ -163,6 +163,7 @@ enum info_type {
INFO_GENERIC,
INFO_KERBEROS,
INFO_SOFTETHER,
+ INFO_TIVOCONNECT,
INFO_FTP_IMAP_POP_SMTP,
INFO_TLS_QUIC_ALPN_VERSION,
INFO_TLS_QUIC_ALPN_ONLY,
@@ -234,6 +235,12 @@ typedef struct ndpi_flow_info {
char hostname[48];
char fqdn[48];
} softether;
+ struct {
+ char identity_uuid[36];
+ char machine[48];
+ char platform[32];
+ char services[48];
+ } tivoconnect;
};
ndpi_serializer ndpi_flow_serializer;