From 9377991263b651be2f7b9a1320d24bcf63f17a1a Mon Sep 17 00:00:00 2001 From: Toni Date: Tue, 20 Apr 2021 14:12:16 +0200 Subject: Add HP Virtual Machine Group Management (hpvirtgrp) protocol. (#1170) Signed-off-by: Toni Uhlig --- src/lib/ndpi_main.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/lib/ndpi_main.c') diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 3ae724391..42d867fd0 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -1620,6 +1620,10 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp "SnapchatCall", NDPI_PROTOCOL_CATEGORY_VOIP, ndpi_build_default_ports(ports_a, 0, 0, 0, 0, 0) /* TCP */, ndpi_build_default_ports(ports_b, 0, 0, 0, 0, 0) /* UDP */); + ndpi_set_proto_defaults(ndpi_str, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_HPVIRTGRP, + "HP Virtual Machine Group Management", NDPI_PROTOCOL_CATEGORY_NETWORK, + ndpi_build_default_ports(ports_a, 0, 0, 0, 0, 0) /* TCP */, + ndpi_build_default_ports(ports_b, 0, 0, 0, 0, 0) /* UDP */); #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_main.c" @@ -3765,8 +3769,12 @@ void ndpi_set_protocol_detection_bitmask2(struct ndpi_detection_module_struct *n /* MongoDB */ init_mongodb_dissector(ndpi_str, &a, detection_bitmask); + /* AmongUS */ init_among_us_dissector(ndpi_str, &a, detection_bitmask); + /* HP Virtual Machine Group Management */ + init_hpvirtgrp_dissector(ndpi_str, &a, detection_bitmask); + #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_main_init.c" #endif -- cgit v1.2.3