diff options
author | Toni <matzeton@googlemail.com> | 2023-12-13 19:55:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-13 19:55:18 +0100 |
commit | ef62391dba4814ab840539406f276685ba8535f1 (patch) | |
tree | 63747aef9ada5faafdec2807a63f5d23034228e5 /src/lib/protocols/ethereum.c | |
parent | bda037c57f604d26e6566b35f512aabe9d97a32b (diff) |
Add Monero protocol classification. (#2196)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/lib/protocols/ethereum.c')
-rw-r--r-- | src/lib/protocols/ethereum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/protocols/ethereum.c b/src/lib/protocols/ethereum.c index 5aaafc641..6440330ab 100644 --- a/src/lib/protocols/ethereum.c +++ b/src/lib/protocols/ethereum.c @@ -36,7 +36,7 @@ enum ether_disc_packet_type { /* ************************************************************************** */ -static u_int32_t ndpi_ether_make_lru_cache_key(struct ndpi_flow_struct *flow) { +u_int32_t mining_make_lru_cache_key(struct ndpi_flow_struct *flow) { u_int32_t key; /* network byte order */ @@ -53,7 +53,7 @@ static u_int32_t ndpi_ether_make_lru_cache_key(struct ndpi_flow_struct *flow) { static void ndpi_ether_cache_connection(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow) { if(ndpi_struct->mining_cache) - ndpi_lru_add_to_cache(ndpi_struct->mining_cache, ndpi_ether_make_lru_cache_key(flow), NDPI_PROTOCOL_ETHEREUM, ndpi_get_current_time(flow)); + ndpi_lru_add_to_cache(ndpi_struct->mining_cache, mining_make_lru_cache_key(flow), NDPI_PROTOCOL_ETHEREUM, ndpi_get_current_time(flow)); } /* ************************************************************************** */ |