From 25566c68109381178e0305f3e7e1464dea15b90b Mon Sep 17 00:00:00 2001 From: Jan Maria Matejka Date: Mon, 17 Dec 2018 12:58:01 +0100 Subject: Filter refactoring: Moved the bitfield bit position formula to route.h --- nest/route.h | 1 + 1 file changed, 1 insertion(+) (limited to 'nest') diff --git a/nest/route.h b/nest/route.h index 8dfbb376..74446f48 100644 --- a/nest/route.h +++ b/nest/route.h @@ -493,6 +493,7 @@ const char *ea_custom_name(uint ea); #define EA_CUSTOM_BIT 0x8000 #define EA_ALLOW_UNDEF 0x10000 /* ea_find: allow EAF_TYPE_UNDEF */ #define EA_BIT(n) ((n) << 24) /* Used in bitfield accessors */ +#define EA_BIT_GET(ea) ((ea) >> 24) #define EAF_TYPE_MASK 0x1f /* Mask with this to get type */ #define EAF_TYPE_INT 0x01 /* 32-bit unsigned integer number */ -- cgit v1.2.3