FreeRTOS:
Secure Sockets
|
Return to main page ↑ |
Creates a TCP socket.
See the FreeRTOS+TCP networking tutorial for more information on TCP sockets.
See the Berkeley Sockets API in wikipedia
[in] | lDomain | Must be set to SOCKETS_AF_INET. See SocketDomains. |
[in] | lType | Set to SOCKETS_SOCK_STREAM to create a TCP socket. No other value is valid. See SocketTypes. |
[in] | lProtocol | Set to SOCKETS_IPPROTO_TCP to create a TCP socket. No other value is valid. See Protocols. |