aboutsummaryrefslogtreecommitdiff
path: root/example/reader_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'example/reader_util.c')
-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 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;