diff options
author | Vladimir Gavrilov <105977161+0xA50C1A1@users.noreply.github.com> | 2024-01-02 22:57:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-02 20:57:05 +0100 |
commit | 7f9973bd0ce2366c09c614d2fdb2883f27ba1106 (patch) | |
tree | a233c5d13a13ddfaa8faba8b1dc67a37f438ef24 /src/lib/ndpi_main.c | |
parent | 88d1416b7007307dabccf391cd5731059b376687 (diff) |
Add HL7 protocol dissector (#2240)
* Add HL7 protocol dissector
* Small fixes
* Small fixes
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 9f32c8c8b..0a6579bba 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -1089,6 +1089,7 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp NDPI_PROTOCOL_RTSP, NDPI_PROTOCOL_APACHE_THRIFT, NDPI_PROTOCOL_JSON_RPC, + NDPI_PROTOCOL_HL7, NDPI_PROTOCOL_MATCHED_BY_CONTENT, NDPI_PROTOCOL_NO_MORE_SUBPROTOCOLS); /* NDPI_PROTOCOL_HTTP can have (content-matched) subprotocols */ ndpi_set_proto_defaults(ndpi_str, 1 /* cleartext */, 0 /* nw proto */, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_MDNS, @@ -2226,6 +2227,10 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp "IEC62056", NDPI_PROTOCOL_CATEGORY_IOT_SCADA, ndpi_build_default_ports(ports_a, 4059, 0, 0, 0, 0) /* TCP */, ndpi_build_default_ports(ports_b, 4059, 0, 0, 0, 0) /* UDP */); + ndpi_set_proto_defaults(ndpi_str, 1 /* cleartext */, 0 /* nw proto */, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_HL7, + "HL7", NDPI_PROTOCOL_CATEGORY_RPC, + ndpi_build_default_ports(ports_a, 2575, 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" @@ -5738,6 +5743,9 @@ static int ndpi_callback_init(struct ndpi_detection_module_struct *ndpi_str) { /* IEC 62056 */ init_iec62056_dissector(ndpi_str, &a); + /* HL7 */ + init_hl7_dissector(ndpi_str, &a); + #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_main_init.c" #endif |