25 #define restrict __restrict__
34 #if __has_include(<sys/types.h>)
35 #include <sys/types.h>
42 #ifdef NRF_MODEM_HAS_SYS_TYPES
43 #include <sys/types.h>
57#define NRF_MODEM_MAX_SOCKET_COUNT 8
65#define NRF_HTONS(x) ((uint16_t) ((((x) & 0xff00) >> 8) | (((x) & 0x00ff) << 8)))
68#define NRF_HTONL(x) ((uint32_t) ((((x) & 0xff000000) >> 24) | \
69 (((x) & 0x00ff0000) >> 8) | \
70 (((x) & 0x0000ff00) << 8) | \
71 (((x) & 0x000000ff) << 24)))
74#define NRF_NTOHS(x) NRF_HTONS(x)
77#define NRF_NTOHL(x) NRF_HTONL(x)
80#define nrf_htons(x) NRF_HTONS(x)
83#define nrf_htonl(x) NRF_HTONL(x)
86#define nrf_ntohs(x) NRF_NTOHS(x)
89#define nrf_ntohl(x) NRF_NTOHL(x)
92#define NRF_INET_ADDRSTRLEN 16
95#define NRF_INET6_ADDRSTRLEN 46
110#define NRF_AF_UNSPEC 0
114#define NRF_AF_INET6 2
116#define NRF_AF_PACKET 3
124#define NRF_SOCK_STREAM 1
126#define NRF_SOCK_DGRAM 2
128#define NRF_SOCK_RAW 3
138#define NRF_IPPROTO_IP 0
140#define NRF_IPPROTO_TCP 6
142#define NRF_IPPROTO_UDP 17
144#define NRF_IPPROTO_IPV6 41
146#define NRF_IPPROTO_RAW 255
148#define NRF_IPPROTO_ALL 512
151#define NRF_SPROTO_TLS1v2 258
153#define NRF_SPROTO_DTLS1v2 273
168#define NRF_SOCKET_TLS_MAX_MESSAGE_SIZE 2048
173#define NRF_SOCKET_TLS_MAX_SEC_TAG_LIST_SIZE 7
187#define NRF_SO_SEC_TAG_LIST 1
200#define NRF_SO_SEC_HOSTNAME 2
214#define NRF_SO_SEC_CIPHERSUITE_LIST 3
223#define NRF_SO_SEC_CIPHERSUITE_USED 4
236#define NRF_SO_SEC_PEER_VERIFY 5
245#define NRF_SO_SEC_ROLE 6
256#define NRF_SO_SEC_SESSION_CACHE 12
263#define NRF_SO_SEC_SESSION_CACHE_PURGE 13
272#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEO 14
289#define NRF_SO_SEC_DTLS_CID 15
304#define NRF_SO_SEC_DTLS_CID_STATUS 16
344#define NRF_SO_SEC_DTLS_CONN_SAVE 17
364#define NRF_SO_SEC_DTLS_CONN_LOAD 18
377#define NRF_SO_SEC_HANDSHAKE_STATUS 19
390#define NRF_SO_SEC_DTLS_FRAG_EXT 20
409#define NRF_SO_REUSEADDR 2
423#define NRF_SO_ERROR 4
443#define NRF_SO_RCVTIMEO 20
460#define NRF_SO_SNDTIMEO 21
469#define NRF_SO_SILENCE_ALL 30
478#define NRF_SO_IP_ECHO_REPLY 31
487#define NRF_SO_IPV6_ECHO_REPLY 32
504#define NRF_SO_EXCEPTIONAL_DATA 33
542#define NRF_SO_KEEPOPEN 34
551#define NRF_SO_BINDTOPDN 40
564#define NRF_SO_TCP_SRV_SESSTIMEO 55
584#define NRF_SO_POLLCB 60
611#define NRF_SO_IPV6_DELAYED_ADDR_REFRESH 62
630#define NRF_SO_SENDCB 63
671#define NRF_SOL_SOCKET 1
672#define NRF_SOL_SECURE 282
692#define NRF_MSG_PEEK 0x02
703#define NRF_MSG_DONTWAIT 0x40
722#define NRF_MSG_WAITALL 0x100
750#define NRF_MSG_WAITACK 0x200
772#define NRF_O_NONBLOCK 0x01
790#define NRF_RAI_NO_DATA 1
798#define NRF_RAI_LAST 2
807#define NRF_RAI_ONE_RESP 3
814#define NRF_RAI_ONGOING 4
821#define NRF_RAI_WAIT_MORE 5
832#define NRF_SO_SEC_PEER_VERIFY_NONE 0
834#define NRF_SO_SEC_PEER_VERIFY_OPTIONAL 1
836#define NRF_SO_SEC_PEER_VERIFY_REQUIRED 2
850#define NRF_SO_SEC_ROLE_CLIENT 0
852#define NRF_SO_SEC_ROLE_SERVER 1
863#define NRF_SO_SEC_SESSION_CACHE_DISABLED 0
865#define NRF_SO_SEC_SESSION_CACHE_ENABLED 1
878#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_NONE 0
880#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_1S 1
882#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_3S 3
884#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_7S 7
886#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_15S 15
888#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_31S 31
890#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_63S 63
892#define NRF_SO_SEC_DTLS_HANDSHAKE_TIMEOUT_123S 123
901#define NRF_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 0xC024
902#define NRF_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA 0xC00A
903#define NRF_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 0xC023
904#define NRF_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA 0xC009
905#define NRF_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA 0xC014
906#define NRF_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 0xC027
907#define NRF_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA 0xC013
908#define NRF_TLS_PSK_WITH_AES_256_CBC_SHA 0x008D
909#define NRF_TLS_PSK_WITH_AES_128_CBC_SHA256 0x00AE
910#define NRF_TLS_PSK_WITH_AES_128_CBC_SHA 0x008C
911#define NRF_TLS_PSK_WITH_AES_128_CCM_8 0xC0A8
912#define NRF_TLS_EMPTY_RENEGOTIATIONINFO_SCSV 0x00FF
913#define NRF_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 0xC02B
914#define NRF_TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 0xC030
915#define NRF_TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 0xC02F
930#define NRF_SO_SEC_DTLS_CID_DISABLED 0
935#define NRF_SO_SEC_DTLS_CID_SUPPORTED 1
940#define NRF_SO_SEC_DTLS_CID_ENABLED 2
955#define NRF_SO_SEC_DTLS_CID_STATUS_DISABLED 0
959#define NRF_SO_SEC_DTLS_CID_STATUS_DOWNLINK 1
963#define NRF_SO_SEC_DTLS_CID_STATUS_UPLINK 2
968#define NRF_SO_SEC_DTLS_CID_STATUS_BIDIRECTIONAL 3
985#define NRF_SO_SEC_HANDSHAKE_STATUS_FULL 0
991#define NRF_SO_SEC_HANDSHAKE_STATUS_CACHED 1
1005#define NRF_SO_SEC_DTLS_FRAG_EXT_DISABLED 0
1013#define NRF_SO_SEC_DTLS_FRAG_EXT_512_ENABLED 1
1021#define NRF_SO_SEC_DTLS_FRAG_EXT_1024_ENABLED 2
1039#define NRF_SEC_TAG_TLS_DECRYPT_BASE 2147483648
1040#define NRF_SEC_TAG_TLS_DECRYPT_0 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 0)
1041#define NRF_SEC_TAG_TLS_DECRYPT_1 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 1)
1042#define NRF_SEC_TAG_TLS_DECRYPT_2 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 2)
1043#define NRF_SEC_TAG_TLS_DECRYPT_3 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 3)
1044#define NRF_SEC_TAG_TLS_DECRYPT_4 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 4)
1045#define NRF_SEC_TAG_TLS_DECRYPT_5 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 5)
1046#define NRF_SEC_TAG_TLS_DECRYPT_6 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 6)
1047#define NRF_SEC_TAG_TLS_DECRYPT_7 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 7)
1048#define NRF_SEC_TAG_TLS_DECRYPT_8 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 8)
1049#define NRF_SEC_TAG_TLS_DECRYPT_9 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 9)
1050#define NRF_SEC_TAG_TLS_DECRYPT_10 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 10)
1051#define NRF_SEC_TAG_TLS_DECRYPT_11 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 11)
1052#define NRF_SEC_TAG_TLS_DECRYPT_12 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 12)
1053#define NRF_SEC_TAG_TLS_DECRYPT_13 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 13)
1054#define NRF_SEC_TAG_TLS_DECRYPT_14 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 14)
1055#define NRF_SEC_TAG_TLS_DECRYPT_15 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 15)
1056#define NRF_SEC_TAG_TLS_DECRYPT_16 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 16)
1057#define NRF_SEC_TAG_TLS_DECRYPT_17 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 17)
1058#define NRF_SEC_TAG_TLS_DECRYPT_18 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 18)
1059#define NRF_SEC_TAG_TLS_DECRYPT_19 (NRF_SEC_TAG_TLS_DECRYPT_BASE + 19)
1068#define NRF_SEC_TAG_TLS_INVALID 0xFFFFFFFF
1181#define NRF_AI_CANONNAME 0x2
1183#define NRF_AI_NUMERICSERV 0x400
1191#define NRF_AI_PDNSERV 0x1000
1398#define NRF_POLLIN 0x1
1400#define NRF_POLLOUT 0x4
1402#define NRF_POLLERR 0x8
1404#define NRF_POLLHUP 0x10
1406#define NRF_POLLNVAL 0x20
1470 void *restrict option_value,
nrf_socklen_t *restrict option_len);
1548 const char *restrict servname,
uint32_t nrf_in_addr_t
IPv4 address.
Definition nrf_socket.h:1114
void nrf_freeifaddrs(struct nrf_ifaddrs *ifa)
Free address information returned by nrf_getifaddrs().
uint16_t nrf_in_port_t
Socket port type.
Definition nrf_socket.h:1095
const char * nrf_inet_ntop(int af, const void *restrict src, char *restrict dst, nrf_socklen_t size)
Convert IPv4 and IPv6 addresses between binary and text form.
const struct nrf_in6_addr nrf_in6addr_any
Global IPv6 any-address.
int nrf_socket_data_enabled_set(bool enabled)
Enable or disable data traffic through the socket interface.
void nrf_freeaddrinfo(struct nrf_addrinfo *ai)
Free address information returned by nrf_getaddrinfo().
uint32_t nrf_nfds_t
Definition nrf_socket.h:1164
unsigned short int nrf_sa_family_t
Socket families.
Definition nrf_socket.h:1102
int nrf_setdnsaddr(int family, const void *in_addr, nrf_socklen_t in_size)
Set or unset a fallback DNS address.
bool nrf_socket_data_enabled_get(void)
Get the current data enabled state.
int nrf_getifaddrs(struct nrf_ifaddrs **ifa)
Get interface address information.
int nrf_inet_pton(int af, const char *restrict src, void *restrict dst)
Convert IPv4 and IPv6 addresses between binary and text form.
uint32_t nrf_socklen_t
Definition nrf_socket.h:1163
const struct nrf_in_addr nrf_inaddr_any
Global IPv4 any-address.
int nrf_getaddrinfo(const char *restrict nodename, const char *restrict servname, const struct nrf_addrinfo *restrict hints, struct nrf_addrinfo **restrict res)
Get address information.
void(* nrf_modem_pollcb_t)(struct nrf_pollfd *pollfd)
Definition nrf_socket.h:1409
int nrf_getsockopt(int socket, int level, int option_name, void *restrict option_value, nrf_socklen_t *restrict option_len)
Get the socket options.
int nrf_close(int fildes)
Close a network socket.
int nrf_poll(struct nrf_pollfd fds[], nrf_nfds_t nfds, int timeout)
Poll multiple sockets for events.
ssize_t nrf_recvfrom(int socket, void *restrict buffer, size_t length, int flags, struct nrf_sockaddr *restrict address, nrf_socklen_t *restrict address_len)
Receive a message from a socket.
int nrf_accept(int socket, struct nrf_sockaddr *restrict address, nrf_socklen_t *restrict address_len)
Accept a new connection a socket.
int nrf_setsockopt(int socket, int level, int option_name, const void *option_value, nrf_socklen_t option_len)
Set the socket options.
int nrf_connect(int socket, const struct nrf_sockaddr *address, nrf_socklen_t address_len)
Connect a socket.
ssize_t nrf_recv(int socket, void *buffer, size_t length, int flags)
Receive a message from a connected socket.
int nrf_socket(int family, int type, int protocol)
Create a network socket.
ssize_t nrf_send(int socket, const void *buffer, size_t length, int flags)
Send a message on a connected socket.
int nrf_listen(int sock, int backlog)
Listen for socket connections and limit the queue of incoming connections.
int nrf_fcntl(int fd, int cmd, int flags)
Function for controlling file descriptor options.
ssize_t nrf_sendto(int socket, const void *message, size_t length, int flags, const struct nrf_sockaddr *dest_addr, nrf_socklen_t dest_len)
Send a message on a socket.
int nrf_bind(int socket, const struct nrf_sockaddr *address, nrf_socklen_t address_len)
Bind a name to a socket.
void(* nrf_modem_sendcb_t)(const struct nrf_modem_sendcb_params *params)
Definition nrf_socket.h:657
uint32_t nrf_sec_tag_t
Security tags used on the TLS socket.
Definition nrf_socket.h:1252
int32_t ssize_t
Definition nrf_socket.h:45
struct nrf_sockaddr * ai_addr
Definition nrf_socket.h:1208
int ai_flags
Definition nrf_socket.h:1198
int ai_socktype
Definition nrf_socket.h:1202
int ai_family
Definition nrf_socket.h:1200
struct nrf_addrinfo * ai_next
Definition nrf_socket.h:1212
char * ai_canonname
Definition nrf_socket.h:1210
nrf_socklen_t ai_addrlen
Definition nrf_socket.h:1206
int ai_protocol
Definition nrf_socket.h:1204
Address information.
Definition nrf_socket.h:1196
struct nrf_sockaddr * ifa_addr
Definition nrf_socket.h:1226
char * ifa_name
Definition nrf_socket.h:1222
void * ifa_data
Definition nrf_socket.h:1234
struct nrf_sockaddr * ifa_netmask
Definition nrf_socket.h:1228
struct nrf_sockaddr * ifa_dstaddr
Definition nrf_socket.h:1232
struct nrf_sockaddr * ifa_broadaddr
Definition nrf_socket.h:1230
uint32_t ifa_flags
Definition nrf_socket.h:1224
struct nrf_ifaddrs * ifa_next
Definition nrf_socket.h:1220
Interface address information.
Definition nrf_socket.h:1218
uint8_t s6_addr[16]
Definition nrf_socket.h:1108
IPv6 address.
Definition nrf_socket.h:1107
nrf_in_addr_t s_addr
Definition nrf_socket.h:1120
IPv4 address structure.
Definition nrf_socket.h:1119
short events
Definition nrf_socket.h:1416
bool oneshot
Definition nrf_socket.h:1420
nrf_modem_pollcb_t callback
Definition nrf_socket.h:1414
Definition nrf_socket.h:1412
int status
Definition nrf_socket.h:651
size_t bytes_sent
Definition nrf_socket.h:653
int fd
Definition nrf_socket.h:643
This structure is used to describe the parameters to a send callback function.
Definition nrf_socket.h:641
nrf_modem_sendcb_t callback
Definition nrf_socket.h:662
Definition nrf_socket.h:660
short revents
Definition nrf_socket.h:1394
short events
Definition nrf_socket.h:1392
int fd
Definition nrf_socket.h:1390
This structure is used to describe which events to poll for a given socket.
Definition nrf_socket.h:1388
uint8_t sin6_scope_id
Definition nrf_socket.h:1146
struct nrf_in6_addr sin6_addr
Definition nrf_socket.h:1144
nrf_sa_family_t sin6_family
Definition nrf_socket.h:1140
nrf_in_port_t sin6_port
Definition nrf_socket.h:1142
Address record for IPv6 addresses.
Definition nrf_socket.h:1138
nrf_sa_family_t sin_family
Definition nrf_socket.h:1156
struct nrf_in_addr sin_addr
Definition nrf_socket.h:1160
nrf_in_port_t sin_port
Definition nrf_socket.h:1158
Address record for IPv4 addresses.
Definition nrf_socket.h:1154
char sa_data[]
Definition nrf_socket.h:1175
nrf_sa_family_t sa_family
Definition nrf_socket.h:1173
Generic socket address.
Definition nrf_socket.h:1171
uint32_t tv_sec
Definition nrf_socket.h:1081
uint32_t tv_usec
Definition nrf_socket.h:1083
Structure specifying time interval.
Definition nrf_socket.h:1079