diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2020-02-26 08:05:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-26 08:05:45 +0100 |
commit | a55c410202169d54857c9a736fe365e4ad5657a7 (patch) | |
tree | c2c81c9a64271500bb72c6443c5cc4bd8cf25305 /src/include/ndpi_api.h | |
parent | f07a3294471de26c83ed9915ad71f8e57e19a854 (diff) | |
parent | dcb6fde0c98ca0965b1362dcd94cc5c90b8e5c15 (diff) |
Merge pull request #848 from aouinizied/dev
nDPI 3.2 support in python cffi bindings
Diffstat (limited to 'src/include/ndpi_api.h')
-rw-r--r-- | src/include/ndpi_api.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/include/ndpi_api.h b/src/include/ndpi_api.h index e52993243..366bec80c 100644 --- a/src/include/ndpi_api.h +++ b/src/include/ndpi_api.h @@ -78,6 +78,25 @@ extern "C" { */ u_int32_t ndpi_detection_get_sizeof_ndpi_id_struct(void); + + /** + * Get the size of the flow tcp struct + * + * @return the size of the flow tcp struct + * + */ + u_int32_t ndpi_detection_get_sizeof_ndpi_flow_tcp_struct(void); + + + /** + * Get the size of the flow udp struct + * + * @return the size of the flow udp struct + * + */ + u_int32_t ndpi_detection_get_sizeof_ndpi_flow_udp_struct(void); + + /** * nDPI personal allocation and free functions **/ |