do not directly include lwipopts.h but lwip/opt.h instead

This commit is contained in:
jani 2003-02-20 16:32:22 +00:00
parent 6319ffbcb8
commit 8e9aa84070
7 changed files with 8 additions and 8 deletions

View File

@ -68,7 +68,7 @@
#include "netif/etharp.h"
#include "lwip/sys.h"
#include "lwipopts.h"
#include "lwip/opt.h"
#include "lwip/dhcp.h"
/** transaction identifier, unique over all DHCP requests */

View File

@ -30,7 +30,7 @@
*
*/
#include "lwipopts.h"
#include "lwip/opt.h"
#include "lwip/memp.h"

View File

@ -48,7 +48,7 @@
#include "lwip/tcp.h"
#include "lwipopts.h"
#include "lwip/opt.h"
/* Incremented every coarse grained timer shot
(typically every 500 ms, determined by TCP_COARSE_TIMEOUT). */

View File

@ -5,7 +5,7 @@
#define __LWIP_DHCP_H__
#include "udp.h"
#include "lwipopts.h"
#include "lwip/opt.h"
/** period (in seconds) of the application calling dhcp_coarse_tmr() */
#define DHCP_COARSE_TIMER_SECS 60

View File

@ -34,8 +34,7 @@
#define __LWIP_MEMP_H__
#include "lwip/debug.h"
#include "arch/cc.h"
#include "lwipopts.h"
#include "lwip/opt.h"
typedef enum {
MEMP_PBUF,

View File

@ -32,7 +32,6 @@
#ifndef __LWIP_NETIF_H__
#define __LWIP_NETIF_H__
#include "lwipopts.h"
#include "lwip/opt.h"
#include "lwip/err.h"

View File

@ -3,6 +3,9 @@
* Address Resolution Protocol module for IP over Ethernet
*
* $Log: etharp.c,v $
* Revision 1.27 2003/02/20 16:32:24 jani
* do not directly include lwipopts.h but lwip/opt.h instead
*
* Revision 1.26 2003/02/20 13:13:56 likewise
* Fixed some issues open after merging 'leon-dhcp'. Added new debugging.
*
@ -158,7 +161,6 @@ RFC 3220 4.6 IP Mobility Support for IPv4 January 2002
#include "netif/etharp.h"
#include "lwip/ip.h"
#include "lwip/stats.h"
#include "lwipopts.h"
/* ARP needs to inform DHCP of any ARP replies? */
#if (LWIP_DHCP && DHCP_DOES_ARP_CHECK)