Home | History | Annotate | Download | only in extensions

Lines Matching refs:info

51 	struct xt_connlimit_info *info = (void *)match->data;
54 memset(info->v6_mask, 0xFF, sizeof(info->v6_mask));
59 struct xt_connlimit_info *info = cb->data;
66 info->flags |= XT_CONNLIMIT_INVERT;
70 info->flags |= XT_CONNLIMIT_INVERT;
77 info->flags &= ~XT_CONNLIMIT_DADDR;
84 info->flags |= XT_CONNLIMIT_DADDR;
131 const struct xt_connlimit_info *info = (const void *)match->data;
134 (info->flags & XT_CONNLIMIT_DADDR) ? "dst" : "src",
135 count_bits4(info->v4_mask),
136 (info->flags & XT_CONNLIMIT_INVERT) ? "<=" : ">", info->limit);
142 const struct xt_connlimit_info *info = (const void *)match->data;
145 (info->flags & XT_CONNLIMIT_DADDR) ? "dst" : "src",
146 count_bits6(info->v6_mask),
147 (info->flags & XT_CONNLIMIT_INVERT) ? "<=" : ">", info->limit);
152 const struct xt_connlimit_info *info = (const void *)match->data;
155 if (info->flags & XT_CONNLIMIT_INVERT)
156 printf(" --connlimit-upto %u", info->limit);
158 printf(" --connlimit-above %u", info->limit);
159 printf(" --connlimit-mask %u", count_bits4(info->v4_mask));
161 if (info->flags & XT_CONNLIMIT_DADDR)
170 const struct xt_connlimit_info *info = (const void *)match->data;
173 if (info->flags & XT_CONNLIMIT_INVERT)
174 printf(" --connlimit-upto %u", info->limit);
176 printf(" --connlimit-above %u", info->limit);
177 printf(" --connlimit-mask %u", count_bits6(info->v6_mask));
179 if (info->flags & XT_CONNLIMIT_DADDR)