summaryrefslogtreecommitdiff
path: root/nuttx/net/uip/uip-neighbor.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-12-11 14:28:16 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-12-11 14:28:16 +0000
commit5aa10a765807c59b4ba7e8bc546723125992eacc (patch)
tree37f83fc854c9a8e5330849b89cda2bf06ce76edf /nuttx/net/uip/uip-neighbor.h
parentb01a17e3235e9cbe98a11ff3095e6792b8e6eb9c (diff)
downloadpx4-nuttx-5aa10a765807c59b4ba7e8bc546723125992eacc.tar.gz
px4-nuttx-5aa10a765807c59b4ba7e8bc546723125992eacc.tar.bz2
px4-nuttx-5aa10a765807c59b4ba7e8bc546723125992eacc.zip
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
Diffstat (limited to 'nuttx/net/uip/uip-neighbor.h')
-rw-r--r--nuttx/net/uip/uip-neighbor.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/nuttx/net/uip/uip-neighbor.h b/nuttx/net/uip/uip-neighbor.h
index 277b5f848..f939b1710 100644
--- a/nuttx/net/uip/uip-neighbor.h
+++ b/nuttx/net/uip/uip-neighbor.h
@@ -35,13 +35,14 @@
#define __UIP_NEIGHBOR_H__
#include <net/uip/uip.h>
+#include <net/ethernet.h>
struct uip_neighbor_addr
{
#if UIP_NEIGHBOR_CONF_ADDRTYPE
UIP_NEIGHBOR_CONF_ADDRTYPE addr;
#else
- struct uip_eth_addr addr;
+ struct ether_addr addr;
#endif
};