Skip to content

Commit

Permalink
revert back mcast address generation used for solicited node multicas…
Browse files Browse the repository at this point in the history
…t traffic (#939)
  • Loading branch information
tony-josi-aws authored Jun 23, 2023
1 parent 8d01dab commit f0bb76d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -720,9 +720,8 @@ static BaseType_t prvGMACInit( NetworkInterface_t * pxInterface )
{
if( pxEndPoint->bits.bIPv6 != pdFALSE_UNSIGNED )
{
uint8_t ucMACAddress[ 6 ] = { 0x33, 0x33, 0, 0, 0, 0 };
uint8_t ucMACAddress[ 6 ] = { 0x33, 0x33, 0xff, 0, 0, 0 };

ucMACAddress[ 2 ] = pxEndPoint->ipv6_settings.xIPAddress.ucBytes[ 12 ];
ucMACAddress[ 3 ] = pxEndPoint->ipv6_settings.xIPAddress.ucBytes[ 13 ];
ucMACAddress[ 4 ] = pxEndPoint->ipv6_settings.xIPAddress.ucBytes[ 14 ];
ucMACAddress[ 5 ] = pxEndPoint->ipv6_settings.xIPAddress.ucBytes[ 15 ];
Expand Down

0 comments on commit f0bb76d

Please sign in to comment.