Home | History | Annotate | Download | only in extensions

Lines Matching refs:code

87 "				(or numeric type or type/code)\n");
98 parse_icmpv6(const char *icmpv6type, uint8_t *type, uint8_t code[])
120 code[0] = icmpv6_codes[match].code_min;
121 code[1] = icmpv6_codes[match].code_max;
140 "Invalid ICMPv6 code `%s'\n",
142 code[0] = code[1] = number;
144 code[0] = 0;
145 code[1] = 0xFF;
154 icmpv6info->code[1] = 0xFF;
162 parse_icmpv6(cb->arg, &icmpv6info->type, icmpv6info->code);
194 printf(" code %u", code_min);
205 print_icmpv6type(icmpv6->type, icmpv6->code[0], icmpv6->code[1],
222 if (icmpv6->code[0] != 0 || icmpv6->code[1] != 0xFF)
223 printf("/%u", icmpv6->code[0]);
282 if (!type_xlate_print(xl, info->type, info->code[0], info->code[1]))