Rename ip_frag.* to ip4_frag.*

This commit is contained in:
Dirk Ziegelmeier 2016-07-19 10:12:56 +02:00
parent 7037b340c1
commit 72208cddfa
6 changed files with 8 additions and 8 deletions

View File

@ -53,7 +53,7 @@ CORE4FILES=$(LWIPDIR)/core/ipv4/autoip.c \
$(LWIPDIR)/core/ipv4/etharp.c \
$(LWIPDIR)/core/ipv4/icmp.c \
$(LWIPDIR)/core/ipv4/igmp.c \
$(LWIPDIR)/core/ipv4/ip_frag.c \
$(LWIPDIR)/core/ipv4/ip4_frag.c \
$(LWIPDIR)/core/ipv4/ip4.c \
$(LWIPDIR)/core/ipv4/ip4_addr.c

View File

@ -45,7 +45,7 @@
#include "lwip/ip.h"
#include "lwip/def.h"
#include "lwip/mem.h"
#include "lwip/ip_frag.h"
#include "lwip/ip4_frag.h"
#include "lwip/inet_chksum.h"
#include "lwip/netif.h"
#include "lwip/icmp.h"

View File

@ -42,7 +42,7 @@
#if LWIP_IPV4
#include "lwip/ip_frag.h"
#include "lwip/ip4_frag.h"
#include "lwip/def.h"
#include "lwip/inet_chksum.h"
#include "lwip/netif.h"

View File

@ -52,7 +52,7 @@
#include "lwip/timers.h"
#include "lwip/stats.h"
#include "lwip/etharp.h"
#include "lwip/ip_frag.h"
#include "lwip/ip4_frag.h"
#include "lwip/dns.h"
#include "lwip/netdb.h"
#include "lwip/nd6.h"

View File

@ -48,7 +48,7 @@
#include "lwip/memp.h"
#include "lwip/priv/tcpip_priv.h"
#include "lwip/ip_frag.h"
#include "lwip/ip4_frag.h"
#include "lwip/etharp.h"
#include "lwip/dhcp.h"
#include "lwip/autoip.h"

View File

@ -35,8 +35,8 @@
*
*/
#ifndef LWIP_HDR_IP_FRAG_H
#define LWIP_HDR_IP_FRAG_H
#ifndef LWIP_HDR_IP4_FRAG_H
#define LWIP_HDR_IP4_FRAG_H
#include "lwip/opt.h"
#include "lwip/err.h"
@ -97,4 +97,4 @@ err_t ip4_frag(struct pbuf *p, struct netif *netif, const ip4_addr_t *dest);
#endif /* LWIP_IPV4 */
#endif /* LWIP_HDR_IP_FRAG_H */
#endif /* LWIP_HDR_IP4_FRAG_H */