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 "netif/etharp.h"
#include "lwip/sys.h" #include "lwip/sys.h"
#include "lwipopts.h" #include "lwip/opt.h"
#include "lwip/dhcp.h" #include "lwip/dhcp.h"
/** transaction identifier, unique over all DHCP requests */ /** transaction identifier, unique over all DHCP requests */

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -3,6 +3,9 @@
* Address Resolution Protocol module for IP over Ethernet * Address Resolution Protocol module for IP over Ethernet
* *
* $Log: etharp.c,v $ * $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 * Revision 1.26 2003/02/20 13:13:56 likewise
* Fixed some issues open after merging 'leon-dhcp'. Added new debugging. * 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 "netif/etharp.h"
#include "lwip/ip.h" #include "lwip/ip.h"
#include "lwip/stats.h" #include "lwip/stats.h"
#include "lwipopts.h"
/* ARP needs to inform DHCP of any ARP replies? */ /* ARP needs to inform DHCP of any ARP replies? */
#if (LWIP_DHCP && DHCP_DOES_ARP_CHECK) #if (LWIP_DHCP && DHCP_DOES_ARP_CHECK)