Skip to content
Snippets Groups Projects
Commit 1230fc40 authored by Martine Lenders's avatar Martine Lenders
Browse files

ipv6_addr: do not null remaining bits in prefix initialization

parent 1af61260
No related branches found
No related tags found
No related merge requests found
......@@ -330,7 +330,7 @@ uint8_t ng_ipv6_addr_match_prefix(const ng_ipv6_addr_t *a, const ng_ipv6_addr_t
/**
* @brief Sets IPv6 address @p out with the first @p bits bit taken
* from @p prefix and the remaining bits to 0.
* from @p prefix and leaves the remaining bits untouched.
*
* @param[out] out Prefix to be set.
* @param[in] prefix Address to take prefix from.
......
......@@ -62,8 +62,6 @@ void ng_ipv6_addr_init_prefix(ng_ipv6_addr_t *out, const ng_ipv6_addr_t *prefix,
{
uint8_t bytes;
ng_ipv6_addr_set_unspecified(out);
if (bits > 128) {
bits = 128;
}
......@@ -75,7 +73,8 @@ void ng_ipv6_addr_init_prefix(ng_ipv6_addr_t *out, const ng_ipv6_addr_t *prefix,
if (bits % 8) {
uint8_t mask = 0xff << (8 - (bits - (bytes * 8)));
out->u8[bytes] = prefix->u8[bytes] & mask;
out->u8[bytes] &= ~mask;
out->u8[bytes] |= prefix->u8[bytes];
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment