From 2a3ade397b250c5f13470c7be137ea763d216294 Mon Sep 17 00:00:00 2001 From: Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> Date: Mon, 20 Mar 2023 19:26:40 +0100 Subject: DisneyPlus/Hulu ip lists should be auto-generated (#1905) Remove two stale ip lists: 1) these 3 ips are in the Amazon ranges (now)... 2) the Instagram list originated from AS32934, which is now a Facebook AS; see https://github.com/ntop/nDPI/pull/1264/commits/8dabd06301a802dd38616ba8684a1d995783e023 --- src/lib/ndpi_main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/lib/ndpi_main.c') diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 3a21ceebc..fb063cc18 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -103,6 +103,8 @@ #include "inc_generated/ndpi_asn_vk.c.inc" #include "inc_generated/ndpi_asn_yandex.c.inc" #include "inc_generated/ndpi_asn_yandex_cloud.c.inc" +#include "inc_generated/ndpi_asn_disney_plus.c.inc" +#include "inc_generated/ndpi_asn_hulu.c.inc" /* Third party libraries */ #include "third_party/include/ndpi_patricia.h" @@ -2729,6 +2731,8 @@ struct ndpi_detection_module_struct *ndpi_init_detection_module(ndpi_init_prefs ndpi_init_ptree_ipv4(ndpi_str, ndpi_str->protocols_ptree, ndpi_protocol_vk_protocol_list); ndpi_init_ptree_ipv4(ndpi_str, ndpi_str->protocols_ptree, ndpi_protocol_yandex_protocol_list); ndpi_init_ptree_ipv4(ndpi_str, ndpi_str->protocols_ptree, ndpi_protocol_yandex_cloud_protocol_list); + ndpi_init_ptree_ipv4(ndpi_str, ndpi_str->protocols_ptree, ndpi_protocol_disneyplus_protocol_list); + ndpi_init_ptree_ipv4(ndpi_str, ndpi_str->protocols_ptree, ndpi_protocol_hulu_protocol_list); } if(prefs & ndpi_track_flow_payload) -- cgit v1.2.3