mirror of
https://git.freebsd.org/ports.git
synced 2025-05-18 18:13:12 -04:00
Changelog: https://tools.netsa.cert.org/yaf2/release-history.html#release-2.14.0 PR: 271249 Approved by: dikshie@sfc.wide.ad.jp (maintainer timeout)
15 lines
424 B
C
15 lines
424 B
C
--- src/decode.c.orig 2023-02-08 18:37:15 UTC
|
|
+++ src/decode.c
|
|
@@ -1653,6 +1653,12 @@ yfDecodeIP(
|
|
key->dp = 0;
|
|
}
|
|
break;
|
|
+ case YF_PROTO_TUNNEL_IP6:
|
|
+ if (!(pkt = yfDecodeIP(ctx, YF_TYPE_IPv6, caplen, pkt, key, iplen,
|
|
+ fraginfo, tcpinfo))) {
|
|
+ return NULL;
|
|
+ }
|
|
+ break;
|
|
default:
|
|
/* No layer 4 header we understand. Zero ports. */
|
|
key->sp = 0;
|