lwip-devel
[Top][All Lists]
Advanced

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

[lwip-devel] [patch #5824] gratuitous ARP


From: Frédéric Bernon
Subject: [lwip-devel] [patch #5824] gratuitous ARP
Date: Fri, 30 Mar 2007 09:23:08 +0000
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3

Follow-up Comment #9, patch #5824 (project lwip):

I think your patch is not good, because non-ethernet interfaces are not
break, just because... NETIF_FLAG_ETHARP should only be used on ethernet
devices (which can used etharp_ functions)!!! :)

loopif, slipif and ppp don't have to set (and don't set) NETIF_FLAG_ETHARP.

But this problem is more that 

if ((netif->flags & NETIF_FLAG_ETHARP) == 0) in netif_set_up

should be 

if ((netif->flags & NETIF_FLAG_ETHARP) != 0)

Thank for this fix...


    _______________________________________________________

Reply to this item at:

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

_______________________________________________
  Message posté via/par Savannah
  http://savannah.nongnu.org/





reply via email to

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