lwip-devel
[Top][All Lists]
Advanced

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

[lwip-devel] [patch #5952] Integration of AutoIP module


From: Frédéric Bernon
Subject: [lwip-devel] [patch #5952] Integration of AutoIP module
Date: Mon, 18 Jun 2007 14:15:42 +0000
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4

Follow-up Comment #16, patch #5952 (project lwip):

The warning problem seems to be due to a circular reference between etharp.h
and autoip.h. A simple solution is to replace ...

void autoip_arp_reply(struct netif *netif, struct etharp_hdr *hdr);

by...

void autoip_arp_reply(struct netif *netif, struct pbuf *p);

In autoip_arp_reply, we just have to add:

struct etharp_hdr *hdr;
hdr = p->payload;

No objects?

I also propose to integrate autoip_fine_tmr in tcpip.c like dhcp timers.

No objects?

Dominik, Can you provide some information about your autoip_init() code (why
macaddr is use like that)?




    _______________________________________________________

Reply to this item at:

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

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





reply via email to

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