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:
patacongo
2007-12-11 14:28:16 +00:00
parent ea50c50b47
commit 23e67efbbd
16 changed files with 137 additions and 52 deletions
+2 -1
View File
@@ -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 */
+2 -1
View File
@@ -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.
*/
-7
View File
@@ -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
****************************************************************************/