diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2024-01-19 10:01:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-19 10:01:38 +0100 |
commit | eb129297e90babf6025e33ae7d24a51fb4f16a11 (patch) | |
tree | f9e089042021f10e1449a21cd1252d68a1c3f452 /src/lib/ndpi_main.c | |
parent | c83698c957b3ebc21d9e5bc78928e5140f79c0f1 (diff) |
Add a dedicated dissector for Zoom (#2265)
Move it from the RTP code and extend it
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 2d3eaf261..93060a2e5 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -5872,6 +5872,9 @@ static int ndpi_callback_init(struct ndpi_detection_module_struct *ndpi_str) { /* Mumble */ init_mumble_dissector(ndpi_str, &a); + /* Zoom */ + init_zoom_dissector(ndpi_str, &a); + #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_main_init.c" #endif |