Socket Type definitions. More...
Macros | |
| #define | IOT_SOCKET_SOCK_STREAM 1 |
| Stream socket. | |
| #define | IOT_SOCKET_SOCK_DGRAM 2 |
| Datagram socket. | |
Socket Type definitions.
The Socket Type specifies the type of the socket.
| #define IOT_SOCKET_SOCK_DGRAM 2 |
Datagram socket.
Datagram Socket is connectionless, unreliable, using the UDP protocol.
| #define IOT_SOCKET_SOCK_STREAM 1 |
Stream socket.
Stream Socket is connection-oriented, sequenced and reliable, implemented on top of the TCP protocol.