search for: ip_set_hash

Displaying 1 result from an estimated 1 matches for "ip_set_hash".

2017 Mar 28
4
[Bug 1139] New: The include guards on the include/libipset/linux_ip_set*.h are wrong
...-e 's@#(ifndef|define|endif[ \t]*/[*])[ \t]*_UAPI@#\1 @' \ which removes the _UAPI string prefix from the guard. In order to resolve this, in the ipset top level Makefile.am, in update_includes section, it needs to be changed from: update_includes: for x in ip_set.h ip_set_bitmap.h ip_set_hash.h ip_set_list.h; do \ cp kernel/include/uapi/linux/netfilter/ipset/$$x \ include/libipset/linux_$$x; \ done to update_includes: for x in ip_set.h ip_set_bitmap.h ip_set_hash.h ip_set_list.h; do \ sed -e 's@#(ifndef|define|endif[ \t]*/[*])[ \t]*_UAPI@#\1 @'...