diff options
author | Luca Deri <deri@ntop.org> | 2019-10-09 22:09:58 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2019-10-09 22:09:58 +0200 |
commit | 21bc84e837d1410c1cf8ab8817391a73c575aa4d (patch) | |
tree | 3dbd8672029494d930295d050d3b3849d1ca0328 /src/include/ndpi_api.h | |
parent | 203359ed7f0b001f8325ec8c9baf06077a375337 (diff) |
Modified API signatures for
- ndpi_ssl_version2str()
- ndpi_detection_giveup()
Diffstat (limited to 'src/include/ndpi_api.h')
-rw-r--r-- | src/include/ndpi_api.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/ndpi_api.h b/src/include/ndpi_api.h index ccca9cc25..3c30f1f69 100644 --- a/src/include/ndpi_api.h +++ b/src/include/ndpi_api.h @@ -225,12 +225,14 @@ extern "C" { * @par ndpi_struct = the detection module * @par flow = the flow given for the detection module * @par enable_guess = guess protocol if unknown + * @par protocol_was_guessed = 1 if the protocol was guesses (requires enable_guess = 1), 0 otherwise * @return the detected protocol even if the flow is not completed; * */ ndpi_protocol ndpi_detection_giveup(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow, - u_int8_t enable_guess); + u_int8_t enable_guess, + u_int8_t *protocol_was_guessed); /** * Processes an extra packet in order to get more information for a given protocol @@ -833,7 +835,7 @@ extern "C" { char *buffer, u_int buffer_size, u_int8_t min_string_match_len, /* Will return 0 if no string > min_string_match_len have been found */ char *outbuf, u_int outbuf_len); - char* ndpi_ssl_version2str(u_int16_t version); + char* ndpi_ssl_version2str(u_int16_t version, u_int8_t *unknown_tls_version); /* Serializer */ int ndpi_init_serializer_ll(ndpi_serializer *serializer, ndpi_serialization_format fmt, |