From ac24b35b1fa36f8df6d586742200a0dc2d54f59e Mon Sep 17 00:00:00 2001 From: Toni Date: Wed, 3 Aug 2022 12:03:36 +0200 Subject: Add Discord dissector. (#1694) * fixed RiotGames false positive Signed-off-by: lns --- example/reader_util.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'example') diff --git a/example/reader_util.c b/example/reader_util.c index 7ccaba1fc..a7c970de7 100644 --- a/example/reader_util.c +++ b/example/reader_util.c @@ -1085,6 +1085,13 @@ void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_fl ndpi_snprintf(flow->softether.fqdn, sizeof(flow->softether.fqdn), "%s", flow->ndpi_flow->protos.softether.fqdn); } + /* DISCORD */ + else if(is_ndpi_proto(flow, NDPI_PROTOCOL_DISCORD) && !is_ndpi_proto(flow, NDPI_PROTOCOL_TLS) && + flow->ndpi_flow->protos.discord.client_ip[0] != '\0') { + flow->info_type = INFO_GENERIC; + ndpi_snprintf(flow->info, sizeof(flow->info), "Client IP: %s", + flow->ndpi_flow->protos.discord.client_ip); + } /* DNS */ else if(is_ndpi_proto(flow, NDPI_PROTOCOL_DNS)) { if(flow->ndpi_flow->protos.dns.rsp_type == 0x1) -- cgit v1.2.3