|
FreeRTOS:
Secure Sockets
|
| Return to main page ↑ |
| Configuration | Configuration settings of the library. Configuration settings are C pre-processor constants. They can be set with a # 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 |
| ▼Functions | Functions of the Secure Sockets library. The Secure Sockets library consists of the following functions |
| ▼Primary Functions | |
| SOCKETS_Socket | Creates a TCP socket. |
| SOCKETS_Connect | Connects the socket to the specified IP address and port. |
| SOCKETS_Recv | Receive data from a TCP socket. |
| SOCKETS_Send | Transmit data to the remote socket. |
| SOCKETS_Shutdown | Closes all or part of a full-duplex connection on the socket. |
| SOCKETS_Close | Closes the socket and frees the related resources. |
| SOCKETS_SetSockOpt | Manipulates the options for the socket. |
| SOCKETS_GetHostByName | Resolve a host name using Domain Name Service. |
| Helper Functions |