anjay
Loading...
Searching...
No Matches
core.h
Go to the documentation of this file.
1/*
2 * Copyright 2017-2026 AVSystem <avsystem@avsystem.com>
3 * AVSystem Anjay LwM2M SDK
4 * All rights reserved.
5 *
6 * Licensed under AVSystem Anjay LwM2M Client SDK - Non-Commercial 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// NOTE: A lot of code depends on numerical values of these constants.
299// Please be careful when refactoring.
307
325typedef struct {
327
328#ifdef ANJAY_WITH_LWM2M_GATEWAY
329 // NULL-terminated string
331#endif // ANJAY_WITH_LWM2M_GATEWAY
333
375 anjay_t *anjay,
376 anjay_ssid_t ssid,
377 const anjay_uri_path_t *observation_paths,
378 const size_t paths_count,
379 avs_error_t err);
380
381#ifdef ANJAY_WITH_CONN_STATUS_API
473
488typedef void
490 anjay_t *anjay,
491 anjay_ssid_t ssid,
493
508#endif // ANJAY_WITH_CONN_STATUS_API
509
510typedef struct anjay_configuration {
518 const char *endpoint_name;
519
526
530 avs_net_ssl_version_t dtls_version;
531
538
547
557
565 avs_net_socket_configuration_t socket_config;
566
577 const avs_coap_udp_tx_params_t *udp_tx_params;
578
613 const avs_net_dtls_handshake_timeouts_t *udp_dtls_hs_tx_params;
614
620
637
653
664
670
685
694
706
717 avs_net_socket_tls_ciphersuites_t default_tls_ciphersuites;
718
729 avs_crypto_prng_ctx_t *prng_ctx;
730
736 avs_ssl_additional_configuration_clb_t *additional_tls_config_clb;
737
738#if defined(WITH_AVS_COAP_TCP) \
739 && (defined(ANJAY_WITH_LWM2M11) || defined(ANJAY_WITH_COAP_DOWNLOAD))
747
755 avs_time_duration_t coap_tcp_request_timeout;
756#endif // defined(WITH_AVS_COAP_TCP) && (defined(ANJAY_WITH_LWM2M11) ||
757 // defined(ANJAY_WITH_COAP_DOWNLOAD))
758
759#ifdef ANJAY_WITH_SMS
770 const avs_coap_udp_tx_params_t *sms_tx_params;
771#endif // ANJAY_WITH_SMS
772
773#ifdef ANJAY_WITH_NIDD
784 const avs_coap_udp_tx_params_t *nidd_tx_params;
785#endif // ANJAY_WITH_NIDD
786
787#ifdef ANJAY_WITH_SMS
793#endif // ANJAY_WITH_SMS
794
795#ifdef ANJAY_WITH_NIDD
801#endif // ANJAY_WITH_NIDD
802
803#ifdef ANJAY_WITH_SMS
817 const char *local_msisdn;
818
829#endif // ANJAY_WITH_SMS
830
831#ifdef ANJAY_WITH_LWM2M11
851
871
886 avs_crypto_certificate_chain_info_t trust_store_certs;
887
902 avs_crypto_cert_revocation_list_info_t trust_store_crls;
903
916#endif // ANJAY_WITH_LWM2M11
917
918#ifdef ANJAY_WITH_EST
931
932# ifdef ANJAY_WITH_LWM2M11
938# endif // ANJAY_WITH_LWM2M11
939
940# ifdef ANJAY_WITH_EST_ENGINE_SUPPORT
948
956
965
974# endif // ANJAY_WITH_EST_ENGINE_SUPPORT
975#endif // ANJAY_WITH_EST
976
983
984#ifdef ANJAY_WITH_CONN_STATUS_API
990
998#endif // ANJAY_WITH_CONN_STATUS_API
999#ifdef ANJAY_WITH_COAP_DOWNLOAD
1025
1031 avs_time_duration_t coap_downloader_retry_delay;
1032#endif // ANJAY_WITH_COAP_DOWNLOAD
1034
1038const char *anjay_get_version(void);
1039
1049
1065
1066#ifdef ANJAY_WITH_CORE_PERSISTENCE
1110 avs_stream_t *in_stream);
1111
1139 avs_stream_t *out_stream);
1140
1141#endif // ANJAY_WITH_CORE_PERSISTENCE
1142
1189AVS_LIST(avs_net_socket_t *const) anjay_get_sockets(anjay_t *anjay);
1190
1198
1245
1273
1293int anjay_serve(anjay_t *anjay, avs_net_socket_t *ready_socket);
1294
1296typedef uint16_t anjay_oid_t;
1297
1299typedef uint16_t anjay_iid_t;
1300
1302typedef uint16_t anjay_rid_t;
1303
1305typedef uint16_t anjay_riid_t;
1306
1311#define ANJAY_ID_INVALID UINT16_MAX
1312
1315#define ANJAY_COAP_STATUS(Maj, Min) ((uint8_t) ((Maj << 5) | (Min & 0x1F)))
1316
1322#define ANJAY_ERR_BAD_REQUEST (-(int) ANJAY_COAP_STATUS(4, 0))
1327#define ANJAY_ERR_UNAUTHORIZED (-(int) ANJAY_COAP_STATUS(4, 1))
1332#define ANJAY_ERR_BAD_OPTION (-(int) ANJAY_COAP_STATUS(4, 2))
1333#define ANJAY_ERR_FORBIDDEN (-(int) ANJAY_COAP_STATUS(4, 3))
1335#define ANJAY_ERR_NOT_FOUND (-(int) ANJAY_COAP_STATUS(4, 4))
1340#define ANJAY_ERR_METHOD_NOT_ALLOWED (-(int) ANJAY_COAP_STATUS(4, 5))
1345#define ANJAY_ERR_NOT_ACCEPTABLE (-(int) ANJAY_COAP_STATUS(4, 6))
1350#define ANJAY_ERR_REQUEST_ENTITY_INCOMPLETE (-(int) ANJAY_COAP_STATUS(4, 8))
1355#define ANJAY_ERR_UNSUPPORTED_CONTENT_FORMAT (-(int) ANJAY_COAP_STATUS(4, 15))
1357#define ANJAY_ERR_INTERNAL (-(int) ANJAY_COAP_STATUS(5, 0))
1359#define ANJAY_ERR_NOT_IMPLEMENTED (-(int) ANJAY_COAP_STATUS(5, 1))
1364#define ANJAY_ERR_SERVICE_UNAVAILABLE (-(int) ANJAY_COAP_STATUS(5, 3))
1382avs_sched_t *anjay_get_scheduler(anjay_t *anjay);
1383
1395int anjay_sched_time_to_next(anjay_t *anjay, avs_time_duration_t *out_delay);
1396
1410int anjay_sched_time_to_next_ms(anjay_t *anjay, int *out_delay_ms);
1411
1428
1436
1437#ifdef ANJAY_WITH_EVENT_LOOP
1499int anjay_event_loop_run(anjay_t *anjay, avs_time_duration_t max_wait_time);
1500
1522 avs_time_duration_t max_wait_time);
1523
1559
1589int anjay_serve_any(anjay_t *anjay, avs_time_duration_t max_wait_time);
1590#endif // ANJAY_WITH_EVENT_LOOP
1591
1624
1644
1645#ifdef ANJAY_WITH_LWM2M11
1659#endif // ANJAY_WITH_LWM2M11
1660
1693
1728 anjay_ssid_t ssid,
1729 avs_time_duration_t timeout);
1730
1742
1763
1770typedef struct {
1771 bool udp : 1;
1772 bool tcp : 1;
1773#ifdef ANJAY_WITH_SMS
1774 bool sms : 1;
1775#endif // ANJAY_WITH_SMS
1776#ifdef ANJAY_WITH_NIDD
1777 bool nidd : 1;
1778#endif // ANJAY_WITH_NIDD
1780
1785
1794
1800
1806
1807#ifdef ANJAY_WITH_SMS
1813#endif // ANJAY_WITH_SMS
1814
1815#ifdef ANJAY_WITH_NIDD
1821#endif // ANJAY_WITH_NIDD
1822
1833 anjay_transport_set_t transport_set);
1834
1862 anjay_transport_set_t transport_set);
1863
1883 anjay_transport_set_t transport_set);
1884
1900 anjay_transport_set_t transport_set);
1901
1924 anjay_transport_set_t transport_set);
1925
1943
1944#ifdef ANJAY_WITH_LWM2M11
1982
2019#endif // ANJAY_WITH_LWM2M11
2020
2021typedef struct {
2025 avs_net_security_info_t security_info;
2026
2031 const avs_net_socket_dane_tlsa_record_t *dane_tlsa_record;
2032
2040 avs_net_socket_tls_ciphersuites_t tls_ciphersuites;
2041
2042 /*
2043 * Server Name Indicator to use for authenticating with the peer during
2044 * secure TLS connection. The value is passed to the underlying TLS library
2045 * that need to take this variable into account for it make any effect. This
2046 * field is optional and can be left zero-initialized. If not set the
2047 * integration layer should use the Server URI instead.
2048 */
2051
2092 anjay_security_config_t *out_config,
2093 const char *uri);
2094
2120
2121#if defined(ANJAY_WITH_EST) && defined(AVS_COMMONS_WITH_AVS_PERSISTENCE)
2134avs_error_t anjay_est_state_persist(anjay_t *anjay, avs_stream_t *out_stream);
2135
2154avs_error_t anjay_est_state_restore(anjay_t *anjay, avs_stream_t *out_stream);
2155
2164#endif // defined(ANJAY_WITH_EST) && defined(AVS_COMMONS_WITH_AVS_PERSISTENCE)
2165
2172
2191
2220 anjay_t *anjay,
2221 anjay_ssid_t ssid,
2223
2251static inline avs_time_real_t
2255
2294 anjay_ssid_t ssid);
2295
2330 anjay_t *anjay, anjay_transport_set_t transport_set);
2331
2373 anjay_ssid_t ssid);
2374
2405 anjay_ssid_t ssid);
2406
2432 anjay_t *anjay, anjay_transport_set_t transport_set);
2433
2459 anjay_t *anjay, anjay_transport_set_t transport_set);
2460
2484
2510 anjay_t *anjay, anjay_transport_set_t transport_set);
2511
2525avs_error_t
2527 anjay_transport_set_t transport_set,
2528 const avs_coap_udp_tx_params_t *tx_params);
2529
2543avs_error_t
2545 anjay_transport_set_t transport_set,
2546 avs_time_duration_t exchange_timeout);
2547
2558 anjay_t *anjay,
2559 avs_net_dtls_handshake_timeouts_t dtls_handshake_timeouts);
2560
2561#ifdef ANJAY_WITH_COMMUNICATION_TIMESTAMP_API
2583 anjay_ssid_t ssid,
2584 avs_time_real_t *out_time);
2585
2616 anjay_ssid_t ssid,
2617 avs_time_real_t *out_time);
2639 anjay_ssid_t ssid,
2640 avs_time_real_t *out_time);
2641#endif // ANJAY_WITH_COMMUNICATION_TIMESTAMP_API
2642
2643#ifdef ANJAY_WITH_SMS
2644# ifdef ANJAY_WITH_LWM2M11
2659 anjay_ssid_t ssid,
2660 bool *out_sms_trigger);
2661# endif // ANJAY_WITH_LWM2M11
2662
2676 const char *server_msisdn,
2677 anjay_ssid_t *out_ssid);
2678#endif // ANJAY_WITH_SMS
2679
2680#ifdef __cplusplus
2681} /* extern "C" */
2682#endif
2683
2684#endif /*ANJAY_INCLUDE_ANJAY_CORE_H*/
anjay_registration_expiration_status_t
Definition core.h:2173
@ ANJAY_REGISTRATION_EXPIRATION_STATUS_VALID
Definition core.h:2179
@ ANJAY_REGISTRATION_EXPIRATION_STATUS_INFINITE_LIFETIME
Definition core.h:2189
@ ANJAY_REGISTRATION_EXPIRATION_STATUS_EXPIRED
Definition core.h:2184
static avs_time_real_t anjay_registration_expiration_time(anjay_t *anjay, anjay_ssid_t ssid)
Definition core.h:2252
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:1191
@ ANJAY_SOCKET_TRANSPORT_NIDD
Definition core.h:1196
@ ANJAY_SOCKET_TRANSPORT_INVALID
Definition core.h:1192
@ ANJAY_SOCKET_TRANSPORT_UDP
Definition core.h:1193
@ ANJAY_SOCKET_TRANSPORT_TCP
Definition core.h:1194
@ ANJAY_SOCKET_TRANSPORT_SMS
Definition core.h:1195
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:1296
uint16_t anjay_rid_t
Definition core.h:1302
int anjay_event_loop_interrupt(anjay_t *anjay)
bool anjay_all_connections_failed(anjay_t *anjay)
uint16_t anjay_iid_t
Definition core.h:1299
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:1945
@ ANJAY_FORCE_ONLINE_MODE
Definition core.h:1980
@ ANJAY_PREFER_QUEUE_MODE
Definition core.h:1961
@ ANJAY_FORCE_QUEUE_MODE
Definition core.h:1954
@ ANJAY_PREFER_ONLINE_MODE
Definition core.h:1970
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)
#define ANJAY_GATEWAY_MAX_PREFIX_LEN
Definition core.h:27
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:489
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:385
@ ANJAY_SERV_CONN_STATUS_INITIAL
Definition core.h:404
@ ANJAY_SERV_CONN_STATUS_REGISTERING
Definition core.h:425
@ ANJAY_SERV_CONN_STATUS_BOOTSTRAPPING
Definition core.h:415
@ ANJAY_SERV_CONN_STATUS_DEREGISTERING
Definition core.h:441
@ ANJAY_SERV_CONN_STATUS_INVALID
Definition core.h:390
@ ANJAY_SERV_CONN_STATUS_REREGISTERING
Definition core.h:466
@ ANJAY_SERV_CONN_STATUS_ERROR
Definition core.h:397
@ ANJAY_SERV_CONN_STATUS_UPDATING
Definition core.h:471
@ ANJAY_SERV_CONN_STATUS_REGISTERED
Definition core.h:430
@ ANJAY_SERV_CONN_STATUS_REG_FAILURE
Definition core.h:436
@ ANJAY_SERV_CONN_STATUS_SUSPENDING
Definition core.h:455
@ ANJAY_SERV_CONN_STATUS_DEREGISTERED
Definition core.h:449
@ ANJAY_SERV_CONN_STATUS_SUSPENDED
Definition core.h:460
@ ANJAY_SERV_CONN_STATUS_CONNECTING
Definition core.h:410
@ ANJAY_SERV_CONN_STATUS_BOOTSTRAPPED
Definition core.h:420
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)
void anjay_confirmable_notification_status_cb_t(anjay_t *anjay, anjay_ssid_t ssid, const anjay_uri_path_t *observation_paths, const size_t paths_count, avs_error_t err)
Definition core.h:374
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)
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)
int anjay_event_loop_run_with_error_handling(anjay_t *anjay, avs_time_duration_t max_wait_time)
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)
anjay_id_type_t
Definition core.h:300
@ ANJAY_ID_RIID
Definition core.h:304
@ _ANJAY_URI_PATH_MAX_LENGTH
Definition core.h:305
@ ANJAY_ID_IID
Definition core.h:302
@ ANJAY_ID_OID
Definition core.h:301
@ ANJAY_ID_RID
Definition core.h:303
const anjay_transport_set_t ANJAY_TRANSPORT_SET_ALL
uint16_t anjay_riid_t
Definition core.h:1305
Definition core.h:510
bool use_connection_id
Definition core.h:669
bool enable_self_notify
Definition core.h:693
size_t in_buffer_size
Definition core.h:537
avs_net_socket_configuration_t socket_config
Definition core.h:565
bool prefer_multipart_sms
Definition core.h:828
size_t coap_downloader_retry_count
Definition core.h:1024
size_t msg_cache_size
Definition core.h:556
avs_time_duration_t coap_tcp_request_timeout
Definition core.h:755
avs_time_duration_t coap_downloader_retry_delay
Definition core.h:1031
size_t out_buffer_size
Definition core.h:546
void * server_connection_status_cb_arg
Definition core.h:997
const anjay_lwm2m_version_config_t * lwm2m_version_config
Definition core.h:850
void * est_engine_cacerts_address_gen_cb_arg
Definition core.h:973
anjay_nidd_driver_t * nidd_driver
Definition core.h:800
anjay_confirmable_notification_status_cb_t * confirmable_notification_status_cb
Definition core.h:982
avs_crypto_certificate_chain_info_t trust_store_certs
Definition core.h:886
bool use_system_trust_store
Definition core.h:870
bool confirmable_notifications
Definition core.h:619
avs_crypto_prng_ctx_t * prng_ctx
Definition core.h:729
const avs_coap_udp_tx_params_t * udp_tx_params
Definition core.h:577
bool prefer_hierarchical_formats
Definition core.h:663
avs_crypto_cert_revocation_list_info_t trust_store_crls
Definition core.h:902
bool update_immediately_on_dm_change
Definition core.h:684
bool disable_legacy_server_initiated_bootstrap
Definition core.h:636
anjay_est_cacerts_policy_t est_cacerts_policy
Definition core.h:937
size_t coap_tcp_max_options_size
Definition core.h:746
const char * endpoint_name
Definition core.h:518
avs_net_ssl_version_t dtls_version
Definition core.h:530
avs_net_socket_tls_ciphersuites_t default_tls_ciphersuites
Definition core.h:717
const avs_coap_udp_tx_params_t * sms_tx_params
Definition core.h:770
const char * local_msisdn
Definition core.h:817
const avs_net_dtls_handshake_timeouts_t * udp_dtls_hs_tx_params
Definition core.h:613
const char * est_engine_key_address
Definition core.h:947
anjay_est_engine_cacert_address_gen_t * est_engine_cacerts_address_gen_cb
Definition core.h:964
bool rebuild_client_cert_chain
Definition core.h:915
anjay_server_connection_status_cb_t * server_connection_status_cb
Definition core.h:989
uint16_t udp_listen_port
Definition core.h:525
bool connection_error_is_registration_failure
Definition core.h:705
const char * est_engine_cert_address
Definition core.h:955
const avs_coap_udp_tx_params_t * nidd_tx_params
Definition core.h:784
const anjay_est_reenroll_config_t * est_reenroll_config
Definition core.h:930
avs_ssl_additional_configuration_clb_t * additional_tls_config_clb
Definition core.h:736
size_t stored_notification_limit
Definition core.h:652
anjay_smsdrv_t * sms_driver
Definition core.h:792
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:2021
avs_net_security_info_t security_info
Definition core.h:2025
const char * server_name_indication
Definition core.h:2049
avs_net_socket_tls_ciphersuites_t tls_ciphersuites
Definition core.h:2040
const avs_net_socket_dane_tlsa_record_t * dane_tlsa_record
Definition core.h:2031
Definition sms.h:134
Definition core.h:1203
bool queue_mode
Definition core.h:1243
anjay_ssid_t ssid
Definition core.h:1229
anjay_socket_transport_t transport
Definition core.h:1217
avs_net_socket_t * socket
Definition core.h:1209
Definition core.h:1770
bool sms
Definition core.h:1774
bool tcp
Definition core.h:1772
bool udp
Definition core.h:1771
bool nidd
Definition core.h:1777
Definition core.h:325