diff options
author | Michele Campus <fci1908@gmail.com> | 2017-07-29 22:14:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-29 22:14:52 +0200 |
commit | f336f1a340b4d6bf417fab56e76b5a7937b8b368 (patch) | |
tree | cb073f7722206efbd8f20a4fcf70c3657b3cdf66 /src/lib | |
parent | 9a809bf673712806f7bb6ed7c0d30ba697bbdcb6 (diff) | |
parent | fbfe3e004ce48ecf4d5287c003d4176a7f4c252e (diff) |
Merge pull request #428 from k0ste/newfeature
Added Sony Playstation protocol.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/ndpi_content_match.c.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/ndpi_content_match.c.inc b/src/lib/ndpi_content_match.c.inc index 3896f3a08..a87dbb728 100644 --- a/src/lib/ndpi_content_match.c.inc +++ b/src/lib/ndpi_content_match.c.inc @@ -8246,6 +8246,10 @@ ndpi_protocol_match host_match[] = { { ".nintendo.net", "Nintendo", NDPI_PROTOCOL_NINTENDO, NDPI_PROTOCOL_CATEGORY_GAME, NDPI_PROTOCOL_FUN }, { ".nintendo.com", "Nintendo", NDPI_PROTOCOL_NINTENDO, NDPI_PROTOCOL_CATEGORY_GAME, NDPI_PROTOCOL_FUN }, + { ".playstation.net", "Playstation", NDPI_PROTOCOL_PLAYSTATION, NDPI_PROTOCOL_CATEGORY_GAME, NDPI_PROTOCOL_FUN }, + { ".playstation.com", "Playstation", NDPI_PROTOCOL_PLAYSTATION, NDPI_PROTOCOL_CATEGORY_GAME, NDPI_PROTOCOL_FUN }, + { ".sonyentertainmentnetwork.com", "Playstation", NDPI_PROTOCOL_PLAYSTATION, NDPI_PROTOCOL_CATEGORY_GAME, NDPI_PROTOCOL_FUN }, + { NULL, 0 } }; |