Home
last modified time | relevance | path

Searched refs:pxICMPHeader_IPv6 (Results 1 – 4 of 4) sorted by relevance

/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_ND.c570 ICMPHeader_IPv6_t * pxICMPHeader_IPv6; in vNDSendNeighbourSolicitation() local
597 pxICMPHeader_IPv6 = ( ( ICMPHeader_IPv6_t * ) &( pxICMPPacket->xICMPHeaderIPv6 ) ); in vNDSendNeighbourSolicitation()
637 ( void ) memset( pxICMPHeader_IPv6, 0, sizeof( *pxICMPHeader_IPv6 ) ); in vNDSendNeighbourSolicitation()
638 pxICMPHeader_IPv6->ucTypeOfMessage = ipICMP_NEIGHBOR_SOLICITATION_IPv6; in vNDSendNeighbourSolicitation()
639 …( void ) memcpy( pxICMPHeader_IPv6->xIPv6Address.ucBytes, pxIPAddress->ucBytes, ipSIZE_OF_IPv6_ADD… in vNDSendNeighbourSolicitation()
640 pxICMPHeader_IPv6->ucOptionType = ndICMP_SOURCE_LINK_LAYER_ADDRESS; in vNDSendNeighbourSolicitation()
641 pxICMPHeader_IPv6->ucOptionLength = 1U; /* times 8 bytes. */ in vNDSendNeighbourSolicitation()
642 …( void ) memcpy( pxICMPHeader_IPv6->ucOptionBytes, pxEndPoint->xMACAddress.ucBytes, ipMAC_ADDRESS_… in vNDSendNeighbourSolicitation()
654 pxICMPHeader_IPv6->usChecksum = 0U; in vNDSendNeighbourSolicitation()
940 …ICMPHeader_IPv6_t * pxICMPHeader_IPv6 = ( ( ICMPHeader_IPv6_t * ) &( pxICMPPacket->xICMPHeaderIPv6… in prvProcessICMPMessage_IPv6() local
[all …]
DFreeRTOS_RA.c241 …const ICMPHeader_IPv6_t * pxICMPHeader_IPv6 = ( ( const ICMPHeader_IPv6_t * ) &( pxICMPPacket->xIC… in vReceiveNA() local
249 …if( memcmp( pxPoint->ipv6_settings.xIPAddress.ucBytes, pxICMPHeader_IPv6->xIPv6Address.ucBytes, ip… in vReceiveNA()
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_ND/
DFreeRTOS_ND_utest.c748 ICMPHeader_IPv6_t * pxICMPHeader_IPv6 = &( pxICMPPacket->xICMPHeaderIPv6 ); in test_vNDAgeCache_NSHappyPath() local
772 TEST_ASSERT_EQUAL( pxICMPHeader_IPv6->ucTypeOfMessage, ipICMP_NEIGHBOR_SOLICITATION_IPv6 ); in test_vNDAgeCache_NSHappyPath()
773 TEST_ASSERT_EQUAL( pxICMPHeader_IPv6->ucOptionType, ndICMP_SOURCE_LINK_LAYER_ADDRESS ); in test_vNDAgeCache_NSHappyPath()
774 TEST_ASSERT_EQUAL( pxICMPHeader_IPv6->ucOptionLength, 1U ); /* times 8 bytes. */ in test_vNDAgeCache_NSHappyPath()
847 ICMPHeader_IPv6_t * pxICMPHeader_IPv6 = &( pxICMPPacket->xICMPHeaderIPv6 ); in test_vNDSendNeighbourSolicitation_HappyPath() local
866 TEST_ASSERT_EQUAL( pxICMPHeader_IPv6->ucTypeOfMessage, ipICMP_NEIGHBOR_SOLICITATION_IPv6 ); in test_vNDSendNeighbourSolicitation_HappyPath()
867 TEST_ASSERT_EQUAL( pxICMPHeader_IPv6->ucOptionType, ndICMP_SOURCE_LINK_LAYER_ADDRESS ); in test_vNDSendNeighbourSolicitation_HappyPath()
868 TEST_ASSERT_EQUAL( pxICMPHeader_IPv6->ucOptionLength, 1U ); /* times 8 bytes. */ in test_vNDSendNeighbourSolicitation_HappyPath()
1397 …ICMPHeader_IPv6_t * pxICMPHeader_IPv6 = ( ( ICMPHeader_IPv6_t * ) &( xICMPPacket.xICMPHeaderIPv6 )… in test_prvProcessICMPMessage_IPv6_ipICMP_PING_REPLY_IPv6_eInvalidData() local
1398 ICMPEcho_IPv6_t * pxICMPEchoHeader = ( ( ICMPEcho_IPv6_t * ) pxICMPHeader_IPv6 ); in test_prvProcessICMPMessage_IPv6_ipICMP_PING_REPLY_IPv6_eInvalidData()
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/STM32Fxx/
DNetworkInterface.c825 ICMPHeader_IPv6_t * pxICMPHeader_IPv6; in xSTM32F_NetworkInterfaceOutput() local
827pxICMPHeader_IPv6 = ( ICMPHeader_IPv6_t * ) &( pxDescriptor->pucEthernetBuffer[ ipSIZE_OF_ETH_HEAD… in xSTM32F_NetworkInterfaceOutput()
828 pxICMPHeader_IPv6->usChecksum = 0U; in xSTM32F_NetworkInterfaceOutput()