From c81968b94bfc4c3ce6923dbdfc69f23cc58094ed Mon Sep 17 00:00:00 2001 From: bol-van Date: Sat, 17 Jan 2026 22:40:08 +0300 Subject: [PATCH] nfqws2: fix wrong ipv6 dissection --- nfq2/darkmagic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nfq2/darkmagic.h b/nfq2/darkmagic.h index 9f0f276..e1363b6 100644 --- a/nfq2/darkmagic.h +++ b/nfq2/darkmagic.h @@ -136,7 +136,7 @@ bool proto_check_ipv4(const uint8_t *data, size_t len); void proto_skip_ipv4(const uint8_t **data, size_t *len); bool proto_check_ipv6(const uint8_t *data, size_t len); bool proto_check_ipv6_payload(const uint8_t *data, size_t len); -void proto_skip_ipv6(const uint8_t **data, size_t *len, uint8_t *proto_type, const uint8_t **last_header_type); +void proto_skip_ipv6(const uint8_t **data, size_t *len, uint8_t *proto_type); uint8_t *proto_find_ip6_exthdr(struct ip6_hdr *ip6, size_t len, uint8_t proto); bool proto_check_tcp(const uint8_t *data, size_t len); void proto_skip_tcp(const uint8_t **data, size_t *len);