mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 16:50:55 +08:00
Moved MAC and ethernet definitions to include/net/ethernet.h
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@443 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -53,6 +53,7 @@
|
||||
****************************************************************************/
|
||||
|
||||
#include <net/uip/uipopt.h>
|
||||
#include <net/ethernet.h>
|
||||
|
||||
/****************************************************************************
|
||||
* Definitions
|
||||
@@ -86,7 +87,7 @@ struct uip_driver_s
|
||||
|
||||
/* Device identitity */
|
||||
|
||||
struct uip_eth_addr d_mac; /* Device MAC address */
|
||||
struct ether_addr d_mac; /* Device MAC address */
|
||||
|
||||
/* Network identity */
|
||||
|
||||
|
||||
@@ -36,10 +36,11 @@
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <nuttx/compiler.h>
|
||||
#include <net/ethernet.h>
|
||||
#include <net/uip/uip.h>
|
||||
|
||||
/* The Ethernet header -- 14 bytes. The first two fields are type 'struct
|
||||
* uip_eth_addr but are represented as a simple byte array here because
|
||||
* ether_addr but are represented as a simple byte array here because
|
||||
* some compilers refuse to pack 6 byte structures.
|
||||
*/
|
||||
|
||||
|
||||
@@ -210,13 +210,6 @@ struct uip_stats
|
||||
};
|
||||
#endif /* CONFIG_NET_STATISTICS */
|
||||
|
||||
/* Representation of a 48-bit Ethernet address */
|
||||
|
||||
struct uip_eth_addr
|
||||
{
|
||||
uint8 addr[6];
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user