Add support for IP range drop and make features more modular.
This commit is contained in:
@@ -34,6 +34,10 @@
|
||||
|
||||
static __always_inline int IsIpInRange(u32 src_ip, u32 net_ip, u8 cidr);
|
||||
|
||||
#ifdef ENABLE_IP_RANGE_DROP
|
||||
static __always_inline int CheckIpRangeDrop(u32 ip);
|
||||
#endif
|
||||
|
||||
// The source file is included directly below instead of compiled and linked as an object because when linking, there is no guarantee the compiler will inline the function (which is crucial for performance).
|
||||
// I'd prefer not to include the function logic inside of the header file.
|
||||
// More Info: https://stackoverflow.com/questions/24289599/always-inline-does-not-work-when-function-is-implemented-in-different-file
|
||||
|
||||
Reference in New Issue
Block a user