diff options
author | Toni <matzeton@googlemail.com> | 2024-11-11 15:17:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-11 15:17:33 +0100 |
commit | ccbbcdf2834c84ab6a379c19dab7a4b7636fd412 (patch) | |
tree | 7982c4f50c7c845a051161f2ff8e4db44887a80d /example | |
parent | 35ef56cc2467e907fa1827a4e8058893dea0b8a7 (diff) |
Unify ndpi debug logging to always use a u16 protocol id (#2613)
* fixes SonarCloud complaint
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'example')
-rw-r--r-- | example/ndpiReader.c | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index e34c973ab..0bbcd1e55 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -2819,46 +2819,6 @@ static void node_idle_scan_walker(const void *node, ndpi_VISIT which, int depth, /* *********************************************** */ -#if 0 -/** - * @brief Print debug - */ -static void debug_printf(u_int32_t protocol, void *id_struct, - ndpi_log_level_t log_level, - const char *format, ...) { - va_list va_ap; - struct tm result; - - if(log_level <= nDPI_LogLevel) { - char buf[8192], out_buf[8192]; - char theDate[32]; - const char *extra_msg = ""; - time_t theTime = time(NULL); - - va_start (va_ap, format); - - if(log_level == NDPI_LOG_ERROR) - extra_msg = "ERROR: "; - else if(log_level == NDPI_LOG_TRACE) - extra_msg = "TRACE: "; - else - extra_msg = "DEBUG: "; - - memset(buf, 0, sizeof(buf)); - strftime(theDate, 32, "%d/%b/%Y %H:%M:%S", localtime_r(&theTime,&result)); - ndpi_snprintf(buf, sizeof(buf)-1, format, va_ap); - - ndpi_snprintf(out_buf, sizeof(out_buf), "%s %s%s", theDate, extra_msg, buf); - printf("%s", out_buf); - fflush(stdout); - } - - va_end(va_ap); -} -#endif - -/* *********************************************** */ - static int is_realtime_protocol(ndpi_protocol proto) { static u_int16_t const realtime_protos[] = { |