diff options
author | Toni <matzeton@googlemail.com> | 2022-08-08 19:04:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-08 19:04:20 +0200 |
commit | 2e25c36396654cade3919dc4df36da2072096bb1 (patch) | |
tree | 6084e87015382a703fcd8b5536511d9d0728ad3e /example/reader_util.h | |
parent | 523360001e4c9e64d875febd9f024daa2691c31a (diff) |
Add TiVoConnect dissector. Fixes #1697. (#1699)
* 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.h | 7 |
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; |