Home | History | Annotate | Download | only in extensions

Lines Matching refs:info

39 	const struct xt_tcpmss_match_info *info = (void *)match->data;
41 printf(" tcpmss match %s", info->invert ? "!" : "");
42 if (info->mss_min == info->mss_max)
43 printf("%u", info->mss_min);
45 printf("%u:%u", info->mss_min, info->mss_max);
50 const struct xt_tcpmss_match_info *info = (void *)match->data;
52 printf("%s --mss ", info->invert ? " !" : "");
53 if (info->mss_min == info->mss_max)
54 printf("%u", info->mss_min);
56 printf("%u:%u", info->mss_min, info->mss_max);