diff options
author | Vladimir Gavrilov <105977161+0xA50C1A1@users.noreply.github.com> | 2023-12-05 10:06:15 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-05 08:06:15 +0100 |
commit | be50493f4480a17fbcd88a4ae9cc6b825bc5970d (patch) | |
tree | 7dc08b9424771e56a304867900c1b5228ff7269d /src/lib/ndpi_main.c | |
parent | 7b0c16a70d25687ff7abaa859e3e11e54513286e (diff) |
Add IEEE C37.118 protocol dissector (#2193)
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 0a29295c2..026e6809a 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -2166,6 +2166,10 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp "ISO9506-1-MMS", NDPI_PROTOCOL_CATEGORY_IOT_SCADA, 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, 1 /* cleartext */, 0 /* nw proto */, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_IEEE_C37118, + "IEEE-C37118", NDPI_PROTOCOL_CATEGORY_IOT_SCADA, + ndpi_build_default_ports(ports_a, 4712, 0, 0, 0, 0) /* TCP */, + ndpi_build_default_ports(ports_b, 4713, 0, 0, 0, 0) /* UDP */); #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_main.c" @@ -5617,6 +5621,9 @@ static int ndpi_callback_init(struct ndpi_detection_module_struct *ndpi_str) { /* Manufacturing Message Specification */ init_iso9506_1_mms_dissector(ndpi_str, &a); + /* IEEE C37.118 Synchrophasor Protocol */ + init_ieee_c37118_dissector(ndpi_str, &a); + #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_main_init.c" #endif |