diff --git a/doc/changelog.txt b/doc/changelog.txt index 0afcdba..fc26536 100644 --- a/doc/changelog.txt +++ b/doc/changelog.txt @@ -5,6 +5,7 @@ HEAD - xt_SYSRQ: fix UDPLITE header lookup in IPv6 - xt_TARPIT: fix kernel warning about RTAX_HOPLIMIT being used - xt_TEE: abort build when the feature is already provided by mainline +- xt_ipp2p: support UDPLITE - xt_pknock: support UDPLITE - xt_psd: restore functionality with UDP - xt_psd: support UDPLITE diff --git a/extensions/xt_ipp2p.c b/extensions/xt_ipp2p.c index 25cdc61..2b74a74 100644 --- a/extensions/xt_ipp2p.c +++ b/extensions/xt_ipp2p.c @@ -868,6 +868,7 @@ ipp2p_mt(const struct sk_buff *skb, struct xt_action_param *par) } case IPPROTO_UDP: /* what to do with an UDP packet */ + case IPPROTO_UDPLITE: { const struct udphdr *udph = (const void *)ip + ip_hdrlen(skb);