Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Updated Jul 2025

FreeRTOS_SetEndPointConfiguration()

[FreeRTOS-Plus-TCP API Reference]

FreeRTOS_IP.h

1void FreeRTOS_SetEndPointConfiguration( const uint32_t * pulIPAddress,
2 const uint32_t * pulNetMask,
3 const uint32_t * pulGatewayAddress,
4 const uint32_t * pulDNSServerAddress,
5 struct xNetworkEndPoint * pxEndPoint )

Set the current IPv4 network address configuration of the TCP/IP stack for a given IPv4 endpoint. Only non-NULL pointers will be used.

Parameters:

  • pulIPAddress

    Used to set the IP address being used by the IP stack. The IP address is represented as a 32-bit number in network byte order.

  • pulNetMask

    Used to set the net mask being used by the IP stack. The net mask is represented as a 32-bit number in network byte order.

  • pulGatewayAddress

    Used to set the IP address of the gateway being used by the IP stack. The IP address is represented as a 32-bit number in network byte order.

  • pulDNSServerAddress

    Used to set the IP address of the DNS server being used by the IP stack. The IP address is represented as a 32-bit number in network byte order.

  • pxEndPoint

    The IPv4 end-point which is being set with the configuration.

Returns:

No return value.