diff options
author | Luca Deri <deri@ntop.org> | 2019-03-23 10:32:18 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2019-03-23 10:32:18 +0100 |
commit | f47be6ef6045a97a20f7a929d15a0354260c0414 (patch) | |
tree | 6ddabdbd3ea4c05aa0ba4a04ec507b468f714614 /example/ndpiReader.c | |
parent | f592b9fc31f2ef306d29ae1c9e5831dca597c9ad (diff) |
Added SSL organization support
Diffstat (limited to 'example/ndpiReader.c')
-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 fe0ea879b..4244e3745 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -804,6 +804,7 @@ static void printFlow(u_int16_t id, struct ndpi_flow_info *flow, u_int16_t threa if(flow->ssh_ssl.client_info[0] != '\0') fprintf(out, "[client: %s]", flow->ssh_ssl.client_info); if(flow->ssh_ssl.server_info[0] != '\0') fprintf(out, "[server: %s]", flow->ssh_ssl.server_info); + if(flow->ssh_ssl.server_organization[0] != '\0') fprintf(out, "[organization: %s]", flow->ssh_ssl.server_organization); if(flow->bittorent_hash[0] != '\0') fprintf(out, "[BT Hash: %s]", flow->bittorent_hash); fprintf(out, "\n"); |