Go to the documentation of this file.
43 #ifndef _AWS_SECURE_SOCKETS_H_
44 #define _AWS_SECURE_SOCKETS_H_
53 #include "aws_secure_sockets_config.h"
55 #include "iot_secure_sockets_wrapper_metrics.h"
56 #include "iot_lib_init.h"
76 #define Socklen_t uint32_t
90 #define SOCKETS_ERROR_NONE ( 0 )
91 #define SOCKETS_SOCKET_ERROR ( -1 )
92 #define SOCKETS_EWOULDBLOCK ( -11 )
93 #define SOCKETS_ENOMEM ( -12 )
94 #define SOCKETS_EINVAL ( -22 )
95 #define SOCKETS_ENOPROTOOPT ( -109 )
96 #define SOCKETS_ENOTCONN ( -126 )
97 #define SOCKETS_EISCONN ( -127 )
98 #define SOCKETS_ECLOSED ( -128 )
99 #define SOCKETS_TLS_INIT_ERROR ( -1001 )
100 #define SOCKETS_TLS_HANDSHAKE_ERROR ( -1002 )
101 #define SOCKETS_TLS_SERVER_UNVERIFIED ( -1003 )
102 #define SOCKETS_TLS_RECV_ERROR ( -1004 )
103 #define SOCKETS_TLS_SEND_ERROR ( -1005 )
104 #define SOCKETS_PERIPHERAL_RESET ( -1006 )
110 #define SOCKETS_INVALID_SOCKET ( ( Socket_t ) ~0U )
122 #define SOCKETS_AF_INET ( 2 )
123 #define SOCKETS_PF_INET SOCKETS_AF_INET
124 #define SOCKETS_AF_INET6 ( 10 )
137 #define SOCKETS_SOCK_DGRAM ( 2 )
138 #define SOCKETS_SOCK_STREAM ( 1 )
149 #define SOCKETS_IPPROTO_UDP ( 17 )
150 #define SOCKETS_IPPROTO_TCP ( 6 )
161 #define SOCKETS_SO_RCVTIMEO ( 0 )
162 #define SOCKETS_SO_SNDTIMEO ( 1 )
163 #define SOCKETS_SO_SNDBUF ( 4 )
164 #define SOCKETS_SO_RCVBUF ( 5 )
165 #define SOCKETS_SO_SERVER_NAME_INDICATION ( 6 )
166 #define SOCKETS_SO_TRUSTED_SERVER_CERTIFICATE ( 7 )
167 #define SOCKETS_SO_REQUIRE_TLS ( 8 )
168 #define SOCKETS_SO_NONBLOCK ( 9 )
169 #define SOCKETS_SO_ALPN_PROTOCOLS ( 10 )
170 #define SOCKETS_SO_WAKEUP_CALLBACK ( 17 )
181 #define SOCKETS_SHUT_RD ( 0 )
182 #define SOCKETS_SHUT_WR ( 1 )
183 #define SOCKETS_SHUT_RDWR ( 2 )
189 #define securesocketsMAX_DNS_NAME_LENGTH ( 253 )
197 typedef struct SocketsSockaddr
208 #define securesocketsDEFAULT_TLS_DESTINATION_PORT 443
316 size_t xBufferLength,
341 const void * pvBuffer,
399 #define socketsAWS_IOT_ALPN_MQTT "x-amzn-mqtt-ca"
484 const void * pvOptionValue,
485 size_t xOptionLength );
512 #if defined( socketsconfigBYTE_ORDER ) && ( socketsconfigBYTE_ORDER == pdLITTLE_ENDIAN )
513 #define SOCKETS_htonl( ulIn ) ( ( uint32_t ) ( ( ( ulIn & 0xFF ) << 24 ) | ( ( ulIn & 0xFF00 ) << 8 ) | ( ( ulIn & 0xFF0000 ) >> 8 ) | ( ( ulIn & 0xFF000000 ) >> 24 ) ) )
515 #define SOCKETS_htonl( usIn ) ( ( uint32_t ) ( usIn ) )
524 #define SOCKETS_ntohl( usIn ) SOCKETS_htonl( usIn )
534 #if defined( socketsconfigBYTE_ORDER ) && ( socketsconfigBYTE_ORDER == pdLITTLE_ENDIAN )
535 #define SOCKETS_htons( usIn ) ( ( uint16_t ) ( ( ( usIn ) << 8U ) | ( ( usIn ) >> 8U ) ) )
537 #define SOCKETS_htons( usIn ) ( ( uint16_t ) ( usIn ) )
547 #define SOCKETS_ntohs( usIn ) SOCKETS_htons( usIn )
558 #if defined( socketsconfigBYTE_ORDER ) && ( socketsconfigBYTE_ORDER == pdLITTLE_ENDIAN )
560 #define SOCKETS_inet_addr_quick( ucOctet0, ucOctet1, ucOctet2, ucOctet3 ) \
561 ( ( ( ( uint32_t ) ( ucOctet3 ) ) << 24UL ) | \
562 ( ( ( uint32_t ) ( ucOctet2 ) ) << 16UL ) | \
563 ( ( ( uint32_t ) ( ucOctet1 ) ) << 8UL ) | \
564 ( ( uint32_t ) ( ucOctet0 ) ) )
573 #define SOCKETS_inet_ntoa( ulIPAddress, pucBuffer ) \
574 sprintf( ( char * ) ( pucBuffer ), "%u.%u.%u.%u", \
575 ( ( unsigned ) ( ( ulIPAddress ) & 0xffUL ) ), \
576 ( ( unsigned ) ( ( ( ulIPAddress ) >> 8 ) & 0xffUL ) ), \
577 ( ( unsigned ) ( ( ( ulIPAddress ) >> 16 ) & 0xffUL ) ), \
578 ( ( unsigned ) ( ( ulIPAddress ) >> 24 ) ) )
582 #define SOCKETS_inet_addr_quick( ucOctet0, ucOctet1, ucOctet2, ucOctet3 ) \
583 ( ( ( ( uint32_t ) ( ucOctet0 ) ) << 24UL ) | \
584 ( ( ( uint32_t ) ( ucOctet1 ) ) << 16UL ) | \
585 ( ( ( uint32_t ) ( ucOctet2 ) ) << 8UL ) | \
586 ( ( uint32_t ) ( ucOctet3 ) ) )
595 #define SOCKETS_inet_ntoa( ulIPAddress, pucBuffer ) \
596 sprintf( ( char * ) ( pucBuffer ), "%u.%u.%u.%u", \
597 ( ( unsigned ) ( ( ulIPAddress ) >> 24 ) ), \
598 ( ( unsigned ) ( ( ( ulIPAddress ) >> 16 ) & 0xffUL ) ), \
599 ( ( unsigned ) ( ( ( ulIPAddress ) >> 8 ) & 0xffUL ) ), \
600 ( ( unsigned ) ( ( ulIPAddress ) & 0xffUL ) ) )
Socket address.
Definition: iot_secure_sockets.h:198
Ensures that the required sockets configuration options are supplied and the optional ones are set to...
uint8_t ucLength
Definition: iot_secure_sockets.h:199
int32_t SOCKETS_Close(Socket_t xSocket)
Closes the socket and frees the related resources.
int32_t SOCKETS_SetSockOpt(Socket_t xSocket, int32_t lLevel, int32_t lOptionName, const void *pvOptionValue, size_t xOptionLength)
Manipulates the options for the socket.
uint16_t usPort
Definition: iot_secure_sockets.h:201
int32_t SOCKETS_Shutdown(Socket_t xSocket, uint32_t ulHow)
Closes all or part of a full-duplex connection on the socket.
lib_initDECLARE_LIB_INIT(SOCKETS_Init)
Secure Sockets library initialization function.
Socket_t SOCKETS_Socket(int32_t lDomain, int32_t lType, int32_t lProtocol)
Creates a TCP socket.
#define Socklen_t
The "size_t" of secure sockets.
Definition: iot_secure_sockets.h:76
struct xSOCKET * Socket_t
Socket handle data type.
Definition: iot_secure_sockets.h:68
uint8_t ucSocketDomain
Definition: iot_secure_sockets.h:200
int32_t SOCKETS_Connect(Socket_t xSocket, SocketsSockaddr_t *pxAddress, Socklen_t xAddressLength)
Connects the socket to the specified IP address and port.
uint32_t SOCKETS_GetHostByName(const char *pcHostName)
Resolve a host name using Domain Name Service.
int32_t SOCKETS_Send(Socket_t xSocket, const void *pvBuffer, size_t xDataLength, uint32_t ulFlags)
Transmit data to the remote socket.
uint32_t ulAddress
Definition: iot_secure_sockets.h:202
int32_t SOCKETS_Recv(Socket_t xSocket, void *pvBuffer, size_t xBufferLength, uint32_t ulFlags)
Receive data from a TCP socket.