Zephyr API 3.6.99
|
NCS specific additions to the BSD sockets API definitions. More...
Go to the source code of this file.
Macros | |
#define | SOCK_NATIVE 0x80000000 |
#define | SOCK_NATIVE_TLS 0x40000000 |
#define | TLS_DTLS_HANDSHAKE_TIMEO 18 |
Socket option to set DTLS handshake timeout, specifically for nRF sockets. | |
#define | TLS_DTLS_CONN_SAVE 19 |
Socket option to save DTLS connection, specifically for nRF sockets. | |
#define | TLS_DTLS_CONN_LOAD 20 |
Socket option to load DTLS connection, specifically for nRF sockets. | |
#define | TLS_DTLS_HANDSHAKE_STATUS 21 |
Socket option to get result of latest TLS/DTLS completed handshakes end status, specifically for nRF sockets. | |
#define | TLS_SESSION_CACHE_DISABLED 0 |
Disable TLS session caching. | |
#define | TLS_SESSION_CACHE_ENABLED 1 |
Enable TLS session caching. | |
#define | TLS_DTLS_HANDSHAKE_TIMEO_NONE 0 |
No timeout. | |
#define | TLS_DTLS_HANDSHAKE_TIMEO_1S 1 |
1 second | |
#define | TLS_DTLS_HANDSHAKE_TIMEO_3S 3 |
1s + 2s | |
#define | TLS_DTLS_HANDSHAKE_TIMEO_7S 7 |
1s + 2s + 4s | |
#define | TLS_DTLS_HANDSHAKE_TIMEO_15S 15 |
1s + 2s + 4s + 8s | |
#define | TLS_DTLS_HANDSHAKE_TIMEO_31S 31 |
1s + 2s + 4s + 8s + 16s | |
#define | TLS_DTLS_HANDSHAKE_TIMEO_63S 63 |
1s + 2s + 4s + 8s + 16s + 32s | |
#define | TLS_DTLS_HANDSHAKE_TIMEO_123S 123 |
1s + 2s + 4s + 8s + 16s + 32s + 60s | |
#define | TLS_DTLS_HANDSHAKE_STATUS_FULL 0 |
#define | TLS_DTLS_HANDSHAKE_STATUS_CACHED 1 |
#define | SO_EXCEPTIONAL_DATA 33 |
sockopt: enable sending data as part of exceptional events | |
#define | SO_KEEPOPEN 34 |
sockopt: Keep socket open when its PDN connection is lost or the device is put into flight mode. | |
#define | SO_BINDTOPDN 40 |
sockopt: bind to PDN | |
#define | SO_RAI 61 |
sockopt: Release assistance indication (RAI). | |
#define | RAI_NO_DATA 1 |
Release assistance indication (RAI). | |
#define | RAI_LAST 2 |
Release assistance indication (RAI). | |
#define | RAI_ONE_RESP 3 |
Release assistance indication (RAI). | |
#define | RAI_ONGOING 4 |
Release assistance indication (RAI). | |
#define | RAI_WAIT_MORE 5 |
Release assistance indication (RAI). | |
#define | IPPROTO_ALL 512 |
IPv4 and IPv6 protocol level (pseudo-val) for nRF sockets. | |
#define | SO_SILENCE_ALL 30 |
sockopt: disable all replies to unexpected traffics | |
#define | SO_IP_ECHO_REPLY 31 |
sockopt: enable IPv4 ICMP replies | |
#define | SO_IPV6_ECHO_REPLY 32 |
sockopt: enable IPv6 ICMP replies | |
#define | SO_IPV6_DELAYED_ADDR_REFRESH 62 |
sockopt: Delay IPv6 address refresh during power saving mode | |
#define | SO_TCP_SRV_SESSTIMEO 55 |
sockopt: Configurable TCP server session timeout in minutes. | |
#define | AI_PDNSERV 0x1000 |
Assume service contains a Packet Data Network (PDN) ID. | |
#define | MSG_WAITACK 0x200 |
Request a blocking send operation until the request is acknowledged. | |
NCS specific additions to the BSD sockets API definitions.
#define AI_PDNSERV 0x1000 |
Assume service
contains a Packet Data Network (PDN) ID.
When specified together with the AI_NUMERICSERV flag, service
shall be formatted as follows: "port:pdn_id" where "port" is the port number and "pdn_id" is the PDN ID. Example: "8080:1", port 8080 PDN ID 1. Example: "42:0", port 42 PDN ID 0.
#define IPPROTO_ALL 512 |
IPv4 and IPv6 protocol level (pseudo-val) for nRF sockets.
#define MSG_WAITACK 0x200 |
Request a blocking send operation until the request is acknowledged.
When used in send() or sendto(), the request will not return until the send operation is completed by lower layers, or until the timeout, given by the SO_SNDTIMEO socket option, is reached. Valid timeout values are 1 to 600 seconds.
#define RAI_LAST 2 |
#define RAI_NO_DATA 1 |
Release assistance indication (RAI).
Indicate that the application does not intend to send more data. This applies immediately and lets the modem exit connected mode more quickly.
#define RAI_ONE_RESP 3 |
#define RAI_ONGOING 4 |
Release assistance indication (RAI).
Indicate that the socket is in active use by a client application. This lets the modem stay in connected mode longer.
#define RAI_WAIT_MORE 5 |
Release assistance indication (RAI).
Indicate that the socket is in active use by a server application. This lets the modem stay in connected mode longer.
#define SO_BINDTOPDN 40 |
sockopt: bind to PDN
#define SO_EXCEPTIONAL_DATA 33 |
sockopt: enable sending data as part of exceptional events
#define SO_IP_ECHO_REPLY 31 |
sockopt: enable IPv4 ICMP replies
#define SO_IPV6_DELAYED_ADDR_REFRESH 62 |
sockopt: Delay IPv6 address refresh during power saving mode
#define SO_IPV6_ECHO_REPLY 32 |
sockopt: enable IPv6 ICMP replies
#define SO_KEEPOPEN 34 |
sockopt: Keep socket open when its PDN connection is lost or the device is put into flight mode.
#define SO_RAI 61 |
sockopt: Release assistance indication (RAI).
The option accepts an integer, indicating the type of RAI. Accepted values for the option are: RAI_NO_DATA, RAI_LAST, RAI_ONE_RESP, RAI_ONGOING, RAI_WAIT_MORE.
#define SO_SILENCE_ALL 30 |
sockopt: disable all replies to unexpected traffics
#define SO_TCP_SRV_SESSTIMEO 55 |
sockopt: Configurable TCP server session timeout in minutes.
Range is 0 to 135. 0 is no timeout and 135 is 2 h 15 min. Default is 0 (no timeout).
#define SOCK_NATIVE 0x80000000 |
#define SOCK_NATIVE_TLS 0x40000000 |
#define TLS_DTLS_CONN_LOAD 20 |
Socket option to load DTLS connection, specifically for nRF sockets.
#define TLS_DTLS_CONN_SAVE 19 |
Socket option to save DTLS connection, specifically for nRF sockets.
#define TLS_DTLS_HANDSHAKE_STATUS 21 |
Socket option to get result of latest TLS/DTLS completed handshakes end status, specifically for nRF sockets.
The option accepts an integer, indicating the setting. Accepted vaules for the option are: 0 and 1.
#define TLS_DTLS_HANDSHAKE_STATUS_CACHED 1 |
#define TLS_DTLS_HANDSHAKE_STATUS_FULL 0 |
#define TLS_DTLS_HANDSHAKE_TIMEO 18 |
Socket option to set DTLS handshake timeout, specifically for nRF sockets.
The option accepts an integer, indicating the total handshake timeout, including retransmissions, in seconds. Accepted values for the option are: 1, 3, 7, 15, 31, 63, 123.
#define TLS_DTLS_HANDSHAKE_TIMEO_123S 123 |
1s + 2s + 4s + 8s + 16s + 32s + 60s
#define TLS_DTLS_HANDSHAKE_TIMEO_15S 15 |
1s + 2s + 4s + 8s
#define TLS_DTLS_HANDSHAKE_TIMEO_1S 1 |
1 second
#define TLS_DTLS_HANDSHAKE_TIMEO_31S 31 |
1s + 2s + 4s + 8s + 16s
#define TLS_DTLS_HANDSHAKE_TIMEO_3S 3 |
1s + 2s
#define TLS_DTLS_HANDSHAKE_TIMEO_63S 63 |
1s + 2s + 4s + 8s + 16s + 32s
#define TLS_DTLS_HANDSHAKE_TIMEO_7S 7 |
1s + 2s + 4s
#define TLS_DTLS_HANDSHAKE_TIMEO_NONE 0 |
No timeout.
#define TLS_SESSION_CACHE_DISABLED 0 |
Disable TLS session caching.
#define TLS_SESSION_CACHE_ENABLED 1 |
Enable TLS session caching.