Lines Matching full:info
63 struct ipt_iprange_info *info = (struct ipt_iprange_info *)(*match)->data;
72 info->flags |= IPRANGE_SRC;
75 info->flags |= IPRANGE_SRC_INV;
77 parse_iprange(optarg, &info->src);
87 info->flags |= IPRANGE_DST;
90 info->flags |= IPRANGE_DST_INV;
92 parse_iprange(optarg, &info->dst);
123 /* Prints out the info. */
129 struct ipt_iprange_info *info = (struct ipt_iprange_info *)match->data;
131 if (info->flags & IPRANGE_SRC) {
133 if (info->flags & IPRANGE_SRC_INV)
135 print_iprange(&info->src);
137 if (info->flags & IPRANGE_DST) {
139 if (info->flags & IPRANGE_DST_INV)
141 print_iprange(&info->dst);
149 struct ipt_iprange_info *info = (struct ipt_iprange_info *)match->data;
151 if (info->flags & IPRANGE_SRC) {
152 if (info->flags & IPRANGE_SRC_INV)
155 print_iprange(&info->src);
156 if (info->flags & IPRANGE_DST)
159 if (info->flags & IPRANGE_DST) {
160 if (info->flags & IPRANGE_DST_INV)
163 print_iprange(&info->dst);