diff options
author | Luca Deri <deri@ntop.org> | 2024-05-17 16:38:02 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2024-05-17 16:38:02 +0200 |
commit | c63446e59220efd3b133bccbbd44ed97c86c78f1 (patch) | |
tree | 1566b243405aa95bf084dc1ee24792baa9abd3a6 /tests | |
parent | 33d3d254acf20fcdb1db106cdf8161e73b9e747a (diff) |
Cleaned up API
Removed
- int ndpi_load_ipv4_ptree_file(ndpi_ptree_t *tree, const char *path, u_int16_t protocol_id);
- int ndpi_load_ipv6_ptree_file(ndpi_ptree_t *tree, const char *path, u_int16_t protocol_id);
Added (it supports both IPv4 and v6)
+ int ndpi_load_ptree_file(ndpi_ptree_t *tree, const char *path, u_int16_t protocol_id);
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/do.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/do.sh.in b/tests/do.sh.in index d867bca0d..12f8b05dd 100755 --- a/tests/do.sh.in +++ b/tests/do.sh.in @@ -3,11 +3,11 @@ # # Use (to override results) # -# NDPI_FORCE_UPDATING_UTESTS_RESULTS=1 ./tests/do.sh +# NDPI_FORCE_UPDATING_UTESTS_RESULTS=1 ./do.sh # # To run tests in parallel: (you need **GNU** `parallel` program) # -# NDPI_FORCE_PARALLEL_UTESTS=1 ./tests/do.sh +# NDPI_FORCE_PARALLEL_UTESTS=1 ./do.sh cd "$(dirname "${0}")" |