diff options
-rw-r--r-- | src/lib/protocols/tftp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/protocols/tftp.c b/src/lib/protocols/tftp.c index 135d1bea2..4b505c8fd 100644 --- a/src/lib/protocols/tftp.c +++ b/src/lib/protocols/tftp.c @@ -165,6 +165,11 @@ static void ndpi_search_tftp(struct ndpi_detection_module_struct *ndpi_struct, } break; + case 0x06: + /* Option Acknowledgment (OACK) */ + /* No fixed lengths as it can include the options from the request. */ + break; + default: NDPI_EXCLUDE_PROTO(ndpi_struct, flow); return; |