diff options
author | Luca Deri <deri@ntop.org> | 2019-06-16 16:05:13 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2019-06-16 16:05:13 +0200 |
commit | 1a3f2b3f0d16a0fad74a01bac5c0258fe005043f (patch) | |
tree | 580b43dd8c23602e7dbd194d8a9de93537a48371 /example/ndpiReader.c | |
parent | 5b7a08bac331d3d30f4ed29acb18f5c99c57883d (diff) |
Reworked SSL cipher handling
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r-- | example/ndpiReader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index 508050e12..87d86eaa0 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -845,7 +845,7 @@ static void printFlow(u_int16_t id, struct ndpi_flow_info *flow, u_int16_t threa if(flow->ssh_ssl.ja3_server[0] != '\0') fprintf(out, "[JA3S: %s%s]", flow->ssh_ssl.ja3_server, print_cipher(flow->ssh_ssl.server_unsafe_cipher)); if(flow->ssh_ssl.server_organization[0] != '\0') fprintf(out, "[organization: %s]", flow->ssh_ssl.server_organization); - if(flow->ssh_ssl.server_cipher != '\0') fprintf(out, "[%s]", print_cipher_id(flow->ssh_ssl.server_cipher));; + if(flow->ssh_ssl.server_cipher != '\0') fprintf(out, "[%s]", ndpi_cipher2str(flow->ssh_ssl.server_cipher));; if(flow->bittorent_hash[0] != '\0') fprintf(out, "[BT Hash: %s]", flow->bittorent_hash); |