diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-03-16 11:03:57 +0100 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2022-04-14 19:17:48 +0200 |
commit | c3df3a12aa88739e303340ccd7436d467b4662d2 (patch) | |
tree | 13355914f93b668afb47f2b5b643dffc073fb8e7 /src/lib/ndpi_community_id.c | |
parent | 4775be3d85434d4e385f43a47b783844bbfb2571 (diff) |
Fixed msys2 build warnings and re-activated CI Mingw64 build.fix/windows-msys2
* Removed Visual Studio leftovers. Maintaining an autotools project with VS integration requires some additional overhead.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'src/lib/ndpi_community_id.c')
-rw-r--r-- | src/lib/ndpi_community_id.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ndpi_community_id.c b/src/lib/ndpi_community_id.c index b27ad38d2..80f43e0ea 100644 --- a/src/lib/ndpi_community_id.c +++ b/src/lib/ndpi_community_id.c @@ -204,7 +204,7 @@ static int ndpi_community_id_finalize_and_compute_hash(u_int8_t *comm_buf, u_int switch(l4_proto) { case IPPROTO_ICMP: case IPPROTO_ICMPV6: - case IPPROTO_SCTP: + case NDPI_SCTP_PROTOCOL_TYPE: case IPPROTO_UDP: case IPPROTO_TCP: off += ndpi_community_id_buf_copy(&comm_buf[off], &src_port, sizeof(src_port)); @@ -285,7 +285,7 @@ int ndpi_flowv4_flow_hash(u_int8_t l4_proto, u_int32_t src_ip, u_int32_t dst_ip, src_port = icmp_type; dst_port = ndpi_community_id_icmp_type_to_code_v4(icmp_type, icmp_code, &icmp_one_way); break; - case IPPROTO_SCTP: + case NDPI_SCTP_PROTOCOL_TYPE: case IPPROTO_UDP: case IPPROTO_TCP: /* src/dst port ok */ @@ -344,7 +344,7 @@ int ndpi_flowv6_flow_hash(u_int8_t l4_proto, struct ndpi_in6_addr *src_ip, struc src_port = icmp_type; dst_port = ndpi_community_id_icmp_type_to_code_v6(icmp_type, icmp_code, &icmp_one_way); break; - case IPPROTO_SCTP: + case NDPI_SCTP_PROTOCOL_TYPE: case IPPROTO_UDP: case IPPROTO_TCP: /* src/dst port ok */ |