Searched refs:ebt_entry_match (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/kernel/uapi/linux/netfilter_bridge/
H A Debtables.h96 struct ebt_entry_match { struct
165 #define EBT_MATCH_ITERATE(e, fn, args...) ({ unsigned int __i; int __ret = 0; struct ebt_entry_match *__match; for (__i = sizeof(struct ebt_entry); __i < (e)->watchers_offset; __i += __match->match_size + sizeof(struct ebt_entry_match)) { __match = (void *)(e) + __i; __ret = fn(__match , ## args); if (__ret != 0) break; } if (__ret == 0) { if (__i != (e)->watchers_offset) __ret = -EINVAL; } __ret; })

Completed in 62 milliseconds