Home | History | Annotate | Download | only in extensions

Lines Matching full:mhinfo

73 	struct ip6t_mh *mhinfo = (struct ip6t_mh *)m->data;
75 mhinfo->types[1] = 0xFF;
129 struct ip6t_mh *mhinfo = cb->data;
132 parse_mh_types(cb->arg, mhinfo->types);
134 mhinfo->invflags |= IP6T_MH_INV_TYPE;
178 const struct ip6t_mh *mhinfo = (struct ip6t_mh *)match->data;
181 print_types(mhinfo->types[0], mhinfo->types[1],
182 mhinfo->invflags & IP6T_MH_INV_TYPE,
184 if (mhinfo->invflags & ~IP6T_MH_INV_MASK)
186 mhinfo->invflags & ~IP6T_MH_INV_MASK);
191 const struct ip6t_mh *mhinfo = (struct ip6t_mh *)match->data;
193 if (mhinfo->types[0] == 0 && mhinfo->types[1] == 0xFF)
196 if (mhinfo->invflags & IP6T_MH_INV_TYPE)
199 if (mhinfo->types[0] != mhinfo->types[1])
200 printf(" --mh-type %u:%u", mhinfo->types[0], mhinfo->types[1]);
202 printf(" --mh-type %u", mhinfo->types[0]);