Lines Matching refs:pxPrefixOption
275 ICMPPrefixOption_IPv6_t * pxPrefixOption = NULL; in vReceiveRA_ReadReply() local
315 pxPrefixOption = ( ( ICMPPrefixOption_IPv6_t * ) &( pucBytes[ uxIndex ] ) ); in vReceiveRA_ReadReply()
318 pxPrefixOption->ucPrefixLength, in vReceiveRA_ReadReply()
319 FreeRTOS_ntohl( pxPrefixOption->ulValidLifeTime ), in vReceiveRA_ReadReply()
320 FreeRTOS_ntohl( pxPrefixOption->ulPreferredLifeTime ), in vReceiveRA_ReadReply()
321 ( void * ) pxPrefixOption->ucPrefix ) ); in vReceiveRA_ReadReply()
346 return pxPrefixOption; in vReceiveRA_ReadReply()
364 const ICMPPrefixOption_IPv6_t * pxPrefixOption = NULL; in vReceiveRA() local
389 pxPrefixOption = vReceiveRA_ReadReply( pxNetworkBuffer ); in vReceiveRA()
393 if( pxPrefixOption != NULL ) in vReceiveRA()
403 … pxEndPoint->ipv6_settings.uxPrefixLength = pxPrefixOption->ucPrefixLength; in vReceiveRA()
404 …( void ) memcpy( pxEndPoint->ipv6_settings.xPrefix.ucBytes, pxPrefixOption->ucPrefix, ipSIZE_OF_IP… in vReceiveRA()
409 … pxEndPoint->xRAData.ulPreferredLifeTime = FreeRTOS_ntohl( pxPrefixOption->ulPreferredLifeTime ); in vReceiveRA()