diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-09-16 11:51:08 +0200 |
---|---|---|
committer | Toni <matzeton@googlemail.com> | 2022-09-16 15:21:49 +0200 |
commit | ec1981c20cb1e519ce6b87f17c344443a75c732d (patch) | |
tree | 480a82dd6a9897743c66255c02b5cf16420ce746 /src/lib/ndpi_main.c | |
parent | de020b174799da3420df60a763ac48cf9d1e7c50 (diff) |
Add Syncthing dissector.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
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 42b98fe45..0f56676d0 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -1982,6 +1982,10 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp "NAT-PMP", NDPI_PROTOCOL_CATEGORY_NETWORK, ndpi_build_default_ports(ports_a, 0, 0, 0, 0, 0) /* TCP */, ndpi_build_default_ports(ports_b, 5351, 0, 0, 0, 0) /* UDP */); + ndpi_set_proto_defaults(ndpi_str, 0 /* encrypted */, 0 /* nw proto */, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_SYNCTHING, + "Syncthing", NDPI_PROTOCOL_CATEGORY_DOWNLOAD_FT, + 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" @@ -4584,6 +4588,9 @@ static int ndpi_callback_init(struct ndpi_detection_module_struct *ndpi_str) { /* NATPMP */ init_natpmp_dissector(ndpi_str, &a, detection_bitmask); + /* Syncthing */ + init_syncthing_dissector(ndpi_str, &a, detection_bitmask); + #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_main_init.c" #endif |