June 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
26 | 27 | 28 | 29 | 30 | 31 | 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 1 | 2 | 3 | 4 | 5 | 6 |
01: #ifndef __IP_SET_BITMAP_H 02: #define __IP_SET_BITMAP_H 03: 04: /* Bitmap type specific error codes */ 05: enum { 06: /* The element is out of the range of the set */ 07: IPSET_ERR_BITMAP_RANGE = IPSET_ERR_TYPE_SPECIFIC, 08: /* The range exceeds the size limit of the set type */ 09: IPSET_ERR_BITMAP_RANGE_SIZE, 10: }; 11: 12: 13: #endif /* __IP_SET_BITMAP_H */ 14: