Home | History | Annotate | Download | only in extensions

Lines Matching refs:info

43 	struct xt_nflog_info *info = (struct xt_nflog_info *)t->data;
45 info->threshold = XT_NFLOG_DEFAULT_THRESHOLD;
60 static void nflog_print(const struct xt_nflog_info *info, char *prefix)
62 if (info->prefix[0] != '\0') {
64 xtables_save_string(info->prefix);
66 if (info->group)
67 printf(" %snflog-group %u", prefix, info->group);
68 if (info->len)
69 printf(" %snflog-range %u", prefix, info->len);
70 if (info->threshold != XT_NFLOG_DEFAULT_THRESHOLD)
71 printf(" %snflog-threshold %u", prefix, info->threshold);
77 const struct xt_nflog_info *info = (struct xt_nflog_info *)target->data;
79 nflog_print(info, "");
84 const struct xt_nflog_info *info = (struct xt_nflog_info *)target->data;
86 nflog_print(info, "--");