mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-25 00:14:02 +00:00
bug #42998: made NETIF_MAX_HWADDR_LEN overridable for some special networks
This commit is contained in:
parent
936066aa03
commit
7cea4d7df6
@ -6,6 +6,10 @@ HISTORY
|
|||||||
|
|
||||||
++ New features:
|
++ New features:
|
||||||
|
|
||||||
|
2013-08-19: Simon Goldschmidt
|
||||||
|
* netif.h: bug #42998: made NETIF_MAX_HWADDR_LEN overridable for some special
|
||||||
|
networks
|
||||||
|
|
||||||
2013-03-17: Simon Goldschmidt (patch by Ghobad Emadi)
|
2013-03-17: Simon Goldschmidt (patch by Ghobad Emadi)
|
||||||
* opt.h, etharp.c: Added LWIP_HOOK_ETHARP_GET_GW to implement IPv4 routing with
|
* opt.h, etharp.c: Added LWIP_HOOK_ETHARP_GET_GW to implement IPv4 routing with
|
||||||
multiple gateways
|
multiple gateways
|
||||||
|
@ -60,9 +60,12 @@ extern "C" {
|
|||||||
/* Throughout this file, IP addresses are expected to be in
|
/* Throughout this file, IP addresses are expected to be in
|
||||||
* the same byte order as in IP_PCB. */
|
* the same byte order as in IP_PCB. */
|
||||||
|
|
||||||
/** must be the maximum of all used hardware address lengths
|
/** Must be the maximum of all used hardware address lengths
|
||||||
across all types of interfaces in use */
|
across all types of interfaces in use.
|
||||||
|
This does not have to be changed, normally. */
|
||||||
|
#ifndef NETIF_MAX_HWADDR_LEN
|
||||||
#define NETIF_MAX_HWADDR_LEN 6U
|
#define NETIF_MAX_HWADDR_LEN 6U
|
||||||
|
#endif
|
||||||
|
|
||||||
/** Whether the network interface is 'up'. This is
|
/** Whether the network interface is 'up'. This is
|
||||||
* a software flag used to control whether this network
|
* a software flag used to control whether this network
|
||||||
|
Loading…
Reference in New Issue
Block a user