Download FreeRTOS
 

Quality RTOS & Embedded Software

LIBRARIES
WHAT'S NEW
Simplifying Authenticated Cloud Connectivity for Any Device.
Designing an energy efficient and cloud-connected IoT solution with CoAP.
Introducing FreeRTOS Kernel version 11.0.0:
FreeRTOS Roadmap and Code Contribution process.
OPC-UA over TSN with FreeRTOS.

FreeRTOS_FillEndPoint_IPv6()

[FreeRTOS-Plus-TCP API Reference]

FreeRTOS_Routing.h
void FreeRTOS_FillEndPoint_IPv6( NetworkInterface_t * pxNetworkInterface,
                                 NetworkEndPoint_t * pxEndPoint,
                                 const IPv6_Address_t * pxIPAddress,
                                 const IPv6_Address_t * pxNetPrefix,
                                 size_t uxPrefixLength,
                                 const IPv6_Address_t * pxGatewayAddress,
                                 const IPv6_Address_t * pxDNSServerAddress, /* Not used yet. */
                                 const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ] );

Provide the IPv6 end-point information and append it to the FreeRTOS-Plus-TCP stack.

Parameters:

pxNetworkInterface
The interface to which it belongs.

pxEndPoint
Space for the new end-point. This memory is dedicated for the end-point and should not be freed or gotten any other purpose.

pxIPAddress
The IP-address.

pxNetPrefix
The prefix which will be used for this end-point.

uxPrefixLength
The length of the above end-point.

pxGatewayAddress
The IP-address of a device on the LAN which can serve as as a gateway to the Internet.

pxDNSServerAddress
The IP-address of a DNS server.

ucMACAddress
The MAC address of the end-point.


Returns:
No return value.

Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.