diff options
Diffstat (limited to 'src/lib/protocols/fix.c')
-rw-r--r-- | src/lib/protocols/fix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/protocols/fix.c b/src/lib/protocols/fix.c index f2d6cad7e..dcfce6065 100644 --- a/src/lib/protocols/fix.c +++ b/src/lib/protocols/fix.c @@ -43,7 +43,7 @@ void ndpi_search_fix(struct ndpi_detection_module_struct *ndpi_struct, struct nd packet->payload[5] == 0x2e) { NDPI_LOG_INFO(ndpi_struct, "found FIX\n"); - ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_FIX, NDPI_PROTOCOL_UNKNOWN); + ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_FIX, NDPI_PROTOCOL_UNKNOWN, NDPI_CONFIDENCE_DPI); return; } // 0. 9= @@ -53,7 +53,7 @@ void ndpi_search_fix(struct ndpi_detection_module_struct *ndpi_struct, struct nd packet->payload[5] == 0x3d) { NDPI_LOG_INFO(ndpi_struct, "found FIX\n"); - ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_FIX, NDPI_PROTOCOL_UNKNOWN); + ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_FIX, NDPI_PROTOCOL_UNKNOWN, NDPI_CONFIDENCE_DPI); return; } } |