Home | History | Annotate | Download | only in extensions

Lines Matching full:info

55 	struct ebt_nflog_info *info = (struct ebt_nflog_info *)t->data;
57 info->prefix[0] = '\0';
58 info->group = EBT_NFLOG_DEFAULT_GROUP;
59 info->threshold = EBT_NFLOG_DEFAULT_THRESHOLD;
65 struct ebt_nflog_info *info = (struct ebt_nflog_info *)(*target)->data;
79 strncpy(info->prefix, optarg, EBT_NFLOG_PREFIX_SIZE);
86 info->group = i;
93 info->len = i;
100 info->threshold = i;
115 struct ebt_nflog_info *info = (struct ebt_nflog_info *)target->data;
117 if (info->prefix[0] != '\0')
118 printf("--nflog-prefix \"%s\" ", info->prefix);
119 if (info->group)
120 printf("--nflog-group %d ", info->group);
121 if (info->len)
122 printf("--nflog-range %d ", info->len);
123 if (info->threshold != EBT_NFLOG_DEFAULT_THRESHOLD)
124 printf("--nflog-threshold %d ", info->threshold);