summaryrefslogtreecommitdiffstats
path: root/ffd/types.h
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2012-09-24 22:44:42 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2012-09-24 22:44:42 +0200
commite16168401d61c20bf4d66d5636c30ad10874fc52 (patch)
tree769bc1f0b309d5dc88e1d0bd0263d911badf315f /ffd/types.h
parentb3b606e7f3e2f8bab7c92e70e8d0e15bf06e3e3b (diff)
downloadffd-e16168401d61c20bf4d66d5636c30ad10874fc52.tar
ffd-e16168401d61c20bf4d66d5636c30ad10874fc52.zip
Change lots of data structures for the new TLV-based protocool
Diffstat (limited to 'ffd/types.h')
-rw-r--r--ffd/types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ffd/types.h b/ffd/types.h
index 5eaaf46..cd2cbd2 100644
--- a/ffd/types.h
+++ b/ffd/types.h
@@ -37,8 +37,10 @@ typedef struct __attribute__((__packed__)) _eth_addr_t {
uint8_t d[ETH_ALEN];
} eth_addr_t;
-
#define ETH_ADDR_UNSPEC ((eth_addr_t){{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}})
+typedef struct _ffd_packet_t ffd_packet_t;
+
+
#endif /* _FFD_TYPES_H_ */