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

Merge pull request #3950 from authmillenon/gnrc_sixlowpan_iphc/fix/set-mcast-ctx

gnrc_sixlowpan_iphc: actually set context for unicast prefix based comp
parents 3c69d7be 1372b9b7
No related branches found
No related tags found
No related merge requests found
...@@ -606,6 +606,10 @@ bool gnrc_sixlowpan_iphc_encode(gnrc_pktsnip_t *pkt) ...@@ -606,6 +606,10 @@ bool gnrc_sixlowpan_iphc_encode(gnrc_pktsnip_t *pkt)
* (https://tools.ietf.org/html/rfc3306) with given context * (https://tools.ietf.org/html/rfc3306) with given context
* for unicast prefix -> context based compression */ * for unicast prefix -> context based compression */
iphc_hdr[IPHC2_IDX] |= SIXLOWPAN_IPHC2_DAC; iphc_hdr[IPHC2_IDX] |= SIXLOWPAN_IPHC2_DAC;
if ((ctx->flags_id & GNRC_SIXLOWPAN_CTX_FLAGS_CID_MASK) != 0) {
iphc_hdr[CID_EXT_IDX] |= ((ctx->flags_id & GNRC_SIXLOWPAN_CTX_FLAGS_CID_MASK)
<< 4);
}
iphc_hdr[inline_pos++] = ipv6_hdr->dst.u8[1]; iphc_hdr[inline_pos++] = ipv6_hdr->dst.u8[1];
iphc_hdr[inline_pos++] = ipv6_hdr->dst.u8[2]; iphc_hdr[inline_pos++] = ipv6_hdr->dst.u8[2];
memcpy(iphc_hdr + inline_pos, ipv6_hdr->dst.u16 + 6, 4); memcpy(iphc_hdr + inline_pos, ipv6_hdr->dst.u16 + 6, 4);
......
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