diff options
author | Alfredo Cardigliano <cardigliano@ntop.org> | 2017-05-23 18:02:53 +0200 |
---|---|---|
committer | Alfredo Cardigliano <cardigliano@ntop.org> | 2017-05-23 18:02:53 +0200 |
commit | 26bd42a71c249575837021d5d8a6ae4c5bfa57b6 (patch) | |
tree | 68e7d4c121c7a198bb866cb3fe2f3caad1e0ea1e /example/ndpi_util.h | |
parent | 601f7f59ff2ae016970a796c6314f55423ed7fe9 (diff) |
crc32 fix
Diffstat (limited to 'example/ndpi_util.h')
-rw-r--r-- | example/ndpi_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/ndpi_util.h b/example/ndpi_util.h index e8d301acb..d7fdd9928 100644 --- a/example/ndpi_util.h +++ b/example/ndpi_util.h @@ -165,6 +165,6 @@ static inline void ndpi_workflow_set_flow_giveup_callback(struct ndpi_workflow * /* compare two nodes in workflow */ int ndpi_workflow_node_cmp(const void *a, const void *b); void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_flow_info *flow); -void ethernet_crc32(const void* data, size_t n_bytes, uint32_t* crc); +u_int32_t ethernet_crc32(const void* data, size_t n_bytes); void ndpi_flow_info_freer(void *node); #endif |