···35353636extern u32 ip_set_range_to_cidr(u32 from, u32 to, u8 *cidr);37373838+#define ip_set_mask_from_to(from, to, cidr) \3939+do { \4040+ from &= ip_set_hostmask(cidr); \4141+ to = from | ~ip_set_hostmask(cidr); \4242+} while (0)4343+3844#endif /*_PFXLEN_H */