aboutsummaryrefslogtreecommitdiffstats
path: root/lib/includes/hicn/protocol/ipv6.h
diff options
context:
space:
mode:
authorJordan Augé <jordan.auge+fdio@cisco.com>2020-09-23 17:50:52 +0200
committerMauro Sardara <msardara@cisco.com>2021-03-19 14:15:14 +0100
commita070b0de9f9e9cbca150eea4eda74757ca588bed (patch)
tree9f2a11fa1afcd51b0b14f4b26bebf4deb8289a2f /lib/includes/hicn/protocol/ipv6.h
parent32dccec98e4c7d7e4ce902e19ba8d1b29b823758 (diff)
[HICN-645] Control plane (WIP)
Change-Id: I4be6a40b690b62f22f57de6d8c10b01a1be42a6d Signed-off-by: Jordan Augé <jordan.auge+fdio@cisco.com> Signed-off-by: Enrico Loparco (eloparco) <eloparco@cisco.com> Signed-off-by: Mauro Sardara <msardara@cisco.com>
Diffstat (limited to 'lib/includes/hicn/protocol/ipv6.h')
-rw-r--r--lib/includes/hicn/protocol/ipv6.h37
1 files changed, 24 insertions, 13 deletions
diff --git a/lib/includes/hicn/protocol/ipv6.h b/lib/includes/hicn/protocol/ipv6.h
index 5a83abcae..0b5525aba 100644
--- a/lib/includes/hicn/protocol/ipv6.h
+++ b/lib/includes/hicn/protocol/ipv6.h
@@ -23,21 +23,32 @@
*/
#define EXPECTED_IPV6_HDRLEN 40
+// typedef struct
+// {
+// union
+// {
+// struct
+// {
+// u32 version_class_flow; /* version, traffic class and 20 bits of flow-ID */
+// u16 len; /* payload length */
+// u8 nxt; /* next header */
+// u8 hlim; /* hop limit */
+// };
+// u8 vfc; /* 4 bits version, top 4 bits class */
+// };
+// ip6_address_t saddr; /* source address */
+// ip6_address_t daddr; /* destination address */
+// } _ipv6_header_t;
+
+// TODO: temporary fix
typedef struct
{
- union
- {
- struct
- {
- u32 version_class_flow; /* version, traffic class and 20 bits of flow-ID */
- u16 len; /* payload length */
- u8 nxt; /* next header */
- u8 hlim; /* hop limit */
- };
- u8 vfc; /* 4 bits version, top 4 bits class */
- };
- ip6_address_t saddr; /* source address */
- ip6_address_t daddr; /* destination address */
+ u32 version_class_flow; /* version, traffic class and 20 bits of flow-ID */
+ u16 len; /* payload length */
+ u8 nxt; /* next header */
+ u8 hlim; /* hop limit */
+ ip6_address_t saddr; /* source address */
+ ip6_address_t daddr; /* destination address */
} _ipv6_header_t;
#define IPV6_HDRLEN sizeof(_ipv6_header_t)