diff options
-rw-r--r-- | src/include/ndpi_api.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/ndpi_api.h b/src/include/ndpi_api.h index c1f7fac84..f62b1222b 100644 --- a/src/include/ndpi_api.h +++ b/src/include/ndpi_api.h @@ -32,6 +32,18 @@ extern "C" { #endif + /** + * This function returns the size of the flow struct + * @return the size of the flow struct + */ + u_int32_t ndpi_detection_get_sizeof_ndpi_flow_struct(void); + + /** + * This function returns the size of the id struct + * @return the size of the id struct + */ + u_int32_t ndpi_detection_get_sizeof_ndpi_id_struct(void); + /* Public malloc/free */ void* ndpi_malloc(unsigned long size); void* ndpi_calloc(unsigned long count, unsigned long size); |