anjay
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
core.h
Go to the documentation of this file.
1/*
2 * Copyright 2017-2025 AVSystem <avsystem@avsystem.com>
3 * AVSystem Anjay LwM2M SDK
4 * All rights reserved.
5 *
6 * Licensed under the AVSystem-5-clause License.
7 * See the attached LICENSE file for details.
8 */
9
10#ifndef ANJAY_INCLUDE_ANJAY_CORE_H
11#define ANJAY_INCLUDE_ANJAY_CORE_H
12
13#include <stdint.h>
14
15#include <avsystem/coap/udp.h>
16
17#include <avsystem/commons/avs_list.h>
18#include <avsystem/commons/avs_net.h>
19#include <avsystem/commons/avs_prng.h>
20#include <avsystem/commons/avs_sched.h>
21#include <avsystem/commons/avs_stream.h>
22#include <avsystem/commons/avs_time.h>
23
24#include <anjay/anjay_config.h>
25
26#ifdef ANJAY_WITH_LWM2M_GATEWAY
27# define ANJAY_GATEWAY_MAX_PREFIX_LEN sizeof("dev65535")
28#endif // ANJAY_WITH_LWM2M_GATEWAY
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
35typedef uint16_t anjay_ssid_t;
36
40#define ANJAY_SSID_ANY 0
41
46#define ANJAY_SSID_BOOTSTRAP UINT16_MAX
47
49typedef struct anjay_struct anjay_t;
50
51#ifdef ANJAY_WITH_SMS
54#endif // ANJAY_WITH_SMS
55
56#ifdef ANJAY_WITH_NIDD
59#endif // ANJAY_WITH_NIDD
60
64// clang-format off
65#define ANJAY_COAP_DEFAULT_UDP_TX_PARAMS \
66 { \
67 /* .ack_timeout = */ { 2, 0 }, \
68 /* .ack_random_factor = */ 1.5, \
69 /* .max_retransmit = */ 4, \
70 /* .nstart = */ 1 \
71 }
72// clang-format on
73
79// clang-format off
80#define ANJAY_DTLS_DEFAULT_UDP_HS_TX_PARAMS \
81 { \
82 /* .min = */ { 1, 0 }, \
83 /* .max = */ { 60, 0 } \
84 }
85// clang-format on
86
87#ifdef ANJAY_WITH_SMS
94// clang-format off
95#define ANJAY_COAP_DEFAULT_SMS_TX_PARAMS \
96 { \
97 /* .ack_timeout = */ { 62, 0 }, \
98 /* .ack_random_factor = */ 1.5, \
99 /* .max_retransmit = */ 0, \
100 /* .nstart = */ 1 \
101 }
102// clang-format on
103#endif // ANJAY_WITH_SMS
104
105#ifdef ANJAY_WITH_NIDD
115// clang-format off
116#define ANJAY_COAP_DEFAULT_NIDD_TX_PARAMS \
117 { \
118 /* .ack_timeout = */ { 60, 0 }, \
119 /* .ack_random_factor = */ 1.5, \
120 /* .max_retransmit = */ 0, \
121 /* .nstart = */ 1 \
122 }
123// clang-format on
124#endif // ANJAY_WITH_NIDD
125
126#ifdef ANJAY_WITH_LWM2M11
141
154#endif // ANJAY_WITH_LWM2M11
155
156#ifdef ANJAY_WITH_EST
157typedef struct {
162 bool enable;
163
192
219 avs_time_duration_t max_margin;
221
222# ifdef ANJAY_WITH_LWM2M11
261# endif // ANJAY_WITH_LWM2M11
262
263# ifdef ANJAY_WITH_EST_ENGINE_SUPPORT
294 void *arg, const void *x509_der_data, size_t x509_der_data_size);
295# endif // ANJAY_WITH_EST_ENGINE_SUPPORT
296#endif // ANJAY_WITH_EST
297
298#ifdef ANJAY_WITH_CONN_STATUS_API
393
411typedef void
413 anjay_t *anjay,
414 anjay_ssid_t ssid,
416
434#endif // ANJAY_WITH_CONN_STATUS_API
435
436typedef struct anjay_configuration {
444 const char *endpoint_name;
445
452
456 avs_net_ssl_version_t dtls_version;
457
464
473
483
491 avs_net_socket_configuration_t socket_config;
492
503 const avs_coap_udp_tx_params_t *udp_tx_params;
504
539 const avs_net_dtls_handshake_timeouts_t *udp_dtls_hs_tx_params;
540
546
563
579
590
596
611
620
632
643 avs_net_socket_tls_ciphersuites_t default_tls_ciphersuites;
644
655 avs_crypto_prng_ctx_t *prng_ctx;
656
662 avs_ssl_additional_configuration_clb_t *additional_tls_config_clb;
663
664#if defined(WITH_AVS_COAP_TCP) \
665 && (defined(ANJAY_WITH_LWM2M11) || defined(ANJAY_WITH_COAP_DOWNLOAD))
673
681 avs_time_duration_t coap_tcp_request_timeout;
682#endif // defined(WITH_AVS_COAP_TCP) && (defined(ANJAY_WITH_LWM2M11) ||
683 // defined(ANJAY_WITH_COAP_DOWNLOAD))
684
685#ifdef ANJAY_WITH_SMS
696 const avs_coap_udp_tx_params_t *sms_tx_params;
697#endif // ANJAY_WITH_SMS
698
699#ifdef ANJAY_WITH_NIDD
710 const avs_coap_udp_tx_params_t *nidd_tx_params;
711#endif // ANJAY_WITH_NIDD
712
713#ifdef ANJAY_WITH_SMS
719#endif // ANJAY_WITH_SMS
720
721#ifdef ANJAY_WITH_NIDD
727#endif // ANJAY_WITH_NIDD
728
729#ifdef ANJAY_WITH_SMS
743 const char *local_msisdn;
744
755#endif // ANJAY_WITH_SMS
756
757#ifdef ANJAY_WITH_LWM2M11
777
797
812 avs_crypto_certificate_chain_info_t trust_store_certs;
813
828 avs_crypto_cert_revocation_list_info_t trust_store_crls;
829
842#endif // ANJAY_WITH_LWM2M11
843
844#ifdef ANJAY_WITH_EST
857
858# ifdef ANJAY_WITH_LWM2M11
864# endif // ANJAY_WITH_LWM2M11
865
866# ifdef ANJAY_WITH_EST_ENGINE_SUPPORT
874
882
891
900# endif // ANJAY_WITH_EST_ENGINE_SUPPORT
901#endif // ANJAY_WITH_EST
902#ifdef ANJAY_WITH_CONN_STATUS_API
911
922#endif // ANJAY_WITH_CONN_STATUS_API
923#ifdef ANJAY_WITH_COAP_DOWNLOAD
951
960 avs_time_duration_t coap_downloader_retry_delay;
961#endif // ANJAY_WITH_COAP_DOWNLOAD
963
967const char *anjay_get_version(void);
968
978
994
995#ifdef ANJAY_WITH_CORE_PERSISTENCE
1039 avs_stream_t *in_stream);
1040
1068 avs_stream_t *out_stream);
1069
1070#endif // ANJAY_WITH_CORE_PERSISTENCE
1071
1118AVS_LIST(avs_net_socket_t *const) anjay_get_sockets(anjay_t *anjay);
1119
1127
1174
1202
1222int anjay_serve(anjay_t *anjay, avs_net_socket_t *ready_socket);
1223
1225typedef uint16_t anjay_oid_t;
1226
1228typedef uint16_t anjay_iid_t;
1229
1231typedef uint16_t anjay_rid_t;
1232
1234typedef uint16_t anjay_riid_t;
1235
1240#define ANJAY_ID_INVALID UINT16_MAX
1241
1244#define ANJAY_COAP_STATUS(Maj, Min) ((uint8_t) ((Maj << 5) | (Min & 0x1F)))
1245
1251#define ANJAY_ERR_BAD_REQUEST (-(int) ANJAY_COAP_STATUS(4, 0))
1256#define ANJAY_ERR_UNAUTHORIZED (-(int) ANJAY_COAP_STATUS(4, 1))
1261#define ANJAY_ERR_BAD_OPTION (-(int) ANJAY_COAP_STATUS(4, 2))
1262#define ANJAY_ERR_FORBIDDEN (-(int) ANJAY_COAP_STATUS(4, 3))
1264#define ANJAY_ERR_NOT_FOUND (-(int) ANJAY_COAP_STATUS(4, 4))
1269#define ANJAY_ERR_METHOD_NOT_ALLOWED (-(int) ANJAY_COAP_STATUS(4, 5))
1274#define ANJAY_ERR_NOT_ACCEPTABLE (-(int) ANJAY_COAP_STATUS(4, 6))
1279#define ANJAY_ERR_REQUEST_ENTITY_INCOMPLETE (-(int) ANJAY_COAP_STATUS(4, 8))
1284#define ANJAY_ERR_UNSUPPORTED_CONTENT_FORMAT (-(int) ANJAY_COAP_STATUS(4, 15))
1286#define ANJAY_ERR_INTERNAL (-(int) ANJAY_COAP_STATUS(5, 0))
1288#define ANJAY_ERR_NOT_IMPLEMENTED (-(int) ANJAY_COAP_STATUS(5, 1))
1293#define ANJAY_ERR_SERVICE_UNAVAILABLE (-(int) ANJAY_COAP_STATUS(5, 3))
1311avs_sched_t *anjay_get_scheduler(anjay_t *anjay);
1312
1324int anjay_sched_time_to_next(anjay_t *anjay, avs_time_duration_t *out_delay);
1325
1339int anjay_sched_time_to_next_ms(anjay_t *anjay, int *out_delay_ms);
1340
1357
1365
1366#ifdef ANJAY_WITH_EVENT_LOOP
1428int anjay_event_loop_run(anjay_t *anjay, avs_time_duration_t max_wait_time);
1429
1451 avs_time_duration_t max_wait_time);
1452
1488
1518int anjay_serve_any(anjay_t *anjay, avs_time_duration_t max_wait_time);
1519#endif // ANJAY_WITH_EVENT_LOOP
1520
1553
1573
1574#ifdef ANJAY_WITH_LWM2M11
1588#endif // ANJAY_WITH_LWM2M11
1589
1622
1657 anjay_ssid_t ssid,
1658 avs_time_duration_t timeout);
1659
1671
1692
1699typedef struct {
1700 bool udp : 1;
1701 bool tcp : 1;
1702#ifdef ANJAY_WITH_SMS
1703 bool sms : 1;
1704#endif // ANJAY_WITH_SMS
1705#ifdef ANJAY_WITH_NIDD
1706 bool nidd : 1;
1707#endif // ANJAY_WITH_NIDD
1709
1714
1723
1729
1735
1736#ifdef ANJAY_WITH_SMS
1742#endif // ANJAY_WITH_SMS
1743
1744#ifdef ANJAY_WITH_NIDD
1750#endif // ANJAY_WITH_NIDD
1751
1762 anjay_transport_set_t transport_set);
1763
1791 anjay_transport_set_t transport_set);
1792
1812 anjay_transport_set_t transport_set);
1813
1829 anjay_transport_set_t transport_set);
1830
1853 anjay_transport_set_t transport_set);
1854
1871
1872#ifdef ANJAY_WITH_LWM2M11
1910
1947#endif // ANJAY_WITH_LWM2M11
1948
1949typedef struct {
1953 avs_net_security_info_t security_info;
1954
1959 const avs_net_socket_dane_tlsa_record_t *dane_tlsa_record;
1960
1968 avs_net_socket_tls_ciphersuites_t tls_ciphersuites;
1969
1970 /*
1971 * Server Name Indicator to use for authenticating with the peer during
1972 * secure TLS connection. The value is passed to the underlying TLS library
1973 * that need to take this variable into account for it make any effect. This
1974 * field is optional and can be left zero-initialized. If not set the
1975 * integration layer should use the Server URI instead.
1976 */
1979
2020 anjay_security_config_t *out_config,
2021 const char *uri);
2022
2048
2049#if defined(ANJAY_WITH_EST) && defined(AVS_COMMONS_WITH_AVS_PERSISTENCE)
2062avs_error_t anjay_est_state_persist(anjay_t *anjay, avs_stream_t *out_stream);
2063
2082avs_error_t anjay_est_state_restore(anjay_t *anjay, avs_stream_t *out_stream);
2083
2092#endif // defined(ANJAY_WITH_EST) && defined(AVS_COMMONS_WITH_AVS_PERSISTENCE)
2093
2100
2119
2148 anjay_t *anjay,
2149 anjay_ssid_t ssid,
2151
2179static inline avs_time_real_t
2183
2222 anjay_ssid_t ssid);
2223
2258 anjay_t *anjay, anjay_transport_set_t transport_set);
2259
2301 anjay_ssid_t ssid);
2302
2333 anjay_ssid_t ssid);
2334
2360 anjay_t *anjay, anjay_transport_set_t transport_set);
2361
2387 anjay_t *anjay, anjay_transport_set_t transport_set);
2388
2412
2438 anjay_t *anjay, anjay_transport_set_t transport_set);
2439
2453avs_error_t
2455 anjay_transport_set_t transport_set,
2456 const avs_coap_udp_tx_params_t *tx_params);
2457
2471avs_error_t
2473 anjay_transport_set_t transport_set,
2474 avs_time_duration_t exchange_timeout);
2475
2486 anjay_t *anjay,
2487 avs_net_dtls_handshake_timeouts_t dtls_handshake_timeouts);
2488
2489#ifdef ANJAY_WITH_COMMUNICATION_TIMESTAMP_API
2511 anjay_ssid_t ssid,
2512 avs_time_real_t *out_time);
2513
2544 anjay_ssid_t ssid,
2545 avs_time_real_t *out_time);
2567 anjay_ssid_t ssid,
2568 avs_time_real_t *out_time);
2569#endif // ANJAY_WITH_COMMUNICATION_TIMESTAMP_API
2570
2571#ifdef ANJAY_WITH_SMS
2572# ifdef ANJAY_WITH_LWM2M11
2587 anjay_ssid_t ssid,
2588 bool *out_sms_trigger);
2589# endif // ANJAY_WITH_LWM2M11
2590
2604 const char *server_msisdn,
2605 anjay_ssid_t *out_ssid);
2606#endif // ANJAY_WITH_SMS
2607
2608#ifdef __cplusplus
2609} /* extern "C" */
2610#endif
2611
2612#endif /*ANJAY_INCLUDE_ANJAY_CORE_H*/
anjay_registration_expiration_status_t
Definition core.h:2101
@ ANJAY_REGISTRATION_EXPIRATION_STATUS_VALID
Definition core.h:2107
@ ANJAY_REGISTRATION_EXPIRATION_STATUS_INFINITE_LIFETIME
Definition core.h:2117
@ ANJAY_REGISTRATION_EXPIRATION_STATUS_EXPIRED
Definition core.h:2112
static avs_time_real_t anjay_registration_expiration_time(anjay_t *anjay, anjay_ssid_t ssid)
Definition core.h:2180
bool anjay_est_state_is_ready_for_persistence(anjay_t *anjay)
const anjay_transport_set_t ANJAY_TRANSPORT_SET_NIDD
anjay_t * anjay_new(const anjay_configuration_t *config)
int anjay_set_queue_mode_preference(anjay_t *anjay, anjay_queue_mode_preference_t preference)
avs_error_t anjay_update_coap_exchange_timeout(anjay_t *anjay, anjay_transport_set_t transport_set, avs_time_duration_t exchange_timeout)
const anjay_transport_set_t ANJAY_TRANSPORT_SET_SMS
anjay_est_cacerts_policy_t
Definition core.h:223
@ ANJAY_EST_CACERTS_FOR_EST_SECURITY_AND_BOOTSTRAP
Definition core.h:230
@ ANJAY_EST_CACERTS_IF_EST_CONFIGURED
Definition core.h:247
@ ANJAY_EST_CACERTS_DISABLED
Definition core.h:259
@ ANJAY_EST_CACERTS_ALWAYS
Definition core.h:254
@ ANJAY_EST_CACERTS_FOR_EST_SECURITY
Definition core.h:240
enum anjay_server_conn_status anjay_server_conn_status_t
avs_time_real_t anjay_transport_next_planned_pmax_notify_trigger(anjay_t *anjay, anjay_transport_set_t transport_set)
int anjay_delete_with_core_persistence(anjay_t *anjay, avs_stream_t *out_stream)
avs_time_real_t anjay_next_planned_lifecycle_operation(anjay_t *anjay, anjay_ssid_t ssid)
void anjay_delete(anjay_t *anjay)
avs_time_real_t anjay_next_planned_pmax_notify_trigger(anjay_t *anjay, anjay_ssid_t ssid)
int anjay_get_sms_trigger(anjay_t *anjay, anjay_ssid_t ssid, bool *out_sms_trigger)
anjay_socket_transport_t
Definition core.h:1120
@ ANJAY_SOCKET_TRANSPORT_NIDD
Definition core.h:1125
@ ANJAY_SOCKET_TRANSPORT_INVALID
Definition core.h:1121
@ ANJAY_SOCKET_TRANSPORT_UDP
Definition core.h:1122
@ ANJAY_SOCKET_TRANSPORT_TCP
Definition core.h:1123
@ ANJAY_SOCKET_TRANSPORT_SMS
Definition core.h:1124
int anjay_sched_time_to_next_ms(anjay_t *anjay, int *out_delay_ms)
const anjay_transport_set_t ANJAY_TRANSPORT_SET_TCP
uint16_t anjay_oid_t
Definition core.h:1225
uint16_t anjay_rid_t
Definition core.h:1231
int anjay_event_loop_interrupt(anjay_t *anjay)
bool anjay_all_connections_failed(anjay_t *anjay)
uint16_t anjay_iid_t
Definition core.h:1228
bool anjay_ongoing_registration_exists(anjay_t *anjay)
bool anjay_transport_has_unsent_notifications(anjay_t *anjay, anjay_transport_set_t transport_set)
int anjay_transport_enter_offline(anjay_t *anjay, anjay_transport_set_t transport_set)
anjay_security_config_t anjay_security_config_pkix(anjay_t *anjay)
avs_error_t anjay_update_dtls_handshake_timeouts(anjay_t *anjay, avs_net_dtls_handshake_timeouts_t dtls_handshake_timeouts)
bool anjay_has_unsent_notifications(anjay_t *anjay, anjay_ssid_t ssid)
anjay_server_conn_status_t anjay_get_server_connection_status(anjay_t *anjay, anjay_ssid_t ssid)
int anjay_transport_set_online(anjay_t *anjay, anjay_transport_set_t transport_set)
int anjay_server_schedule_reconnect(anjay_t *anjay, anjay_ssid_t ssid)
struct anjay_struct anjay_t
Definition core.h:49
anjay_queue_mode_preference_t
Definition core.h:1873
@ ANJAY_FORCE_ONLINE_MODE
Definition core.h:1908
@ ANJAY_PREFER_QUEUE_MODE
Definition core.h:1889
@ ANJAY_FORCE_QUEUE_MODE
Definition core.h:1882
@ ANJAY_PREFER_ONLINE_MODE
Definition core.h:1898
anjay_t * anjay_new_from_core_persistence(const anjay_configuration_t *config, avs_stream_t *in_stream)
int anjay_transport_exit_offline(anjay_t *anjay, anjay_transport_set_t transport_set)
avs_time_real_t anjay_transport_next_planned_notify_trigger(anjay_t *anjay, anjay_transport_set_t transport_set)
uint16_t anjay_ssid_t
Definition core.h:35
avs_time_real_t anjay_next_planned_notify_trigger(anjay_t *anjay, anjay_ssid_t ssid)
int anjay_event_loop_run(anjay_t *anjay, avs_time_duration_t max_wait_time)
avs_error_t anjay_update_transport_tx_params(anjay_t *anjay, anjay_transport_set_t transport_set, const avs_coap_udp_tx_params_t *tx_params)
const anjay_transport_set_t ANJAY_TRANSPORT_SET_UDP
const anjay_transport_set_t ANJAY_TRANSPORT_SET_IP
avs_error_t anjay_get_server_last_registration_time(anjay_t *anjay, anjay_ssid_t ssid, avs_time_real_t *out_time)
avs_error_t anjay_get_server_last_communication_time(anjay_t *anjay, anjay_ssid_t ssid, avs_time_real_t *out_time)
int anjay_disable_server(anjay_t *anjay, anjay_ssid_t ssid)
const char * anjay_est_engine_cacert_address_gen_t(void *arg, const void *x509_der_data, size_t x509_der_data_size)
Definition core.h:293
AVS_LIST[avs_net_socket_t *const ] anjay_get_sockets(anjay_t *anjay)
avs_time_real_t anjay_transport_next_planned_lifecycle_operation(anjay_t *anjay, anjay_transport_set_t transport_set)
void anjay_server_connection_status_cb_t(void *arg, anjay_t *anjay, anjay_ssid_t ssid, anjay_server_conn_status_t status)
Definition core.h:412
int anjay_schedule_registration_update(anjay_t *anjay, anjay_ssid_t ssid)
int anjay_serve(anjay_t *anjay, avs_net_socket_t *ready_socket)
void anjay_sched_run(anjay_t *anjay)
int anjay_schedule_register(anjay_t *anjay, anjay_ssid_t ssid)
AVS_LIST[const anjay_socket_entry_t] anjay_get_socket_entries(anjay_t *anjay)
bool anjay_transport_is_offline(anjay_t *anjay, anjay_transport_set_t transport_set)
int anjay_get_server_ssid_by_msisdn(anjay_t *anjay, const char *server_msisdn, anjay_ssid_t *out_ssid)
int anjay_schedule_bootstrap_request(anjay_t *anjay)
anjay_server_conn_status
Definition core.h:305
@ ANJAY_SERV_CONN_STATUS_INITIAL
Definition core.h:324
@ ANJAY_SERV_CONN_STATUS_REGISTERING
Definition core.h:345
@ ANJAY_SERV_CONN_STATUS_BOOTSTRAPPING
Definition core.h:335
@ ANJAY_SERV_CONN_STATUS_DEREGISTERING
Definition core.h:361
@ ANJAY_SERV_CONN_STATUS_INVALID
Definition core.h:310
@ ANJAY_SERV_CONN_STATUS_REREGISTERING
Definition core.h:386
@ ANJAY_SERV_CONN_STATUS_ERROR
Definition core.h:317
@ ANJAY_SERV_CONN_STATUS_UPDATING
Definition core.h:391
@ ANJAY_SERV_CONN_STATUS_REGISTERED
Definition core.h:350
@ ANJAY_SERV_CONN_STATUS_REG_FAILURE
Definition core.h:356
@ ANJAY_SERV_CONN_STATUS_SUSPENDING
Definition core.h:375
@ ANJAY_SERV_CONN_STATUS_DEREGISTERED
Definition core.h:369
@ ANJAY_SERV_CONN_STATUS_SUSPENDED
Definition core.h:380
@ ANJAY_SERV_CONN_STATUS_CONNECTING
Definition core.h:330
@ ANJAY_SERV_CONN_STATUS_BOOTSTRAPPED
Definition core.h:340
avs_sched_t * anjay_get_scheduler(anjay_t *anjay)
int anjay_enable_server(anjay_t *anjay, anjay_ssid_t ssid)
avs_error_t anjay_get_server_next_update_time(anjay_t *anjay, anjay_ssid_t ssid, avs_time_real_t *out_time)
int anjay_serve_any(anjay_t *anjay, avs_time_duration_t max_wait_time)
int anjay_security_config_from_dm(anjay_t *anjay, anjay_security_config_t *out_config, const char *uri)
int anjay_disable_server_with_timeout(anjay_t *anjay, anjay_ssid_t ssid, avs_time_duration_t timeout)
int anjay_event_loop_run_with_error_handling(anjay_t *anjay_locked, avs_time_duration_t max_wait_time)
avs_time_real_t anjay_registration_expiration_time_with_status(anjay_t *anjay, anjay_ssid_t ssid, anjay_registration_expiration_status_t *out_status)
int anjay_sched_time_to_next(anjay_t *anjay, avs_time_duration_t *out_delay)
int anjay_transport_schedule_reconnect(anjay_t *anjay, anjay_transport_set_t transport_set)
anjay_lwm2m_version_t
Definition core.h:127
@ ANJAY_LWM2M_VERSION_1_1
Definition core.h:139
@ ANJAY_LWM2M_VERSION_1_0
Definition core.h:132
const char * anjay_get_version(void)
struct anjay_configuration anjay_configuration_t
avs_error_t anjay_est_state_restore(anjay_t *anjay, avs_stream_t *out_stream)
int anjay_sched_calculate_wait_time_ms(anjay_t *anjay, int limit_ms)
avs_error_t anjay_est_state_persist(anjay_t *anjay, avs_stream_t *out_stream)
const anjay_transport_set_t ANJAY_TRANSPORT_SET_ALL
uint16_t anjay_riid_t
Definition core.h:1234
Definition core.h:436
bool use_connection_id
Definition core.h:595
bool enable_self_notify
Definition core.h:619
size_t in_buffer_size
Definition core.h:463
avs_net_socket_configuration_t socket_config
Definition core.h:491
bool prefer_multipart_sms
Definition core.h:754
size_t coap_downloader_retry_count
Definition core.h:950
size_t msg_cache_size
Definition core.h:482
avs_time_duration_t coap_tcp_request_timeout
Definition core.h:681
avs_time_duration_t coap_downloader_retry_delay
Definition core.h:960
size_t out_buffer_size
Definition core.h:472
void * server_connection_status_cb_arg
Definition core.h:921
const anjay_lwm2m_version_config_t * lwm2m_version_config
Definition core.h:776
void * est_engine_cacerts_address_gen_cb_arg
Definition core.h:899
anjay_nidd_driver_t * nidd_driver
Definition core.h:726
avs_crypto_certificate_chain_info_t trust_store_certs
Definition core.h:812
bool use_system_trust_store
Definition core.h:796
bool confirmable_notifications
Definition core.h:545
avs_crypto_prng_ctx_t * prng_ctx
Definition core.h:655
const avs_coap_udp_tx_params_t * udp_tx_params
Definition core.h:503
bool prefer_hierarchical_formats
Definition core.h:589
avs_crypto_cert_revocation_list_info_t trust_store_crls
Definition core.h:828
bool update_immediately_on_dm_change
Definition core.h:610
bool disable_legacy_server_initiated_bootstrap
Definition core.h:562
anjay_est_cacerts_policy_t est_cacerts_policy
Definition core.h:863
size_t coap_tcp_max_options_size
Definition core.h:672
const char * endpoint_name
Definition core.h:444
avs_net_ssl_version_t dtls_version
Definition core.h:456
avs_net_socket_tls_ciphersuites_t default_tls_ciphersuites
Definition core.h:643
const avs_coap_udp_tx_params_t * sms_tx_params
Definition core.h:696
const char * local_msisdn
Definition core.h:743
const avs_net_dtls_handshake_timeouts_t * udp_dtls_hs_tx_params
Definition core.h:539
const char * est_engine_key_address
Definition core.h:873
anjay_est_engine_cacert_address_gen_t * est_engine_cacerts_address_gen_cb
Definition core.h:890
bool rebuild_client_cert_chain
Definition core.h:841
anjay_server_connection_status_cb_t * server_connection_status_cb
Definition core.h:910
uint16_t udp_listen_port
Definition core.h:451
bool connection_error_is_registration_failure
Definition core.h:631
const char * est_engine_cert_address
Definition core.h:881
const avs_coap_udp_tx_params_t * nidd_tx_params
Definition core.h:710
const anjay_est_reenroll_config_t * est_reenroll_config
Definition core.h:856
avs_ssl_additional_configuration_clb_t * additional_tls_config_clb
Definition core.h:662
size_t stored_notification_limit
Definition core.h:578
anjay_smsdrv_t * sms_driver
Definition core.h:718
Definition core.h:157
double nominal_usage
Definition core.h:191
avs_time_duration_t max_margin
Definition core.h:219
bool enable
Definition core.h:162
Definition core.h:142
anjay_lwm2m_version_t minimum_version
Definition core.h:146
anjay_lwm2m_version_t maximum_version
Definition core.h:152
Definition nidd.h:169
Definition core.h:1949
avs_net_security_info_t security_info
Definition core.h:1953
const char * server_name_indication
Definition core.h:1977
avs_net_socket_tls_ciphersuites_t tls_ciphersuites
Definition core.h:1968
const avs_net_socket_dane_tlsa_record_t * dane_tlsa_record
Definition core.h:1959
Definition sms.h:134
Definition core.h:1132
bool queue_mode
Definition core.h:1172
anjay_ssid_t ssid
Definition core.h:1158
anjay_socket_transport_t transport
Definition core.h:1146
avs_net_socket_t * socket
Definition core.h:1138
Definition core.h:1699
bool sms
Definition core.h:1703
bool tcp
Definition core.h:1701
bool udp
Definition core.h:1700
bool nidd
Definition core.h:1706