aboutsummaryrefslogtreecommitdiff
path: root/src/lib/ndpi_analyze.c
Commit message (Collapse)AuthorAge
* Added ndpi_bin_XXX APILuca Deri2020-06-22
| | | | Added packet lenght distribution bins
* Added HyperLogLog cardinality estimator API callsLuca Deri2020-06-10
| | | | | | | | | | | | | /* Memory lifecycle */ int ndpi_hll_init(struct ndpi_hll *hll, u_int8_t bits); void ndpi_hll_destroy(struct ndpi_hll *hll); /* Add values */ void ndpi_hll_add(struct ndpi_hll *hll, const char *data, size_t data_len); void ndpi_hll_add_number(struct ndpi_hll *hll, u_int32_t value) ; /* Get cardinality estimation */ double ndpi_hll_count(struct ndpi_hll *hll);
* Added ndpi_serialize_raw_record() API callLuca Deri2020-04-10
|
* Refreshed Tor node listLuca Deri2019-09-08
|
* Added ndpi_alloc_data_analysis APi callLuca Deri2019-09-02
|
* Added new parameter to -PLuca Deri2019-09-02
|
* Average calculation fixLuca2019-08-29
|
* Implemented IAT (Inter Arrival Time) statsLuca2019-08-29
|
* Added entropy, average, stddev, variance, bytes ratio calculationLuca2019-08-28
|
* Initial work towards traffic classificationLuca2019-08-27