diff options
author | Luca Deri <deri@ntop.org> | 2022-04-01 09:02:05 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2022-04-01 09:02:05 +0200 |
commit | 8238e68275037d4e3fddac67dc65b81d8f5d35c7 (patch) | |
tree | 5d357733c574897f7af51bbef246e7c47b775066 | |
parent | 1e8cdd893cd6c7e9378b54ede7a215b761af4e9b (diff) |
Improvements for CUSTOM_NDPI_PROTOCOLS
-rw-r--r-- | src/lib/ndpi_content_match.c.inc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/ndpi_content_match.c.inc b/src/lib/ndpi_content_match.c.inc index f3a5f2526..516fb622e 100644 --- a/src/lib/ndpi_content_match.c.inc +++ b/src/lib/ndpi_content_match.c.inc @@ -887,6 +887,10 @@ static ndpi_network host_protocol_list[] = { https://help.salesforce.com/s/articleView?id=000321501&type=1 */ +#ifdef CUSTOM_NDPI_PROTOCOLS +#include "../../../nDPI-custom/custom_ndpi_content_match_host_protocol_list.c.inc" +#endif + /* End */ { 0x0, 0, 0 } }; @@ -1761,6 +1765,10 @@ static ndpi_protocol_match host_match[] = { "zn6qzq6caaucudesr-pluralsight.siteintercept.qualtrics.com", "Pluralsight", NDPI_PROTOCOL_PLURALSIGHT, NDPI_PROTOCOL_CATEGORY_STREAMING, NDPI_PROTOCOL_FUN, NDPI_PROTOCOL_DEFAULT_LEVEL }, { "ip-video-course-exercise-files-us-west-2.s3.us-west-2.amazonaws.com", "Pluralsight", NDPI_PROTOCOL_PLURALSIGHT, NDPI_PROTOCOL_CATEGORY_STREAMING, NDPI_PROTOCOL_FUN, NDPI_PROTOCOL_DEFAULT_LEVEL }, +#ifdef CUSTOM_NDPI_PROTOCOLS +#include "../../../nDPI-custom/custom_ndpi_content_match_host_match.c.inc" +#endif + { NULL, NULL, NDPI_PROTOCOL_UNKNOWN, NDPI_PROTOCOL_CATEGORY_UNSPECIFIED, NDPI_PROTOCOL_SAFE, NDPI_PROTOCOL_DEFAULT_LEVEL } }; |