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:
Steve Karg
2025-02-17 09:07:27 -06:00
committed by GitHub
parent adff1f9c0f
commit aa87bd8051
7 changed files with 224 additions and 70 deletions
+8
View File
@@ -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)
{
}