aboutsummaryrefslogtreecommitdiff
path: root/example/ndpiReader.c
diff options
context:
space:
mode:
authorChiara Maggi <83759140+ChiaraMaggi@users.noreply.github.com>2023-07-11 22:45:19 +0200
committerGitHub <noreply@github.com>2023-07-11 22:45:19 +0200
commit0b0f255cc2b4ef18b9c1b51cf71e86de5b2c462b (patch)
tree38ac6f5ad37af500d0618109cae75bbb3a87f827 /example/ndpiReader.c
parent950f5cc4e3ddd9bc0f8881950082283aa381c805 (diff)
added feature to extract filename from http attachment (#2037)
* added feature to extract filename from http attachment * fixed some issues * added check for filename format * added check for filename format * remove an unnecessary print * changed the size from 952 to 960 * modified some test result files * small changes string size * comment removed and mallocs checked
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r--example/ndpiReader.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c
index f3daeaad6..be85bf0cc 100644
--- a/example/ndpiReader.c
+++ b/example/ndpiReader.c
@@ -1769,6 +1769,9 @@ static void printFlow(u_int32_t id, struct ndpi_flow_info *flow, u_int16_t threa
if(flow->http.user_agent[0] != '\0')
fprintf(out, "[User-Agent: %s]", flow->http.user_agent);
+ if(flow->http.filename[0] != '\0')
+ fprintf(out, "[Filename: %s]", flow->http.filename);
+
if(flow->risk) {
u_int i;
u_int16_t cli_score, srv_score;