Home | History | Annotate | Download | only in extensions

Lines Matching refs:info

58 	struct ipt_tos_info *info = cb->data;
65 info->tos = cb->val.tos_value;
67 info->invert = true;
72 struct xt_tos_match_info *info = cb->data;
75 info->tos_value = cb->val.tos_value;
76 info->tos_mask = cb->val.tos_mask;
78 info->invert = true;
84 const struct ipt_tos_info *info = (const void *)match->data;
87 if (info->invert)
89 if (numeric || !tos_try_print_symbolic("", info->tos, 0x3F))
90 printf("0x%02x", info->tos);
96 const struct xt_tos_match_info *info = (const void *)match->data;
99 if (info->invert)
102 !tos_try_print_symbolic("", info->tos_value, info->tos_mask))
103 printf("0x%02x/0x%02x", info->tos_value, info->tos_mask);
108 const struct ipt_tos_info *info = (const void *)match->data;
110 if (info->invert)
112 printf(" --tos 0x%02x", info->tos);
117 const struct xt_tos_match_info *info = (const void *)match->data;
119 if (info->invert)
121 printf(" --tos 0x%02x/0x%02x", info->tos_value, info->tos_mask);