aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorToni <matzeton@googlemail.com>2022-08-03 12:03:36 +0200
committerGitHub <noreply@github.com>2022-08-03 12:03:36 +0200
commitac24b35b1fa36f8df6d586742200a0dc2d54f59e (patch)
tree5bc908a8d240de648cc37975e798c6f9ede2f632 /example
parentc3c73e7bff903ec6ea939b61890d4b4214569198 (diff)
Add Discord dissector. (#1694)
* fixed RiotGames false positive Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'example')
-rw-r--r--example/reader_util.c7
1 files changed, 7 insertions, 0 deletions
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)