traffic-selector: Use calc_netbits() in RFC 3779 constructor

This properly detects prefixes encoded as ranges.
This commit is contained in:
Tobias Brunner
2015-08-27 11:47:36 +02:00
parent df62141362
commit fe2443b01c
@@ -849,8 +849,7 @@ traffic_selector_t *traffic_selector_create_from_rfc3779_format(ts_type_t type,
memcpy(this->to, to.ptr+1, to.len-1);
this->to[to.len-2] |= mask;
}
this->netbits = chunk_equals(from, to) ? (from.len-1)*8 - from.ptr[0]
: NON_SUBNET_ADDRESS_RANGE;
calc_netbits(this);
return (&this->public);
}