Home | History | Annotate | Download | only in dist

Lines Matching defs:prefix_length

1600     u_int offset, prefix_length;
1616 prefix_length = GET_U_1(pptr + offset);
1621 if (prefix_length > max_prefix_length) {
1624 /* Add 1 for the prefix_length byte and prefix_length to cover the address */
1625 offset += 1 + ((prefix_length + 7) / 8);
1638 prefix_length = GET_U_1(pptr + offset);
1640 * If the prefix_length is zero (0.0.0.0/0)
1644 if (prefix_length < 1 || prefix_length > max_prefix_length) {
1647 offset += 1 + ((prefix_length + 7) / 8);