aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols/rx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/protocols/rx.c')
-rw-r--r--src/lib/protocols/rx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/protocols/rx.c b/src/lib/protocols/rx.c
index 7aa2e009a..e5bc70c5d 100644
--- a/src/lib/protocols/rx.c
+++ b/src/lib/protocols/rx.c
@@ -187,7 +187,7 @@ void ndpi_check_rx(struct ndpi_detection_module_struct *ndpi_struct,
flow->l4.udp.rx_conn_id == header->conn_id)
{
NDPI_LOG_INFO(ndpi_struct, "found RX\n");
- ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_RX, NDPI_PROTOCOL_UNKNOWN);
+ ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_RX, NDPI_PROTOCOL_UNKNOWN, NDPI_CONFIDENCE_DPI);
}
/* https://www.central.org/frameless/numbers/rxservice.html. */
else
@@ -200,7 +200,7 @@ void ndpi_check_rx(struct ndpi_detection_module_struct *ndpi_struct,
flow->l4.udp.rx_conn_id = header->conn_id;
{
NDPI_LOG_INFO(ndpi_struct, "found RX\n");
- ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_RX, NDPI_PROTOCOL_UNKNOWN);
+ ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_RX, NDPI_PROTOCOL_UNKNOWN, NDPI_CONFIDENCE_DPI);
}
}
}