Bugfix/ipv6 leave multicast on foreign device registration (#899)
* Fixed IPv6 handler to ignore original-broadcast when registered as a foreign-device * Fixed IPv6 to leave multicast when registering as foreign device.
This commit is contained in:
@@ -97,6 +97,14 @@ int bip6_send_mpdu(
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Leave a multicast group
|
||||
*/
|
||||
void bip6_leave_group(void)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
/** Return the Object Instance number for our (single) Device Object.
|
||||
* This is a key function, widely invoked by the handler code, since
|
||||
* it provides "our" (ie, local) address.
|
||||
|
||||
@@ -17,6 +17,14 @@ bool bip6_init(char *ifname)
|
||||
return ztest_get_return_value();
|
||||
}
|
||||
|
||||
void bip6_join_group(void)
|
||||
{
|
||||
}
|
||||
|
||||
void bip6_leave_group(void)
|
||||
{
|
||||
}
|
||||
|
||||
void bip6_cleanup(void)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user