From 5b2072ebb82e606ed1d0ae1345742716d6499e7e Mon Sep 17 00:00:00 2001 From: xueyunfei Date: Thu, 30 Apr 2020 16:56:47 +0800 Subject: [PATCH] fix bug for ipv6 frangment --- src/core/ipv6/ip6.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/ipv6/ip6.c b/src/core/ipv6/ip6.c index eda11dc88..9f0218cf1 100644 --- a/src/core/ipv6/ip6.c +++ b/src/core/ipv6/ip6.c @@ -1263,6 +1263,8 @@ ip6_output_if_src(struct pbuf *p, const ip6_addr_t *src, const ip6_addr_t *dest, if (netif_mtu6(netif) && (p->tot_len > nd6_get_destination_mtu(dest, netif))) { return ip6_frag(p, netif, dest); } +#else + LWIP_ERROR("ip6_output_if: Packets larger than MTU, discarded!!!",!(netif->mtu && p->tot_len > netif->mtu),return ERR_IF;); #endif /* LWIP_IPV6_FRAG */ LWIP_DEBUGF(IP6_DEBUG, ("netif->output_ip6()\n"));