Skip to content

Commit

Permalink
Merge pull request #3945 from authmillenon/gnrc_ipv6_netif/fix/ra-src-ll
Browse files Browse the repository at this point in the history
gnrc_ipv6_netif: a RA source MUST be link-local
  • Loading branch information
OlegHahm committed Sep 23, 2015
2 parents 320aa47 + 771e7f4 commit 5df4532
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sys/net/gnrc/network_layer/ipv6/netif/gnrc_ipv6_netif.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ static ipv6_addr_t *_add_addr_to_entry(gnrc_ipv6_netif_t *entry, const ipv6_addr
mutex_unlock(&entry->mutex); /* function below relocks mutex */
#ifdef MODULE_GNRC_SIXLOWPAN_ND_ROUTER
if (entry->flags & GNRC_IPV6_NETIF_FLAGS_SIXLOWPAN) {
gnrc_ndp_internal_send_rtr_adv(entry->pid, &tmp_addr->addr,
NULL, false);
gnrc_ndp_internal_send_rtr_adv(entry->pid, NULL, NULL, false);
}
#endif
#ifdef MODULE_GNRC_NDP_ROUTER
Expand Down

0 comments on commit 5df4532

Please sign in to comment.