From 1a01e8dc687df706ef775122a5bc31baa07f12d4 Mon Sep 17 00:00:00 2001 From: Toni Date: Sun, 3 Jul 2022 14:37:05 +0200 Subject: Improved TFTP. Dissect Read/Write Request filenames. (#1617) Signed-off-by: Toni Uhlig --- 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 eb0ba1b5b..a81f87f6b 100644 --- a/example/reader_util.c +++ b/example/reader_util.c @@ -1118,6 +1118,13 @@ void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_fl flow->ftp_imap_pop_smtp.auth_failed = flow->ndpi_flow->l4.tcp.ftp_imap_pop_smtp.auth_failed; } + /* TFTP */ + else if(is_ndpi_proto(flow, NDPI_PROTOCOL_TFTP)) { + flow->info_type = INFO_GENERIC; + if(flow->ndpi_flow->protos.tftp.filename[0] != '\0') + ndpi_snprintf(flow->info, sizeof(flow->info), "Filename: %s", + flow->ndpi_flow->protos.tftp.filename); + } /* KERBEROS */ else if(is_ndpi_proto(flow, NDPI_PROTOCOL_KERBEROS)) { flow->info_type = INFO_KERBEROS; -- cgit v1.2.3