diff options
author | Toni <matzeton@googlemail.com> | 2020-12-08 15:49:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-08 15:49:17 +0100 |
commit | 62cd852c6f0b7d0f131a646c534136f6fa118fab (patch) | |
tree | fc85ffb6c67657d91f6e39fe3f8dbe710dacce12 /src/include | |
parent | 1ecc6d323eff8f5d7990e88675c1cc99c4eadb79 (diff) |
Rename Jabber detection name as we are not sure if it is unencrypted e.g. if START_TLS used. (#1079)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/ndpi_protocol_ids.h | 2 | ||||
-rw-r--r-- | src/include/ndpi_typedefs.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/ndpi_protocol_ids.h b/src/include/ndpi_protocol_ids.h index 6f12a6507..5d699a845 100644 --- a/src/include/ndpi_protocol_ids.h +++ b/src/include/ndpi_protocol_ids.h @@ -96,7 +96,7 @@ typedef enum { NDPI_PROTOCOL_PS_VUE = 64, NDPI_PROTOCOL_IRC = 65, NDPI_PROTOCOL_AYIYA = 66, - NDPI_PROTOCOL_UNENCRYPTED_JABBER = 67, + NDPI_PROTOCOL_JABBER = 67, NDPI_PROTOCOL_NATS = 68, NDPI_PROTOCOL_AMONG_US = 69, /* Toni Uhlig <matzeton@googlemail.com> */ NDPI_PROTOCOL_YAHOO = 70, diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index c196a1760..f9e1b8c41 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -538,7 +538,7 @@ struct ndpi_id_struct { /* NDPI_PROTOCOL_ZATTOO */ u_int32_t zattoo_ts; - /* NDPI_PROTOCOL_UNENCRYPTED_JABBER */ + /* NDPI_PROTOCOL_JABBER */ u_int32_t jabber_stun_or_ft_ts; /* NDPI_PROTOCOL_DIRECTCONNECT */ @@ -557,7 +557,7 @@ struct ndpi_id_struct { u_int16_t bt_port_t[NDPI_BT_PORTS]; u_int16_t bt_port_u[NDPI_BT_PORTS]; - /* NDPI_PROTOCOL_UNENCRYPTED_JABBER */ + /* NDPI_PROTOCOL_JABBER */ #define JABBER_MAX_STUN_PORTS 6 u_int16_t jabber_voice_stun_port[JABBER_MAX_STUN_PORTS]; u_int16_t jabber_file_transfer_port[2]; @@ -575,7 +575,7 @@ struct ndpi_id_struct { /* NDPI_PROTOCOL_IRC */ u_int8_t irc_number_of_port; - /* NDPI_PROTOCOL_UNENCRYPTED_JABBER */ + /* NDPI_PROTOCOL_JABBER */ u_int8_t jabber_voice_stun_used_ports; /* NDPI_PROTOCOL_SIP */ |