mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-18 11:43:34 +08:00
fix lwip2.1.0 port bug
fix lwip2.1.0 port bug
This commit is contained in:
parent
92b1502eec
commit
32d1bfd949
@ -49,6 +49,8 @@
|
||||
#include "lwip/dhcp.h"
|
||||
#include "lwip/inet.h"
|
||||
|
||||
#include "netif/etharp.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -75,6 +77,10 @@ static err_t netif_device_init(struct netif *netif)
|
||||
|
||||
/* copy device flags to netif flags */
|
||||
netif->flags = ethif->flags;
|
||||
netif->mtu = ETHERNET_MTU;
|
||||
|
||||
/* set output */
|
||||
netif->output = etharp_output;
|
||||
|
||||
return ERR_OK;
|
||||
}
|
||||
|
@ -156,6 +156,9 @@ static err_t eth_netif_device_init(struct netif *netif)
|
||||
/* copy device flags to netif flags */
|
||||
netif->flags = (ethif->flags & 0xff);
|
||||
netif->mtu = ETHERNET_MTU;
|
||||
|
||||
/* set output */
|
||||
netif->output = etharp_output;
|
||||
|
||||
#if LWIP_IPV6
|
||||
netif->output_ip6 = ethip6_output;
|
||||
@ -239,6 +242,9 @@ rt_err_t eth_device_init_with_flag(struct eth_device *dev, char *name, rt_uint16
|
||||
/* maximum transfer unit */
|
||||
netif->mtu = ETHERNET_MTU;
|
||||
|
||||
/* set linkoutput */
|
||||
netif->linkoutput = ethernetif_linkoutput;
|
||||
|
||||
/* get hardware MAC address */
|
||||
rt_device_control(&(dev->parent), NIOCTL_GADDR, netif->hwaddr);
|
||||
|
||||
@ -262,10 +268,6 @@ rt_err_t eth_device_init_with_flag(struct eth_device *dev, char *name, rt_uint16
|
||||
IP4_ADDR(&netmask, 0, 0, 0, 0);
|
||||
#endif
|
||||
netifapi_netif_add(netif, &ipaddr, &netmask, &gw, dev, eth_netif_device_init, tcpip_input);
|
||||
|
||||
/* set output */
|
||||
netif->output = etharp_output;
|
||||
netif->linkoutput = ethernetif_linkoutput;
|
||||
}
|
||||
|
||||
return RT_EOK;
|
||||
|
Loading…
x
Reference in New Issue
Block a user