aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols/pando.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/protocols/pando.c')
-rw-r--r--src/lib/protocols/pando.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib/protocols/pando.c b/src/lib/protocols/pando.c
index 3237bbac8..b0762a976 100644
--- a/src/lib/protocols/pando.c
+++ b/src/lib/protocols/pando.c
@@ -154,4 +154,17 @@ void ndpi_search_pando(struct ndpi_detection_module_struct *ndpi_struct, struct
ndpi_check_pando_udp(ndpi_struct, flow);
}
+
+void init_pando_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask)
+{
+ ndpi_set_bitmask_protocol_detection("PANDO", ndpi_struct, detection_bitmask, *id,
+ NDPI_PROTOCOL_PANDO,
+ ndpi_search_pando,
+ NDPI_SELECTION_BITMASK_PROTOCOL_V4_V6_TCP_OR_UDP_WITHOUT_RETRANSMISSION,
+ SAVE_DETECTION_BITMASK_AS_UNKNOWN,
+ ADD_TO_DETECTION_BITMASK);
+
+ *id += 1;
+}
+
#endif