diff options
author | Toni <matzeton@googlemail.com> | 2024-04-03 14:10:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-03 14:10:21 +0200 |
commit | 41eef9246c6a3055e3876e3dd7aeaadecb4b76c0 (patch) | |
tree | 275c7300abf2233e8d89896a3a888ada01fef4bb /example/reader_util.c | |
parent | b5e8bc22147d37011621ae62b680742c8fa105dc (diff) |
Disable `-Wno-unused-parameter -Wno-unused-function`. (#2358)
* unused parameters and functions pollute the code and decrease readability
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'example/reader_util.c')
-rw-r--r-- | example/reader_util.c | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/example/reader_util.c b/example/reader_util.c index d42b92d25..1afe4418f 100644 --- a/example/reader_util.c +++ b/example/reader_util.c @@ -114,7 +114,6 @@ u_int16_t max_pattern_len = 8; /* *********************************************************** */ int ndpi_analyze_payload(struct ndpi_flow_info *flow, - u_int8_t src_to_dst_direction, u_int8_t *payload, u_int16_t payload_len, u_int32_t packet_id) { @@ -194,7 +193,6 @@ int ndpi_analyze_payload(struct ndpi_flow_info *flow, /* *********************************************************** */ void ndpi_payload_analyzer(struct ndpi_flow_info *flow, - u_int8_t src_to_dst_direction, u_int8_t *payload, u_int16_t payload_len, u_int32_t packet_id) { u_int16_t i, j; @@ -215,7 +213,7 @@ void ndpi_payload_analyzer(struct ndpi_flow_info *flow, for(i=0; i<scan_len; i++) { for(j=min_pattern_len; j <= max_pattern_len; j++) { if((i+j) < payload_len) { - if(ndpi_analyze_payload(flow, src_to_dst_direction, &payload[i], j, packet_id) == -1) { + if(ndpi_analyze_payload(flow, &payload[i], j, packet_id) == -1) { LOG(NDPI_LOG_ERROR, "Error ndpi_analyze_payload (allocation failure)\n"); } } @@ -687,7 +685,6 @@ static struct ndpi_flow_info *get_ndpi_flow_info(struct ndpi_workflow * workflow ndpi_packet_tunnel tunnel_type, const struct ndpi_iphdr *iph, const struct ndpi_ipv6hdr *iph6, - u_int16_t ip_offset, u_int16_t ipsize, u_int16_t l4_packet_len, u_int16_t l4_offset, @@ -973,7 +970,6 @@ static struct ndpi_flow_info *get_ndpi_flow_info6(struct ndpi_workflow * workflo u_int16_t vlan_id, ndpi_packet_tunnel tunnel_type, const struct ndpi_ipv6hdr *iph6, - u_int16_t ip_offset, u_int16_t ipsize, struct ndpi_tcphdr **tcph, struct ndpi_udphdr **udph, @@ -1002,7 +998,7 @@ static struct ndpi_flow_info *get_ndpi_flow_info6(struct ndpi_workflow * workflo iph.protocol = l4proto; return(get_ndpi_flow_info(workflow, 6, vlan_id, tunnel_type, - &iph, iph6, ip_offset, ipsize, + &iph, iph6, ipsize, ip_len, l4ptr - (const u_int8_t *)iph6, tcph, udph, sport, dport, proto, payload, @@ -1430,7 +1426,6 @@ static struct ndpi_proto packet_processing(struct ndpi_workflow * workflow, ndpi_packet_tunnel tunnel_type, const struct ndpi_iphdr *iph, struct ndpi_ipv6hdr *iph6, - u_int16_t ip_offset, u_int16_t ipsize, u_int16_t rawsize, const struct pcap_pkthdr *header, const u_char *packet, @@ -1453,7 +1448,7 @@ static struct ndpi_proto packet_processing(struct ndpi_workflow * workflow, if(iph) flow = get_ndpi_flow_info(workflow, IPVERSION, vlan_id, tunnel_type, iph, NULL, - ip_offset, ipsize, + ipsize, ntohs(iph->tot_len) ? (ntohs(iph->tot_len) - (iph->ihl * 4)) : ipsize - (iph->ihl * 4) /* TSO */, iph->ihl * 4, &tcph, &udph, &sport, &dport, @@ -1461,7 +1456,7 @@ static struct ndpi_proto packet_processing(struct ndpi_workflow * workflow, &payload, &payload_len, &src_to_dst_direction, when); else flow = get_ndpi_flow_info6(workflow, vlan_id, - tunnel_type, iph6, ip_offset, ipsize, + tunnel_type, iph6, ipsize, &tcph, &udph, &sport, &dport, &proto, &payload, &payload_len, &src_to_dst_direction, when); @@ -1554,7 +1549,7 @@ static struct ndpi_proto packet_processing(struct ndpi_workflow * workflow, #endif if(enable_payload_analyzer && (payload_len > 0)) - ndpi_payload_analyzer(flow, src_to_dst_direction, + ndpi_payload_analyzer(flow, payload, payload_len, workflow->stats.ip_packet_count); @@ -1613,7 +1608,7 @@ static struct ndpi_proto packet_processing(struct ndpi_workflow * workflow, } if((!skip) && ((flow->src2dst_packets+flow->dst2src_packets) < 100)) { - if(ndpi_has_human_readeable_string(workflow->ndpi_struct, (char*)packet, header->caplen, + if(ndpi_has_human_readeable_string((char*)packet, header->caplen, human_readeable_string_len, flow->human_readeable_string_buffer, sizeof(flow->human_readeable_string_buffer)) == 1) @@ -2369,7 +2364,7 @@ struct ndpi_proto ndpi_workflow_process_packet(struct ndpi_workflow * workflow, /* process the packet */ return(packet_processing(workflow, time_ms, vlan_id, tunnel_type, iph, iph6, - ip_offset, header->caplen - ip_offset, + header->caplen - ip_offset, header->caplen, header, packet, header->ts, flow_risk)); } |