lwip-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-devel] [patch #7409] IPv6 support for LwIP 1.4.0RC1


From: Bill Auerbach
Subject: [lwip-devel] [patch #7409] IPv6 support for LwIP 1.4.0RC1
Date: Fri, 27 May 2011 17:47:05 +0000
User-agent: Mozilla/5.0 (Windows NT 5.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1

Follow-up Comment #23, patch #7409 (project lwip):

And in udp_sendto_chksum:


Not this:

#if LWIP_IPV6
    if (pcb->isipv6) {
      dst_ip_route = &pcb->local_ip;
    } else
#endif /* LWIP_IPV6 */
#if LWIP_IGMP
    {
      dst_ip_route = ip_2_ipX(&pcb->multicast_ip);
    }
#endif /* LWIP_IGMP */

but this (else moved):

#if LWIP_IPV6
    if (pcb->isipv6) {
      dst_ip_route = &pcb->local_ip;
    }
#endif /* LWIP_IPV6 */
#if LWIP_IGMP
    else {
      dst_ip_route = ip_2_ipX(&pcb->multicast_ip);
    }
#endif /* LWIP_IGMP */



    _______________________________________________________

Reply to this item at:

  <http://savannah.nongnu.org/patch/?7409>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]