diff options
author | Luca Deri <deri@ntop.org> | 2023-06-15 22:29:07 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2023-06-15 22:31:11 +0200 |
commit | 9cc4cbb9d136d5e131ce03c1e96fecc249601c88 (patch) | |
tree | 0d0501c398a33285b53ee5d6c2c71771732ca6a7 /example/reader_util.c | |
parent | 2321c11eb56211733050429bbeb0a89ddc0caed0 (diff) |
Reworked teams handling
Diffstat (limited to 'example/reader_util.c')
-rw-r--r-- | example/reader_util.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/example/reader_util.c b/example/reader_util.c index d044fb76a..712bcf606 100644 --- a/example/reader_util.c +++ b/example/reader_util.c @@ -1372,10 +1372,7 @@ void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_fl } } - if(is_ndpi_proto(flow, NDPI_PROTOCOL_ZOOM)) - flow->multimedia_flow_type = flow->ndpi_flow->zoom.flow_type; - else if(is_ndpi_proto(flow, NDPI_PROTOCOL_SKYPE_TEAMS_CALL)) - flow->multimedia_flow_type = flow->ndpi_flow->skype_teams.flow_type; + flow->multimedia_flow_type = flow->ndpi_flow->flow_type; /* HTTP metadata are "global" not in `flow->ndpi_flow->protos` union; for example, we can have HTTP/BitTorrent and in that case we want to export also HTTP attributes */ |