Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Code cleanup | Luca Deri | 2023-08-31 |
| | |||
* | Fix compilation on Windows (#2072) | Ivan Nardi | 2023-08-14 |
| | |||
* | Replaces free() with ndpi_free() | Luca Deri | 2023-08-14 |
| | |||
* | Reworked ndpi_filter_xxx implementation using compressed bitmaps | Luca Deri | 2023-08-14 |
| | |||
* | Fixed to address issue | Luca Deri | 2023-08-12 |
| | | | | | | | | Run ./utils/check_symbols.sh || { FAILED=$?; echo "::error file=${NDPI_LIB}::Unwanted libc symbols found: ${FAILED}. Please make sure to use only ndpi_malloc/ndpi_calloc/ndpi_realloc/ndpi_free wrapper instead of malloc/calloc/realloc/free."; false; } [ndpi_filter.o]: calloc Unwanted symbols found: 1 Please make sure to use only ndpi_malloc/ndpi_calloc/ndpi_realloc/ndpi_free wrapper instead of malloc/calloc/realloc/free Error: Unwanted libc symbols found: 1. Please make sure to use only ndpi_malloc/ndpi_calloc/ndpi_realloc/ndpi_free wrapper instead of | ||
* | Added ndpi_filter_add_multi() API call | Luca Deri | 2023-08-11 |
| | |||
* | Minor initialization fixes | Luca Deri | 2023-08-11 |
| | |||
* | Added new API calls for implementing Bloom-filter like data structures | Luca Deri | 2023-08-11 |
ndpi_filter* ndpi_filter_alloc(uint32_t elements_number); bool ndpi_filter_add(ndpi_filter *f, uint64_t value); bool ndpi_filter_contains(ndpi_filter *f, uint64_t value); void ndpi_filter_free(ndpi_filter *f); |