diff options
author | Luca <deri@ntop.org> | 2019-08-07 19:35:33 +0200 |
---|---|---|
committer | Luca <deri@ntop.org> | 2019-08-07 19:35:33 +0200 |
commit | 49f5beab84593eaca08f61d88b69f9dc17936cb9 (patch) | |
tree | 72b57a15ab9624f590a087847fd0c134c409748a /example | |
parent | ff1234cce3a2c6baff7dadf8bf888f6af74a795d (diff) |
Added client SSL hello
Diffstat (limited to 'example')
-rw-r--r-- | example/ndpiReader.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index fd7963ed1..4dc4b24af 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -945,6 +945,7 @@ static void printFlow(u_int16_t id, struct ndpi_flow_info *flow, u_int16_t threa if(flow->info[0] != '\0') fprintf(out, "[%s]", flow->info); if(flow->ssh_ssl.ssl_version != 0) fprintf(out, "[%s]", ndpi_ssl_version2str(flow->ssh_ssl.ssl_version)); + if(flow->ssh_ssl.client_info[0] != '\0') fprintf(out, "[client: %s]", flow->ssh_ssl.client_info); if(flow->ssh_ssl.ja3_client[0] != '\0') fprintf(out, "[JA3C: %s%s]", flow->ssh_ssl.ja3_client, print_cipher(flow->ssh_ssl.client_unsafe_cipher)); if(flow->ssh_ssl.server_info[0] != '\0') fprintf(out, "[server: %s]", flow->ssh_ssl.server_info); |