root/include/uapi/linux/netfilter/ipset/ip_set_bitmap.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
   2 #ifndef _UAPI__IP_SET_BITMAP_H
   3 #define _UAPI__IP_SET_BITMAP_H
   4 
   5 #include <linux/netfilter/ipset/ip_set.h>
   6 
   7 /* Bitmap type specific error codes */
   8 enum {
   9         /* The element is out of the range of the set */
  10         IPSET_ERR_BITMAP_RANGE = IPSET_ERR_TYPE_SPECIFIC,
  11         /* The range exceeds the size limit of the set type */
  12         IPSET_ERR_BITMAP_RANGE_SIZE,
  13 };
  14 
  15 
  16 #endif /* _UAPI__IP_SET_BITMAP_H */

/* [<][>][^][v][top][bottom][index][help] */