FreeRTOS: Secure Sockets
Return to main page ↑
Related Pages
Here is a list of all related documentation pages:
[detail level 123]
 ConfigurationConfiguration settings of the library.
Configuration settings are C pre-processor constants. They can be set with a #define in the iot_config.h or by using a compiler option such as -D in gcc. If a configuration setting is not defined, the library will use a "sensible" default value (unless otherwise noted). Because they are compile-time constants, a library must be rebuilt if a configuration setting is changed
 FunctionsFunctions of the Secure Sockets library.

The Secure Sockets library consists of the following functions
 Primary Functions
 SOCKETS_SocketCreates a TCP socket.
 SOCKETS_ConnectConnects the socket to the specified IP address and port.
 SOCKETS_RecvReceive data from a TCP socket.
 SOCKETS_SendTransmit data to the remote socket.
 SOCKETS_ShutdownCloses all or part of a full-duplex connection on the socket.
 SOCKETS_CloseCloses the socket and frees the related resources.
 SOCKETS_SetSockOptManipulates the options for the socket.
 SOCKETS_GetHostByNameResolve a host name using Domain Name Service.
 Helper Functions