From 6a923ca4626b2c29872c7a759a37516a62eb0eb9 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Wed, 9 Jan 2019 18:28:10 -0500 Subject: [PATCH] lib: Add another 32 bit accessor to the prefix data structure It would be nice to have the ability to access the prefix data structure address as a block of 4 uint32_t's. This will allow me to easily/quickly update the v6 address by 1. This will be used in subsuquent commits. Signed-off-by: Donald Sharp --- lib/prefix.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/prefix.h b/lib/prefix.h index 4247569137..04c62b19e2 100644 --- a/lib/prefix.h +++ b/lib/prefix.h @@ -162,6 +162,7 @@ struct prefix { } lp; struct ethaddr prefix_eth; /* AF_ETHERNET */ uint8_t val[16]; + uint32_t val32[4]; uintptr_t ptr; struct evpn_addr prefix_evpn; /* AF_EVPN */ struct flowspec_prefix prefix_flowspec; /* AF_FLOWSPEC */ -- 2.39.5