diff options
author | lns <matzeton@googlemail.com> | 2022-06-06 16:38:23 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2022-06-06 16:45:12 +0200 |
commit | eeb1ab6b30c9798d39d0986543b3bfd63923db5a (patch) | |
tree | 2f6cc781fd4d271cb08379c00a9f898245342bd2 /src | |
parent | 59c084b166c814a4331d91e176e757126f9373e9 (diff) |
Reimplemented 1kxun application protocol.add/1kxun
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/include/ndpi_protocol_ids.h | 1 | ||||
-rw-r--r-- | src/lib/ndpi_content_match.c.inc | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/include/ndpi_protocol_ids.h b/src/include/ndpi_protocol_ids.h index 3ec782bfd..29e87b277 100644 --- a/src/include/ndpi_protocol_ids.h +++ b/src/include/ndpi_protocol_ids.h @@ -323,6 +323,7 @@ typedef enum { NDPI_PROTOCOL_DAZN = 292, NDPI_PROTOCOL_GOTO = 293, /* GoTo products, mainly GoToMeeting */ NDPI_PROTOCOL_RSH = 294, + NDPI_PROTOCOL_1KXUN = 295, #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_protocol_ids.h" diff --git a/src/lib/ndpi_content_match.c.inc b/src/lib/ndpi_content_match.c.inc index 2fe501ab8..41b9847c3 100644 --- a/src/lib/ndpi_content_match.c.inc +++ b/src/lib/ndpi_content_match.c.inc @@ -1684,6 +1684,9 @@ static ndpi_protocol_match host_match[] = { "gotoroom.com", "GoTo", NDPI_PROTOCOL_GOTO, NDPI_PROTOCOL_CATEGORY_VOIP, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_DEFAULT_LEVEL }, { "joinwebinar.com", "GoTo", NDPI_PROTOCOL_GOTO, NDPI_PROTOCOL_CATEGORY_VOIP, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_DEFAULT_LEVEL }, + { "1kxun.com", "1kxun", NDPI_PROTOCOL_1KXUN, NDPI_PROTOCOL_CATEGORY_STREAMING, NDPI_PROTOCOL_FUN, NDPI_PROTOCOL_DEFAULT_LEVEL }, + { "1kxun.mobi", "1kxun", NDPI_PROTOCOL_1KXUN, 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 |