From 9939b5c30775993941a4b9afe01ddc36434afbf1 Mon Sep 17 00:00:00 2001 From: lns Date: Fri, 5 Aug 2022 21:26:54 +0200 Subject: Add TiVoConnect dissector. Fixes #1697. * added static assert if supported, to complain if the flow struct changes Signed-off-by: lns --- example/reader_util.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'example/reader_util.c') diff --git a/example/reader_util.c b/example/reader_util.c index a7c970de7..9c2b1cb02 100644 --- a/example/reader_util.c +++ b/example/reader_util.c @@ -1073,6 +1073,18 @@ void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_fl flow->bittorent_hash[j] = '\0'; } } + /* TIVOCONNECT */ + else if(is_ndpi_proto(flow, NDPI_PROTOCOL_TIVOCONNECT)) { + flow->info_type = INFO_TIVOCONNECT; + ndpi_snprintf(flow->tivoconnect.identity_uuid, sizeof(flow->tivoconnect.identity_uuid), + "%s", flow->ndpi_flow->protos.tivoconnect.identity_uuid); + ndpi_snprintf(flow->tivoconnect.machine, sizeof(flow->tivoconnect.machine), + "%s", flow->ndpi_flow->protos.tivoconnect.machine); + ndpi_snprintf(flow->tivoconnect.platform, sizeof(flow->tivoconnect.platform), + "%s", flow->ndpi_flow->protos.tivoconnect.platform); + ndpi_snprintf(flow->tivoconnect.services, sizeof(flow->tivoconnect.services), + "%s", flow->ndpi_flow->protos.tivoconnect.services); + } /* SOFTETHER */ else if(is_ndpi_proto(flow, NDPI_PROTOCOL_SOFTETHER) && !is_ndpi_proto(flow, NDPI_PROTOCOL_HTTP)) { flow->info_type = INFO_SOFTETHER; -- cgit v1.2.3