Lines Matching refs:info
101 struct xt_ct_target_info *info = cb->data;
106 info->flags |= XT_CT_NOTRACK;
109 info->ct_events = ct_parse_events(ct_event_tbl, ARRAY_SIZE(ct_event_tbl), cb->arg);
112 info->exp_events = ct_parse_events(exp_event_tbl, ARRAY_SIZE(exp_event_tbl), cb->arg);
119 const struct xt_ct_target_info *info =
123 if (info->flags & XT_CT_NOTRACK)
125 if (info->helper[0])
126 printf(" helper %s", info->helper);
127 if (info->ct_events)
129 ARRAY_SIZE(ct_event_tbl), info->ct_events);
130 if (info->exp_events)
132 ARRAY_SIZE(exp_event_tbl), info->exp_events);
133 if (info->zone)
134 printf("zone %u ", info->zone);
139 const struct xt_ct_target_info *info =
142 if (info->flags & XT_CT_NOTRACK)
144 if (info->helper[0])
145 printf(" --helper %s", info->helper);
146 if (info->ct_events)
148 ARRAY_SIZE(ct_event_tbl), info->ct_events);
149 if (info->exp_events)
151 ARRAY_SIZE(exp_event_tbl), info->exp_events);
152 if (info->zone)
153 printf(" --zone %u", info->zone);