diff options
author | Luca <deri@ntop.org> | 2019-10-29 19:12:42 +0100 |
---|---|---|
committer | Luca <deri@ntop.org> | 2019-10-29 19:12:42 +0100 |
commit | 0e54f87b181c163d18860a2cfcd30bbfeeaa1f6b (patch) | |
tree | f0a9dc5372f839d89c9740abcf14fe7c374d8c69 /src/lib/ndpi_main.c | |
parent | d2f04f5bdfe986082ca5e5f479a99e4c24a5a898 (diff) |
Added telnet dissector
Improved data report
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index c483e0f20..b28c2c331 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -6460,6 +6460,11 @@ u_int8_t ndpi_extra_dissection_possible(struct ndpi_detection_module_struct *ndp || (flow->protos.ssh.hassh_server[0] == '\0')) return(1); break; + + case NDPI_PROTOCOL_TELNET: + if(!flow->protos.telnet.username_detected) + return(1); + break; } return(0); @@ -6492,8 +6497,7 @@ const char* ndpi_get_l4_proto_name(ndpi_l4_proto_info proto) { /* ******************************************************************** */ ndpi_l4_proto_info ndpi_get_l4_proto_info(struct ndpi_detection_module_struct *ndpi_struct, - u_int16_t ndpi_proto_id) { - + u_int16_t ndpi_proto_id) { if(ndpi_proto_id < ndpi_struct->ndpi_num_supported_protocols) { u_int16_t idx = ndpi_struct->proto_defaults[ndpi_proto_id].protoIdx; NDPI_SELECTION_BITMASK_PROTOCOL_SIZE bm = ndpi_struct->callback_buffer[idx].ndpi_selection_bitmask; |