diff options
author | Luca <deri@ntop.org> | 2019-08-08 15:20:05 +0200 |
---|---|---|
committer | Luca <deri@ntop.org> | 2019-08-08 15:20:05 +0200 |
commit | cce8a6026fab8d62e8e2cf484ed14531b1dc248b (patch) | |
tree | de8e9b2539386cf9525a79ff4be371ce9769afaf /src/lib/ndpi_utils.c | |
parent | 419160f351c35c9ccf1f4d4c148b68f846a828a6 (diff) |
Reworked SSL/TLS field naming
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index af43f2bef..00e75c822 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -303,7 +303,7 @@ int strncasecmp(const char *s1, const char *s2, size_t n) { /* **************************************** */ -u_int8_t ndpi_is_safe_tls_cipher(u_int32_t cipher) { +u_int8_t ndpi_is_safe_ssl_cipher(u_int32_t cipher) { /* https://community.qualys.com/thread/18212-how-does-qualys-determine-the-server-cipher-suites */ /* INSECURE */ switch(cipher) { @@ -709,7 +709,7 @@ int ndpi_has_human_readeable_string(struct ndpi_detection_module_struct *ndpi_st /* ********************************** */ -char* ndpi_tls_version2str(u_int16_t version) { +char* ndpi_ssl_version2str(u_int16_t version) { static char v[8]; switch(version) { |