There is no description of some functions of the +TCP library

Hello! The tutorial https://www.freertos.org/Documentation/03-Libraries/02-FreeRTOS-plus/02-FreeRTOS-plus-TCP/04-Tutorial/04-Initialization uses the following functions: FreeRTOS_inet_pton6(), FreeRTOS_CreateIPv6Address();.
There is no description of these functions in the API reference.
How to understand their meaning?

Hi @mml
You can take a look at this page IPv6 and Multiple Interface Functions - FreeRTOS™ for the for the API calls for IPv6 and multiple interfaces.

FreeRTOS_inet_pton6() is similar to FreeRTOS_inet_addr() for IPv6. It converts the dotted decimal format of the IP-address to the 32-bit representation.

1 Like

Thank you! Didn’t notice this web page. I hope full, high-quality descriptions of these functions will appear soon.