diff options
Diffstat (limited to 'src/include/ndpi_utils.h')
-rw-r--r-- | src/include/ndpi_utils.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/ndpi_utils.h b/src/include/ndpi_utils.h index 340934c60..4d72849e1 100644 --- a/src/include/ndpi_utils.h +++ b/src/include/ndpi_utils.h @@ -12,6 +12,7 @@ // #define NDPI_ENABLE_DEBUG_INFO_MESSAGES // #define NDPI_ENABLE_DEBUG_TRACE_MESSAGES +#ifdef FRAG_MAN #ifdef NDPI_ENABLE_DEBUG_POINTER_MESSAGES #define DBGPOINTER(m, args...) MYDBG(m, ##args) #else @@ -58,12 +59,16 @@ typedef struct { int item_index; } sorter_index_item_t; + /* ***************************************************** */ extern void ins_sort_array(sorter_index_item_t arr[], int len); extern void shell_sort_array(sorter_index_item_t arr[], int len); extern void free_fragment(fragments_wrapper_t *frag); +#endif + + extern void printRawData(const uint8_t *ptr, size_t len); //extern uint8_t add_segment_to_buffer( struct ndpi_flow_struct *flow, struct ndpi_tcphdr const * tcph, uint32_t waited); //extern uint8_t check_for_sequence( struct ndpi_flow_struct *flow, struct ndpi_tcphdr const * tcph); |