diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2023-03-20 19:26:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 19:26:40 +0100 |
commit | 2a3ade397b250c5f13470c7be137ea763d216294 (patch) | |
tree | f6fa0f92f040efb00e4ce3d84200f21c9af8b3bd /src/lib/ndpi_main.c | |
parent | 3a75a46212c044efc423d1833be89c4f144438ec (diff) |
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
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 4 |
1 files changed, 4 insertions, 0 deletions
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) |