diff options
author | Darryl Sokoloski <dsokoloski@clearfoundation.com> | 2018-04-14 15:02:57 -0400 |
---|---|---|
committer | Darryl Sokoloski <dsokoloski@clearfoundation.com> | 2018-04-24 10:20:06 -0400 |
commit | 3b5f32f261689fe7799a82a8c706231274dd52a8 (patch) | |
tree | eee011da466261e810b57544a1fac205c1a69593 /src | |
parent | 7798b964fe9d8f42a19b4fb03ec8ad6e3ad76e9c (diff) |
Added missing file, func, and line parameters to debug call-back typedef.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/ndpi_typedefs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index 14b2992a2..a338338d1 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -61,7 +61,8 @@ typedef struct ndpi_protocol_bitmask_struct { /* NDPI_DEBUG_FUNCTION_PTR (cast) */ typedef void (*ndpi_debug_function_ptr) (u_int32_t protocol, void *module_struct, - ndpi_log_level_t log_level, const char *format, ...); + ndpi_log_level_t log_level, const char *file, const char *func, unsigned line, + const char *format, ...); /* ************************************************************ */ |