diff options
author | Luca Deri <deri@ntop.org> | 2021-02-09 21:48:46 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2021-02-09 21:48:46 +0100 |
commit | 0de3d4c37a06b800b740166b83a8ed108fbf76a4 (patch) | |
tree | 96026c8aa74f244452723f9c4d74622ba6285325 /src/lib/protocols/ftp_control.c | |
parent | 512f73f3817bbeeea06217d9250887d11446e9bf (diff) |
Dissection inprovements
Diffstat (limited to 'src/lib/protocols/ftp_control.c')
-rw-r--r-- | src/lib/protocols/ftp_control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/ftp_control.c b/src/lib/protocols/ftp_control.c index 15a917365..fa39962fa 100644 --- a/src/lib/protocols/ftp_control.c +++ b/src/lib/protocols/ftp_control.c @@ -591,7 +591,7 @@ static void ndpi_check_ftp_control(struct ndpi_detection_module_struct *ndpi_str } /* Break after 20 packets. */ - if(flow->packet_counter > 20) { + if(flow->packet_counter > 8) { NDPI_EXCLUDE_PROTO(ndpi_struct, flow); return; } |