diff options
author | Toni <matzeton@googlemail.com> | 2021-06-29 15:32:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-29 15:32:16 +0200 |
commit | 1c2a0c36f130baa5eac1548d97da8553510849b3 (patch) | |
tree | 3eb15b6af4dbb2097d0370e3605d4bc6878229da /src/lib/ndpi_main.c | |
parent | e5fd86393e3528f9ed76ca51c607e8ca27155fcd (diff) |
Added Z39.50 protocol. (#1219)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
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 063812059..26d54fb51 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -1699,6 +1699,11 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp "FortiClient", NDPI_PROTOCOL_CATEGORY_VPN, 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_Z3950, + "Z39.50", + NDPI_PROTOCOL_CATEGORY_NETWORK, + ndpi_build_default_ports(ports_a, 210, 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" @@ -3865,6 +3870,9 @@ void ndpi_set_protocol_detection_bitmask2(struct ndpi_detection_module_struct *n /* Genshin Impact */ init_genshin_impact_dissector(ndpi_str, &a, detection_bitmask); + /* Z39.50 international standard client–server, application layer communications protocol */ + init_z3950_dissector(ndpi_str, &a, detection_bitmask); + #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_main_init.c" #endif |