diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2022-02-20 10:19:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-20 10:19:52 +0100 |
commit | 2f5f445f7229592c9a9a108e39fa5db3dc456dce (patch) | |
tree | 5fc62676bfcae90c6add143074954d562bc97122 /src/include | |
parent | 75a53ad064bcb19570847554b72e9303d776b8fd (diff) |
Add support for Google Cloud (#1447)
Differentiate between Google its own apps/services and Google Cloud.
We already do something similar for Amazon vs AWS and Microsoft vs Azure.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/ndpi_protocol_ids.h | 1 | ||||
-rw-r--r-- | src/include/ndpi_typedefs.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/include/ndpi_protocol_ids.h b/src/include/ndpi_protocol_ids.h index 70b9850e2..cebb75b04 100644 --- a/src/include/ndpi_protocol_ids.h +++ b/src/include/ndpi_protocol_ids.h @@ -312,6 +312,7 @@ typedef enum { NDPI_PROTOCOL_GOOGLE_CLASSROOM = 281, NDPI_PROTOCOL_HSRP = 282, NDPI_PROTOCOL_CYBERSECURITY = 283, /* Cybersecurity companies */ + NDPI_PROTOCOL_GOOGLE_CLOUD = 284, #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_protocol_ids.h" diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index a86fa79da..e19e9f82c 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -1400,6 +1400,8 @@ typedef enum ndpi_dont_load_zoom_list = (1 << 7), ndpi_dont_load_cloudflare_list = (1 << 8), ndpi_dont_load_microsoft_list = (1 << 9), + ndpi_dont_load_google_list = (1 << 10), + ndpi_dont_load_google_cloud_list = (1 << 11), } ndpi_prefs; typedef struct { |