├── .dockerignore ├── .github └── workflows │ ├── anjay-tests.yml │ └── coverity.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.rst ├── Dockerfile ├── Doxyfile.in ├── LICENSE ├── NOTICE ├── README.Windows.md ├── README.md ├── cmake ├── anjay-config.cmake.in ├── anjay-version.cmake.in ├── sphinx.cmake └── toolchain │ └── afl-gcc.cmake ├── demo ├── CMakeLists.txt ├── advanced_firmware_update.c ├── advanced_firmware_update.h ├── advanced_firmware_update_addimg.c ├── advanced_firmware_update_app.c ├── demo.c ├── demo.h ├── demo_args.c ├── demo_args.h ├── demo_cmds.c ├── demo_cmds.h ├── demo_time.c ├── demo_utils.c ├── demo_utils.h ├── firmware_update.c ├── firmware_update.h ├── lwm2m_gateway.c ├── lwm2m_gateway.h ├── objects.h ├── objects │ ├── apn_conn_profile.c │ ├── binary_app_data_container.c │ ├── cell_connectivity.c │ ├── conn_monitoring.c │ ├── conn_statistics.c │ ├── device.c │ ├── download_diagnostics.c │ ├── event_log.c │ ├── ext_dev_info.c │ ├── gateway_end_devices │ │ ├── binary_app_data_container.c │ │ ├── binary_app_data_container.h │ │ ├── push_button_object.c │ │ ├── push_button_object.h │ │ ├── temperature_object.c │ │ └── temperature_object.h │ ├── geopoints.c │ ├── ip_ping.c │ ├── ipso_objects.c │ ├── location.c │ ├── portfolio.c │ └── test.c ├── software_mgmt.c └── software_mgmt.h ├── deps └── avs_coap │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Doxyfile.in │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── cmake │ ├── AddHeaderSelfSufficiencyTests.cmake │ ├── avs_coap-config.cmake.in │ └── fill-placeholders.cmake │ ├── devconfig │ ├── doc │ ├── CMakeLists.txt │ └── sphinx │ │ ├── make.bat │ │ └── source │ │ ├── ErrorHandling.rst │ │ ├── Fuzzing.rst │ │ ├── Overview.rst │ │ ├── _static │ │ └── theme_overrides.css │ │ ├── avsystem_header.png │ │ ├── conf.py.in │ │ └── index.rst │ ├── examples │ ├── CMakeLists.txt │ └── async-client │ │ ├── CMakeLists.txt │ │ └── src │ │ └── main.c │ ├── include_public │ └── avsystem │ │ └── coap │ │ ├── async.h │ │ ├── async_client.h │ │ ├── async_exchange.h │ │ ├── async_server.h │ │ ├── avs_coap_config.h.in │ │ ├── coap.h │ │ ├── code.h │ │ ├── ctx.h │ │ ├── observe.h │ │ ├── option.h │ │ ├── streaming.h │ │ ├── tcp.h │ │ ├── token.h │ │ ├── udp.h │ │ └── writer.h │ ├── src │ ├── async │ │ ├── avs_coap_async_client.c │ │ ├── avs_coap_async_client.h │ │ ├── avs_coap_async_server.c │ │ ├── avs_coap_async_server.h │ │ ├── avs_coap_exchange.c │ │ └── avs_coap_exchange.h │ ├── avs_coap_code_utils.c │ ├── avs_coap_code_utils.h │ ├── avs_coap_common_utils.c │ ├── avs_coap_common_utils.h │ ├── avs_coap_ctx.c │ ├── avs_coap_ctx.h │ ├── avs_coap_ctx_vtable.h │ ├── avs_coap_init.h │ ├── avs_coap_observe.c │ ├── avs_coap_observe.h │ ├── avs_coap_parse_utils.h │ ├── avs_coap_poison.h │ ├── avs_coap_x_log_config.h │ ├── options │ │ ├── avs_coap_iterator.c │ │ ├── avs_coap_iterator.h │ │ ├── avs_coap_option.c │ │ ├── avs_coap_option.h │ │ ├── avs_coap_options.c │ │ └── avs_coap_options.h │ ├── streaming │ │ ├── avs_coap_streaming_client.c │ │ ├── avs_coap_streaming_client.h │ │ ├── avs_coap_streaming_server.c │ │ └── avs_coap_streaming_server.h │ ├── tcp │ │ ├── avs_coap_tcp_ctx.c │ │ ├── avs_coap_tcp_ctx.h │ │ ├── avs_coap_tcp_header.c │ │ ├── avs_coap_tcp_header.h │ │ ├── avs_coap_tcp_msg.c │ │ ├── avs_coap_tcp_msg.h │ │ ├── avs_coap_tcp_pending_requests.c │ │ ├── avs_coap_tcp_pending_requests.h │ │ ├── avs_coap_tcp_signaling.c │ │ ├── avs_coap_tcp_signaling.h │ │ ├── avs_coap_tcp_utils.c │ │ └── avs_coap_tcp_utils.h │ └── udp │ │ ├── avs_coap_udp_ctx.c │ │ ├── avs_coap_udp_ctx.h │ │ ├── avs_coap_udp_header.h │ │ ├── avs_coap_udp_msg.c │ │ ├── avs_coap_udp_msg.h │ │ ├── avs_coap_udp_msg_cache.c │ │ ├── avs_coap_udp_msg_cache.h │ │ ├── avs_coap_udp_tx_params.c │ │ └── avs_coap_udp_tx_params.h │ ├── tests │ ├── fuzz │ │ ├── CMakeLists.txt │ │ ├── coap_async_api_tcp.c │ │ ├── coap_async_api_udp.c │ │ ├── coap_parse.c │ │ └── input │ │ │ ├── coap_async_api_tcp.hex │ │ │ └── recv_get_send_content │ │ │ ├── coap_async_api_tcp │ │ │ └── recv_get_send_content │ │ │ ├── coap_async_api_udp.hex │ │ │ ├── recv_get_send_content │ │ │ ├── send_block_put_recv_changed │ │ │ ├── send_get_recv_block_content │ │ │ └── send_get_recv_content │ │ │ ├── coap_async_api_udp │ │ │ ├── recv_get_send_content │ │ │ ├── send_block_put_recv_changed │ │ │ ├── send_get_recv_block_content │ │ │ └── send_get_recv_content │ │ │ ├── coap_parse │ │ │ └── empty │ │ │ └── hex-to-fuzz-input.sh │ ├── mock_clock.c │ ├── mock_clock.h │ ├── options │ │ ├── option.c │ │ └── options.c │ ├── socket.c │ ├── socket.h │ ├── tcp │ │ ├── async_client.c │ │ ├── async_server.c │ │ ├── csm.c │ │ ├── ctx.c │ │ ├── env.h │ │ ├── header.c │ │ ├── helper_functions.h │ │ ├── payload_escaper.c │ │ ├── requesting.c │ │ ├── responding.c │ │ ├── setsock.c │ │ └── utils.h │ ├── udp │ │ ├── async_client.c │ │ ├── async_client_with_big_data.c │ │ ├── async_observe.c │ │ ├── async_server.c │ │ ├── big_data.h │ │ ├── fuzzer_cases.c │ │ ├── msg.c │ │ ├── msg_cache.c │ │ ├── setsock.c │ │ ├── streaming_client.c │ │ ├── streaming_observe.c │ │ ├── streaming_server.c │ │ ├── tx_params_mock.h │ │ ├── udp_tx_params.c │ │ └── utils.h │ ├── utils.c │ └── utils.h │ └── tools │ ├── avs_common.py │ ├── conditional_headers_whitelist.json │ ├── coverage │ └── license_headers.py ├── devconfig ├── doc ├── CMakeLists.txt └── sphinx │ ├── Makefile │ ├── extensions │ ├── builders │ │ ├── __init__.py │ │ ├── dummy.py │ │ ├── snippet_source_linter.py │ │ └── snippet_source_list_references.py │ ├── file_dirtiness_checker.py │ ├── small_literal.py │ └── snippet_source.py │ ├── make.bat │ ├── snippet_sources.md5 │ └── source │ ├── API_description.rst │ ├── AdvancedTopics.rst │ ├── AdvancedTopics │ ├── AT-AccessControl.rst │ ├── AT-AttributeStorage.rst │ ├── AT-Bootstrap.rst │ ├── AT-CertificateUsage.rst │ ├── AT-Certificates.rst │ ├── AT-CustomEventLoop.rst │ ├── AT-CustomObjects.rst │ ├── AT-CustomObjects │ │ ├── AT_CO1_SingleInstanceReadOnly.rst │ │ ├── AT_CO2_SingleInstanceExecutableAndReadOnly.rst │ │ ├── AT_CO3_MultiInstanceReadOnlyFixed.rst │ │ ├── AT_CO4_FixedInstanceWritable.rst │ │ ├── AT_CO5_MultiInstanceDynamic.rst │ │ ├── AT_CO6_MultipleResourceInstances.rst │ │ ├── AT_CO7_BootstrapAwareness.rst │ │ ├── AT_CO_BootstrapAwareness.rst │ │ ├── AT_CO_FixedInstanceWritable.rst │ │ ├── AT_CO_MultiInstanceDynamic.rst │ │ ├── AT_CO_MultiInstanceReadOnlyFixed.rst │ │ ├── AT_CO_MultipleResourceInstances.rst │ │ ├── AT_CO_SingleInstanceExecutableAndReadOnly.rst │ │ ├── AT_CO_SingleInstanceReadOnly.rst │ │ └── Anjay_codegen_note.rst │ ├── AT-EventLoopNotes.rst │ ├── AT-IpsoObjects.rst │ ├── AT-NetworkErrorHandling.rst │ ├── AT-OtherFeatures.rst │ ├── AT-Persistence.rst │ ├── AT-RetransmissionsTimeoutsCaching.rst │ └── _images │ │ ├── anjay-block-client-request.svg │ │ ├── anjay-block-response-to-server-request.svg │ │ ├── anjay-client-request.svg │ │ ├── anjay-firmware-handling.svg │ │ ├── anjay-notification.svg │ │ ├── anjay-read.svg │ │ ├── anjay-server-block-request.svg │ │ ├── anjay-server-request.svg │ │ ├── anjay-write-replace-instance.svg │ │ └── anjay-write-resource.svg │ ├── BasicClient.rst │ ├── BasicClient │ ├── BC-Initialization.rst │ ├── BC-MandatoryObjects.rst │ ├── BC-Notifications.rst │ ├── BC-ObjectImplementation.rst │ ├── BC-Security.rst │ ├── BC-Send.rst │ └── BC-ThreadSafety.rst │ ├── CommercialFeatures.rst │ ├── CommercialFeatures │ ├── CF-CorePersistence.rst │ ├── CF-CustomHardwareSupport.rst │ ├── CF-EST.rst │ ├── CF-FSDM.rst │ ├── CF-HSM.rst │ ├── CF-IoTSAFE.rst │ ├── CF-NIDD.rst │ ├── CF-OSCORE.rst │ ├── CF-SMSBinding.rst │ └── CF-SmartCardBootstrap.rst │ ├── Compiling_client_applications.rst │ ├── FirmwareUpdateTutorial.rst │ ├── FirmwareUpdateTutorial │ ├── FU-AdvancedFirmwareUpdate.rst │ ├── FU-AdvancedFirmwareUpdate │ │ ├── FU-AFU-BasicImplementation.rst │ │ ├── FU-AFU-Examples.rst │ │ ├── FU-AFU-ResourceDefinitions.rst │ │ ├── FU-AFU-StateDiagram.rst │ │ ├── _files │ │ │ └── 33629.xml │ │ └── _images │ │ │ └── FU-AFU-StateDiagram.svg │ ├── FU-BasicImplementation.rst │ ├── FU-DownloadResumption.rst │ ├── FU-Introduction.rst │ ├── FU-ModesAndProtocols.rst │ ├── FU-PoorConnectivity.rst │ ├── FU-SecureDownloads.rst │ ├── FU1.rst │ ├── FU2.rst │ ├── FU3.rst │ ├── FU4.rst │ ├── FU5.rst │ ├── FU6.rst │ └── _images │ │ └── anjay-firmware-download-coap-pull.svg │ ├── Introduction.rst │ ├── LwM2M.rst │ ├── LwM2MGateway.rst │ ├── LwM2MGateway │ ├── LwM2MGatewayAPI.rst │ ├── LwM2MGatewayIntro.rst │ ├── LwM2MGatewayNotifications.rst │ └── LwM2MGatewaySend.rst │ ├── Migrating.rst │ ├── Migrating │ ├── MigratingCustomEntropy.rst │ ├── MigratingFromAnjay214.rst │ ├── MigratingFromAnjay215.rst │ ├── MigratingFromAnjay225.rst │ ├── MigratingFromAnjay24.rst │ ├── MigratingFromAnjay26.rst │ ├── MigratingFromAnjay27.rst │ ├── MigratingFromAnjay28.rst │ ├── MigratingFromAnjay30.rst │ ├── MigratingFromAnjay310.rst │ ├── MigratingFromAnjay32.rst │ ├── MigratingFromAnjay33.rst │ ├── MigratingFromAnjay34.rst │ └── MigratingFromAnjay37.rst │ ├── PortingGuideForNonPOSIXPlatforms.rst │ ├── PortingGuideForNonPOSIXPlatforms │ ├── CustomTLS.rst │ ├── CustomTLS │ │ ├── CustomTLS-CertificatesAdvanced.rst │ │ ├── CustomTLS-CertificatesBasic.rst │ │ ├── CustomTLS-ConfigFeatures.rst │ │ ├── CustomTLS-Minimal.rst │ │ ├── CustomTLS-Resumption.rst │ │ ├── CustomTLS-Stub.rst │ │ └── CustomTLS-TCPSupport.rst │ ├── NetworkingAPI.rst │ ├── NetworkingAPI │ │ ├── NetworkingAPI-Bind.rst │ │ ├── NetworkingAPI-EventLoopSupport.rst │ │ ├── NetworkingAPI-IpStickiness.rst │ │ ├── NetworkingAPI-Minimal.rst │ │ ├── NetworkingAPI-OtherFeatures.rst │ │ ├── NetworkingAPI-RemoteHostPort.rst │ │ ├── NetworkingAPI-ShutdownRemoteHostname.rst │ │ ├── NetworkingAPI-Stats.rst │ │ ├── NetworkingAPI1.rst │ │ ├── NetworkingAPI2.rst │ │ ├── NetworkingAPI3.rst │ │ ├── NetworkingAPI4.rst │ │ ├── NetworkingAPI5.rst │ │ ├── NetworkingAPI6.rst │ │ └── NetworkingAPI7.rst │ ├── ThreadingAPI.rst │ └── TimeAPI.rst │ ├── Tools.rst │ ├── Tools │ ├── CliLwM2MServer.rst │ ├── FactoryProvisioning.rst │ ├── PackagesGenerator.rst │ ├── StandaloneObjects.rst │ └── StubGenerator.rst │ ├── _static │ └── theme_overrides.css │ ├── avsystem_header.png │ ├── avsystem_logo.png │ ├── conf.py.in │ └── index.rst ├── example_configs ├── README.md ├── embedded_lwm2m10 │ ├── anjay │ │ └── anjay_config.h │ └── avsystem │ │ ├── coap │ │ └── avs_coap_config.h │ │ └── commons │ │ ├── avs_commons_config.h │ │ └── lwip-posix-compat.h ├── embedded_lwm2m11 │ ├── anjay │ │ └── anjay_config.h │ └── avsystem │ │ ├── coap │ │ └── avs_coap_config.h │ │ └── commons │ │ ├── avs_commons_config.h │ │ └── lwip-posix-compat.h ├── linux_lwm2m10 │ ├── anjay │ │ └── anjay_config.h │ └── avsystem │ │ ├── coap │ │ └── avs_coap_config.h │ │ └── commons │ │ └── avs_commons_config.h └── linux_lwm2m11 │ ├── anjay │ └── anjay_config.h │ └── avsystem │ ├── coap │ └── avs_coap_config.h │ └── commons │ └── avs_commons_config.h ├── examples ├── CMakeLists.txt ├── commercial-features │ ├── CF-CorePersistence │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── CF-EST-PKCS11 │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── CF-EST │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── CF-NIDD │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── nidd_demo_driver.c │ │ │ └── nidd_demo_driver.h │ ├── CF-OSCORE │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── CF-PKCS11 │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── CF-PSA-PKI │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── CF-PSA-PSK │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── CF-PSA-bootstrap │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── CF-PSA-management │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── CF-SMS-PSK │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── CF-SMS-UDP │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── CF-SMS │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── CF-SmartCardBootstrap │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ └── CMakeLists.txt ├── custom-network │ ├── CMakeLists.txt │ ├── bind │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── net_impl.c │ ├── ip-stickiness │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── net_impl.c │ ├── minimal │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── net_impl.c │ ├── remote-host-port │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── net_impl.c │ ├── shutdown-remote-hostname │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── net_impl.c │ └── stats │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── main.c │ │ └── net_impl.c ├── custom-tls │ ├── CMakeLists.txt │ ├── certificates-advanced-fake-dane │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── net_impl.c │ │ │ └── tls_impl.c │ ├── certificates-advanced │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── net_impl.c │ │ │ └── tls_impl.c │ ├── certificates-basic │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── net_impl.c │ │ │ └── tls_impl.c │ ├── config-features │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── net_impl.c │ │ │ └── tls_impl.c │ ├── minimal │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── net_impl.c │ │ │ └── tls_impl.c │ ├── resumption-buffer │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── net_impl.c │ │ │ └── tls_impl.c │ ├── resumption-simple │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── net_impl.c │ │ │ └── tls_impl.c │ ├── stub │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── net_impl.c │ │ │ └── tls_impl.c │ └── tcp-support │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── firmware_update.c │ │ ├── firmware_update.h │ │ ├── main.c │ │ ├── net_impl.c │ │ ├── time_object.c │ │ ├── time_object.h │ │ └── tls_impl.c └── tutorial │ ├── AT-AccessControl │ ├── CMakeLists.txt │ └── src │ │ ├── main.c │ │ ├── test_object.c │ │ └── test_object.h │ ├── AT-Bootstrap │ ├── CMakeLists.txt │ └── src │ │ └── main.c │ ├── AT-Certificates │ ├── CMakeLists.txt │ └── src │ │ └── main.c │ ├── AT-CustomEventLoop │ ├── CMakeLists.txt │ └── src │ │ └── main.c │ ├── AT-CustomObjects │ ├── CMakeLists.txt │ ├── bootstrap-awareness │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── multi-instance-dynamic │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── test_object.c │ │ │ └── test_object.h │ ├── multi-instance-resources-dynamic │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── test_object.c │ │ │ └── test_object.h │ ├── read-only-multiple-fixed │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── read-only-with-executable │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── read-only │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ ├── writable-multiple-fixed-transactional │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.c │ └── writable-multiple-fixed │ │ ├── CMakeLists.txt │ │ └── src │ │ └── main.c │ ├── AT-Downloader │ ├── CMakeLists.txt │ └── src │ │ └── main.c │ ├── AT-IpsoObjects │ ├── CMakeLists.txt │ └── src │ │ └── main.c │ ├── AT-Persistence │ ├── CMakeLists.txt │ └── src │ │ └── main.c │ ├── BC-Initialization │ ├── CMakeLists.txt │ └── src │ │ └── main.c │ ├── BC-MandatoryObjects │ ├── CMakeLists.txt │ └── src │ │ └── main.c │ ├── BC-Notifications │ ├── CMakeLists.txt │ └── src │ │ ├── main.c │ │ ├── time_object.c │ │ └── time_object.h │ ├── BC-ObjectImplementation │ ├── CMakeLists.txt │ └── src │ │ ├── main.c │ │ ├── time_object.c │ │ └── time_object.h │ ├── BC-Security │ ├── CMakeLists.txt │ └── src │ │ └── main.c │ ├── BC-Send │ ├── CMakeLists.txt │ └── src │ │ ├── main.c │ │ ├── time_object.c │ │ └── time_object.h │ ├── BC-ThreadSafety │ ├── CMakeLists.txt │ └── src │ │ ├── main.c │ │ ├── time_object.c │ │ └── time_object.h │ ├── CMakeLists.txt │ ├── LwM2M-Gateway │ ├── CMakeLists.txt │ ├── end_device.py │ └── src │ │ ├── gateway_server.c │ │ ├── gateway_server.h │ │ ├── main.c │ │ ├── temperature_object.c │ │ └── temperature_object.h │ └── firmware-update │ ├── CMakeLists.txt │ ├── advanced-firmware-update │ ├── CMakeLists.txt │ └── src │ │ ├── advanced_firmware_update.c │ │ ├── advanced_firmware_update.h │ │ ├── main.c │ │ ├── time_object.c │ │ └── time_object.h │ ├── basic-implementation │ ├── CMakeLists.txt │ └── src │ │ ├── firmware_update.c │ │ ├── firmware_update.h │ │ ├── main.c │ │ ├── time_object.c │ │ └── time_object.h │ ├── download-resumption │ ├── CMakeLists.txt │ └── src │ │ ├── firmware_update.c │ │ ├── firmware_update.h │ │ ├── main.c │ │ ├── time_object.c │ │ └── time_object.h │ └── secure-downloads │ ├── CMakeLists.txt │ └── src │ ├── firmware_update.c │ ├── firmware_update.h │ ├── main.c │ ├── time_object.c │ └── time_object.h ├── include_public └── anjay │ ├── access_control.h │ ├── advanced_fw_update.h │ ├── anjay.h │ ├── anjay_config.h.in │ ├── attr_storage.h │ ├── core.h │ ├── dm.h │ ├── download.h │ ├── factory_provisioning.h │ ├── fw_update.h │ ├── io.h │ ├── ipso_objects.h │ ├── ipso_objects_v2.h │ ├── lwm2m_gateway.h │ ├── lwm2m_send.h │ ├── security.h │ ├── server.h │ ├── stats.h │ └── sw_mgmt.h ├── ltoconfig ├── requirements.txt ├── src ├── anjay_config_log.h ├── anjay_init.h ├── anjay_modules │ ├── anjay_access_utils.h │ ├── anjay_attr_storage_utils.h │ ├── anjay_bootstrap.h │ ├── anjay_dm_utils.h │ ├── anjay_io_utils.h │ ├── anjay_lwm2m_gateway.h │ ├── anjay_notify.h │ ├── anjay_raw_buffer.h │ ├── anjay_sched.h │ ├── anjay_servers.h │ ├── anjay_time_defs.h │ ├── anjay_utils_core.h │ └── dm │ │ ├── anjay_execute.h │ │ └── anjay_modules.h ├── core │ ├── anjay_access_utils.c │ ├── anjay_access_utils_private.h │ ├── anjay_bootstrap_core.c │ ├── anjay_bootstrap_core.h │ ├── anjay_core.c │ ├── anjay_core.h │ ├── anjay_dm_core.c │ ├── anjay_dm_core.h │ ├── anjay_downloader.h │ ├── anjay_event_loop.c │ ├── anjay_io_core.c │ ├── anjay_io_core.h │ ├── anjay_io_utils.c │ ├── anjay_lwm2m_send.c │ ├── anjay_lwm2m_send.h │ ├── anjay_notify.c │ ├── anjay_raw_buffer.c │ ├── anjay_servers_inactive.h │ ├── anjay_servers_private.h │ ├── anjay_servers_reload.h │ ├── anjay_servers_utils.c │ ├── anjay_servers_utils.h │ ├── anjay_stats.c │ ├── anjay_stats.h │ ├── anjay_utils_core.c │ ├── anjay_utils_private.h │ ├── attr_storage │ │ ├── anjay_attr_storage.c │ │ ├── anjay_attr_storage.h │ │ ├── anjay_attr_storage_persistence.c │ │ └── anjay_attr_storage_private.h │ ├── coap │ │ ├── anjay_content_format.h │ │ └── anjay_msg_details.h │ ├── dm │ │ ├── anjay_discover.c │ │ ├── anjay_discover.h │ │ ├── anjay_dm_attributes.c │ │ ├── anjay_dm_attributes.h │ │ ├── anjay_dm_create.c │ │ ├── anjay_dm_create.h │ │ ├── anjay_dm_execute.c │ │ ├── anjay_dm_execute.h │ │ ├── anjay_dm_handlers.c │ │ ├── anjay_dm_read.c │ │ ├── anjay_dm_read.h │ │ ├── anjay_dm_write.c │ │ ├── anjay_dm_write.h │ │ ├── anjay_dm_write_attrs.c │ │ ├── anjay_dm_write_attrs.h │ │ ├── anjay_modules.c │ │ ├── anjay_query.c │ │ └── anjay_query.h │ ├── downloader │ │ ├── anjay_coap.c │ │ ├── anjay_downloader.c │ │ ├── anjay_http.c │ │ └── anjay_private.h │ ├── io │ │ ├── anjay_base64_out.c │ │ ├── anjay_base64_out.h │ │ ├── anjay_batch_builder.c │ │ ├── anjay_batch_builder.h │ │ ├── anjay_cbor_in.c │ │ ├── anjay_cbor_out.c │ │ ├── anjay_common.c │ │ ├── anjay_common.h │ │ ├── anjay_corelnk.c │ │ ├── anjay_corelnk.h │ │ ├── anjay_dynamic.c │ │ ├── anjay_input_buf.c │ │ ├── anjay_json_encoder.c │ │ ├── anjay_json_like_decoder.c │ │ ├── anjay_json_like_decoder.h │ │ ├── anjay_json_like_decoder_vtable.h │ │ ├── anjay_opaque.c │ │ ├── anjay_output_buf.c │ │ ├── anjay_senml_in.c │ │ ├── anjay_senml_like_encoder.c │ │ ├── anjay_senml_like_encoder.h │ │ ├── anjay_senml_like_encoder_vtable.h │ │ ├── anjay_senml_like_out.c │ │ ├── anjay_text.c │ │ ├── anjay_tlv.h │ │ ├── anjay_tlv_in.c │ │ ├── anjay_tlv_out.c │ │ ├── anjay_vtable.h │ │ ├── cbor │ │ │ ├── anjay_cbor_encoder_ll.c │ │ │ ├── anjay_cbor_encoder_ll.h │ │ │ ├── anjay_cbor_types.h │ │ │ ├── anjay_json_like_cbor_decoder.c │ │ │ ├── anjay_json_like_cbor_decoder.h │ │ │ └── anjay_senml_cbor_encoder.c │ │ └── json │ │ │ ├── anjay_json_decoder.c │ │ │ └── anjay_json_decoder.h │ ├── observe │ │ ├── anjay_observe_core.c │ │ ├── anjay_observe_core.h │ │ ├── anjay_observe_internal.h │ │ └── anjay_observe_planning.c │ └── servers │ │ ├── anjay_activate.c │ │ ├── anjay_activate.h │ │ ├── anjay_connection_ip.c │ │ ├── anjay_connections.c │ │ ├── anjay_connections.h │ │ ├── anjay_connections_internal.h │ │ ├── anjay_register.c │ │ ├── anjay_register.h │ │ ├── anjay_reload.c │ │ ├── anjay_security.h │ │ ├── anjay_security_generic.c │ │ ├── anjay_server_connections.c │ │ ├── anjay_server_connections.h │ │ ├── anjay_servers_internal.c │ │ └── anjay_servers_internal.h └── modules │ ├── access_control │ ├── anjay_access_control_handlers.c │ ├── anjay_access_control_persistence.c │ ├── anjay_mod_access_control.c │ └── anjay_mod_access_control.h │ ├── advanced_fw_update │ └── anjay_advanced_fw_update.c │ ├── factory_provisioning │ └── anjay_provisioning.c │ ├── fw_update │ └── anjay_fw_update.c │ ├── ipso │ ├── anjay_ipso_3d_sensor.c │ ├── anjay_ipso_basic_sensor.c │ └── anjay_ipso_button.c │ ├── ipso_v2 │ ├── anjay_ipso_v2_3d_sensor.c │ └── anjay_ipso_v2_basic_sensor.c │ ├── lwm2m_gateway │ └── anjay_lwm2m_gateway.c │ ├── security │ ├── anjay_mod_security.c │ ├── anjay_mod_security.h │ ├── anjay_security_persistence.c │ ├── anjay_security_transaction.c │ ├── anjay_security_transaction.h │ ├── anjay_security_utils.c │ └── anjay_security_utils.h │ ├── server │ ├── anjay_mod_server.c │ ├── anjay_mod_server.h │ ├── anjay_server_persistence.c │ ├── anjay_server_transaction.c │ ├── anjay_server_transaction.h │ ├── anjay_server_utils.c │ └── anjay_server_utils.h │ └── sw_mgmt │ └── anjay_sw_mgmt.c ├── standalone ├── security │ ├── standalone_mod_security.c │ ├── standalone_mod_security.h │ ├── standalone_security.h │ ├── standalone_security_persistence.c │ ├── standalone_security_transaction.c │ ├── standalone_security_transaction.h │ ├── standalone_security_utils.c │ └── standalone_security_utils.h └── server │ ├── standalone_mod_server.c │ ├── standalone_mod_server.h │ ├── standalone_server.h │ ├── standalone_server_persistence.c │ ├── standalone_server_transaction.c │ ├── standalone_server_transaction.h │ ├── standalone_server_utils.c │ └── standalone_server_utils.h ├── tests ├── codegen │ ├── CMakeLists.txt │ ├── check_with_object_registry.sh │ └── input │ │ ├── execute.xml │ │ ├── multiple-object.xml │ │ ├── read.xml │ │ ├── sanitization.xml │ │ └── write.xml ├── core │ ├── anjay.c │ ├── attr_storage │ │ ├── attr_storage.c │ │ ├── attr_storage_test.h │ │ └── persistence.c │ ├── bootstrap.c │ ├── bootstrap_mock.h │ ├── coap │ │ ├── utils.c │ │ └── utils.h │ ├── dm.c │ ├── downloader │ │ └── downloader.c │ ├── io.c │ ├── io │ │ ├── batch_builder.c │ │ ├── bigdata.h │ │ ├── cbor │ │ │ ├── cbor_decoder.c │ │ │ └── cbor_encoder.c │ │ ├── cbor_in.c │ │ ├── corelnk.c │ │ ├── dm_batch.c │ │ ├── dynamic.c │ │ ├── json │ │ │ └── json_decoder.c │ │ ├── json_in.c │ │ ├── lwm2m_cbor_out.c │ │ ├── raw_cbor_in.c │ │ ├── senml_cbor_encoder.c │ │ ├── senml_cbor_out.c │ │ ├── senml_in_common.h │ │ ├── senml_json_encoder.c │ │ ├── text.c │ │ ├── tlv_in.c │ │ └── tlv_out.c │ ├── lwm2m_send.c │ ├── observe │ │ ├── observe.c │ │ └── observe_mock.h │ ├── socket_mock.c │ ├── socket_mock.h │ └── utils.c ├── doc │ └── runtest.py ├── fuzz │ ├── CMakeLists.txt │ ├── cbor │ │ └── decoder.c │ └── test_cases │ │ ├── cbor_decoder │ │ ├── boring │ │ └── invalid │ │ ├── coap_stream │ │ └── valid_coap_msg │ │ ├── coap_stream_request │ │ └── basic │ │ └── coap_stream_response │ │ └── basic ├── integration │ ├── CMakeLists.txt │ ├── framework │ │ ├── __init__.py │ │ ├── asserts.py │ │ ├── coap_file_server.py │ │ ├── create_package.py │ │ ├── create_xlsx_test_report.py │ │ ├── lwm2m │ │ │ ├── __init__.py │ │ │ ├── coap │ │ │ │ ├── __init__.py │ │ │ │ ├── code.py │ │ │ │ ├── content_format.py │ │ │ │ ├── option.py │ │ │ │ ├── packet.py │ │ │ │ ├── server.py │ │ │ │ ├── transport.py │ │ │ │ ├── type.py │ │ │ │ └── utils.py │ │ │ ├── messages.py │ │ │ ├── path.py │ │ │ ├── senml_cbor.py │ │ │ ├── server.py │ │ │ └── tlv.py │ │ ├── lwm2m_test.py │ │ ├── nsh-lwm2m │ │ │ ├── cbor_shell.py │ │ │ ├── nsh_lwm2m.py │ │ │ ├── pymbedtls │ │ │ │ ├── setup.py │ │ │ │ └── src │ │ │ │ │ ├── common.cpp │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── context.cpp │ │ │ │ │ ├── context.hpp │ │ │ │ │ ├── pybind11_interop.hpp │ │ │ │ │ ├── pymbedtls.cpp │ │ │ │ │ ├── security.cpp │ │ │ │ │ ├── security.hpp │ │ │ │ │ ├── socket.cpp │ │ │ │ │ └── socket.hpp │ │ │ └── tlv_shell.py │ │ ├── pretty_test_runner.py │ │ ├── serialize_senml_cbor.py │ │ ├── test_suite.py │ │ └── test_utils.py │ ├── run_tests.sh.in │ ├── runtest.py │ └── suites │ │ ├── __init__.py │ │ ├── default │ │ ├── __init__.py │ │ ├── access_control.py │ │ ├── advanced_firmware_update.py │ │ ├── async.py │ │ ├── block_response.py │ │ ├── block_write.py │ │ ├── bootstrap_client.py │ │ ├── bootstrap_discover.py │ │ ├── bootstrap_factory.py │ │ ├── bootstrap_holdoff.py │ │ ├── bootstrap_server.py │ │ ├── bootstrap_sync.py │ │ ├── bootstrap_transaction.py │ │ ├── buffer_sizes.py │ │ ├── cbor_encoding.py │ │ ├── cbor_requests.py │ │ ├── client_block_request.py │ │ ├── coap.py │ │ ├── con_attr.py │ │ ├── conn_status_api.py │ │ ├── connection_id.py │ │ ├── crash.py │ │ ├── create.py │ │ ├── critical_opts.py │ │ ├── disable_server.py │ │ ├── downloader.py │ │ ├── factory_provisioning.py │ │ ├── firmware_update.py │ │ ├── forbidden_on_register.py │ │ ├── formats.py │ │ ├── hierarchical_cbor_encoding.py │ │ ├── ipso_objects.py │ │ ├── json_encoding.py │ │ ├── json_requests.py │ │ ├── lwm2m_gateway.py │ │ ├── lwm2m_gateway_observe_attributes.py │ │ ├── modify_servers.py │ │ ├── msg_cache.py │ │ ├── notification_timestamps.py │ │ ├── notifications.py │ │ ├── observe_attributes.py │ │ ├── offline.py │ │ ├── plaintext_base64.py │ │ ├── port_rebind.py │ │ ├── queue_mode.py │ │ ├── read_composite.py │ │ ├── reboot.py │ │ ├── register.py │ │ ├── request_too_large.py │ │ ├── retransmissions.py │ │ ├── security.py │ │ ├── send.py │ │ ├── senml_json_encoding.py │ │ ├── separate_response.py │ │ ├── software_mgmt.py │ │ ├── stats.py │ │ ├── test_object.py │ │ ├── time_api.py │ │ ├── unregister.py │ │ ├── update.py │ │ ├── uri_change_reregister.py │ │ └── write_composite.py │ │ ├── sensitive │ │ ├── __init__.py │ │ ├── advanced_firmware_update.py │ │ ├── bootstrap_client.py │ │ ├── firmware_update.py │ │ └── update.py │ │ └── testfest │ │ ├── __init__.py │ │ ├── bootstrap.py │ │ ├── dm │ │ ├── __init__.py │ │ ├── advanced_firmware_update.py │ │ ├── connectivity_management.py │ │ ├── connectivity_monitoring.py │ │ ├── connectivity_statistics.py │ │ ├── device.py │ │ ├── firmware_update.py │ │ ├── location.py │ │ ├── portfolio.py │ │ └── utils.py │ │ ├── management.py │ │ ├── multi_servers.py │ │ ├── register.py │ │ ├── reporting.py │ │ └── security.py ├── modules │ ├── access_control │ │ ├── access_control.c │ │ └── persistence.c │ ├── factory_provisioning │ │ └── provisioning.c │ ├── lwm2m_gateway │ │ └── lwm2m_gateway.c │ ├── security │ │ ├── api.c │ │ └── persistence.c │ └── server │ │ ├── api.c │ │ └── persistence.c └── utils │ ├── coap │ ├── socket.c │ └── socket.h │ ├── dm.c │ ├── dm.h │ ├── mock_clock.c │ ├── mock_clock.h │ ├── mock_dm.c │ ├── mock_dm.h │ └── utils.h ├── tools ├── analyze ├── anjay_codegen.py ├── anjay_config_log_tool.py ├── avs_common.py ├── ci-psa │ ├── Dockerfile │ └── README.md ├── ci │ ├── build-docker-images.sh │ ├── rockylinux-9 │ │ └── Dockerfile │ ├── ubuntu-20.04 │ │ └── Dockerfile │ └── ubuntu-22.04 │ │ └── Dockerfile ├── conditional_headers_whitelist.json ├── coverage ├── find_unused_code.py ├── generate-certs.sh ├── generate_doxygen_config.py ├── license_headers.py ├── lwm2m_object_registry.py ├── markdown-toc.py ├── provisioning-tool │ ├── configs │ │ ├── cert_info.json │ │ ├── endpoint_cfg │ │ └── lwm2m_server.json │ ├── factory_prov │ │ ├── __init__.py │ │ ├── cert_gen.py │ │ └── factory_prov.py │ └── ptool.py ├── symlink-check.sh ├── test_duplicates.py ├── test_ghactions.py └── utils.sh └── valgrind_test.supp /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/anjay-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/.github/workflows/anjay-tests.yml -------------------------------------------------------------------------------- /.github/workflows/coverity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/.github/workflows/coverity.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/Dockerfile -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/NOTICE -------------------------------------------------------------------------------- /README.Windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/README.Windows.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/README.md -------------------------------------------------------------------------------- /cmake/anjay-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/cmake/anjay-config.cmake.in -------------------------------------------------------------------------------- /cmake/anjay-version.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/cmake/anjay-version.cmake.in -------------------------------------------------------------------------------- /cmake/sphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/cmake/sphinx.cmake -------------------------------------------------------------------------------- /cmake/toolchain/afl-gcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/cmake/toolchain/afl-gcc.cmake -------------------------------------------------------------------------------- /demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/CMakeLists.txt -------------------------------------------------------------------------------- /demo/advanced_firmware_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/advanced_firmware_update.c -------------------------------------------------------------------------------- /demo/advanced_firmware_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/advanced_firmware_update.h -------------------------------------------------------------------------------- /demo/advanced_firmware_update_addimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/advanced_firmware_update_addimg.c -------------------------------------------------------------------------------- /demo/advanced_firmware_update_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/advanced_firmware_update_app.c -------------------------------------------------------------------------------- /demo/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/demo.c -------------------------------------------------------------------------------- /demo/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/demo.h -------------------------------------------------------------------------------- /demo/demo_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/demo_args.c -------------------------------------------------------------------------------- /demo/demo_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/demo_args.h -------------------------------------------------------------------------------- /demo/demo_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/demo_cmds.c -------------------------------------------------------------------------------- /demo/demo_cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/demo_cmds.h -------------------------------------------------------------------------------- /demo/demo_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/demo_time.c -------------------------------------------------------------------------------- /demo/demo_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/demo_utils.c -------------------------------------------------------------------------------- /demo/demo_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/demo_utils.h -------------------------------------------------------------------------------- /demo/firmware_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/firmware_update.c -------------------------------------------------------------------------------- /demo/firmware_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/firmware_update.h -------------------------------------------------------------------------------- /demo/lwm2m_gateway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/lwm2m_gateway.c -------------------------------------------------------------------------------- /demo/lwm2m_gateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/lwm2m_gateway.h -------------------------------------------------------------------------------- /demo/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects.h -------------------------------------------------------------------------------- /demo/objects/apn_conn_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/apn_conn_profile.c -------------------------------------------------------------------------------- /demo/objects/binary_app_data_container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/binary_app_data_container.c -------------------------------------------------------------------------------- /demo/objects/cell_connectivity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/cell_connectivity.c -------------------------------------------------------------------------------- /demo/objects/conn_monitoring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/conn_monitoring.c -------------------------------------------------------------------------------- /demo/objects/conn_statistics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/conn_statistics.c -------------------------------------------------------------------------------- /demo/objects/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/device.c -------------------------------------------------------------------------------- /demo/objects/download_diagnostics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/download_diagnostics.c -------------------------------------------------------------------------------- /demo/objects/event_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/event_log.c -------------------------------------------------------------------------------- /demo/objects/ext_dev_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/ext_dev_info.c -------------------------------------------------------------------------------- /demo/objects/gateway_end_devices/binary_app_data_container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/gateway_end_devices/binary_app_data_container.c -------------------------------------------------------------------------------- /demo/objects/gateway_end_devices/binary_app_data_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/gateway_end_devices/binary_app_data_container.h -------------------------------------------------------------------------------- /demo/objects/gateway_end_devices/push_button_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/gateway_end_devices/push_button_object.c -------------------------------------------------------------------------------- /demo/objects/gateway_end_devices/push_button_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/gateway_end_devices/push_button_object.h -------------------------------------------------------------------------------- /demo/objects/gateway_end_devices/temperature_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/gateway_end_devices/temperature_object.c -------------------------------------------------------------------------------- /demo/objects/gateway_end_devices/temperature_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/gateway_end_devices/temperature_object.h -------------------------------------------------------------------------------- /demo/objects/geopoints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/geopoints.c -------------------------------------------------------------------------------- /demo/objects/ip_ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/ip_ping.c -------------------------------------------------------------------------------- /demo/objects/ipso_objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/ipso_objects.c -------------------------------------------------------------------------------- /demo/objects/location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/location.c -------------------------------------------------------------------------------- /demo/objects/portfolio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/portfolio.c -------------------------------------------------------------------------------- /demo/objects/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/objects/test.c -------------------------------------------------------------------------------- /demo/software_mgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/software_mgmt.c -------------------------------------------------------------------------------- /demo/software_mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/demo/software_mgmt.h -------------------------------------------------------------------------------- /deps/avs_coap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/.gitignore -------------------------------------------------------------------------------- /deps/avs_coap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/CMakeLists.txt -------------------------------------------------------------------------------- /deps/avs_coap/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/Doxyfile.in -------------------------------------------------------------------------------- /deps/avs_coap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/LICENSE -------------------------------------------------------------------------------- /deps/avs_coap/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/NOTICE -------------------------------------------------------------------------------- /deps/avs_coap/README.md: -------------------------------------------------------------------------------- 1 | # AVSystem CoAP Library 2 | -------------------------------------------------------------------------------- /deps/avs_coap/cmake/AddHeaderSelfSufficiencyTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/cmake/AddHeaderSelfSufficiencyTests.cmake -------------------------------------------------------------------------------- /deps/avs_coap/cmake/avs_coap-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/cmake/avs_coap-config.cmake.in -------------------------------------------------------------------------------- /deps/avs_coap/cmake/fill-placeholders.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/cmake/fill-placeholders.cmake -------------------------------------------------------------------------------- /deps/avs_coap/devconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/devconfig -------------------------------------------------------------------------------- /deps/avs_coap/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/doc/CMakeLists.txt -------------------------------------------------------------------------------- /deps/avs_coap/doc/sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/doc/sphinx/make.bat -------------------------------------------------------------------------------- /deps/avs_coap/doc/sphinx/source/ErrorHandling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/doc/sphinx/source/ErrorHandling.rst -------------------------------------------------------------------------------- /deps/avs_coap/doc/sphinx/source/Fuzzing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/doc/sphinx/source/Fuzzing.rst -------------------------------------------------------------------------------- /deps/avs_coap/doc/sphinx/source/Overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/doc/sphinx/source/Overview.rst -------------------------------------------------------------------------------- /deps/avs_coap/doc/sphinx/source/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/doc/sphinx/source/_static/theme_overrides.css -------------------------------------------------------------------------------- /deps/avs_coap/doc/sphinx/source/avsystem_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/doc/sphinx/source/avsystem_header.png -------------------------------------------------------------------------------- /deps/avs_coap/doc/sphinx/source/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/doc/sphinx/source/conf.py.in -------------------------------------------------------------------------------- /deps/avs_coap/doc/sphinx/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/doc/sphinx/source/index.rst -------------------------------------------------------------------------------- /deps/avs_coap/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/examples/CMakeLists.txt -------------------------------------------------------------------------------- /deps/avs_coap/examples/async-client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/examples/async-client/CMakeLists.txt -------------------------------------------------------------------------------- /deps/avs_coap/examples/async-client/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/examples/async-client/src/main.c -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/async.h -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/async_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/async_client.h -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/async_exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/async_exchange.h -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/async_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/async_server.h -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/avs_coap_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/avs_coap_config.h.in -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/coap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/coap.h -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/code.h -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/ctx.h -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/observe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/observe.h -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/option.h -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/streaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/streaming.h -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/tcp.h -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/token.h -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/udp.h -------------------------------------------------------------------------------- /deps/avs_coap/include_public/avsystem/coap/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/include_public/avsystem/coap/writer.h -------------------------------------------------------------------------------- /deps/avs_coap/src/async/avs_coap_async_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/async/avs_coap_async_client.c -------------------------------------------------------------------------------- /deps/avs_coap/src/async/avs_coap_async_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/async/avs_coap_async_client.h -------------------------------------------------------------------------------- /deps/avs_coap/src/async/avs_coap_async_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/async/avs_coap_async_server.c -------------------------------------------------------------------------------- /deps/avs_coap/src/async/avs_coap_async_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/async/avs_coap_async_server.h -------------------------------------------------------------------------------- /deps/avs_coap/src/async/avs_coap_exchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/async/avs_coap_exchange.c -------------------------------------------------------------------------------- /deps/avs_coap/src/async/avs_coap_exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/async/avs_coap_exchange.h -------------------------------------------------------------------------------- /deps/avs_coap/src/avs_coap_code_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/avs_coap_code_utils.c -------------------------------------------------------------------------------- /deps/avs_coap/src/avs_coap_code_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/avs_coap_code_utils.h -------------------------------------------------------------------------------- /deps/avs_coap/src/avs_coap_common_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/avs_coap_common_utils.c -------------------------------------------------------------------------------- /deps/avs_coap/src/avs_coap_common_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/avs_coap_common_utils.h -------------------------------------------------------------------------------- /deps/avs_coap/src/avs_coap_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/avs_coap_ctx.c -------------------------------------------------------------------------------- /deps/avs_coap/src/avs_coap_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/avs_coap_ctx.h -------------------------------------------------------------------------------- /deps/avs_coap/src/avs_coap_ctx_vtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/avs_coap_ctx_vtable.h -------------------------------------------------------------------------------- /deps/avs_coap/src/avs_coap_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/avs_coap_init.h -------------------------------------------------------------------------------- /deps/avs_coap/src/avs_coap_observe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/avs_coap_observe.c -------------------------------------------------------------------------------- /deps/avs_coap/src/avs_coap_observe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/avs_coap_observe.h -------------------------------------------------------------------------------- /deps/avs_coap/src/avs_coap_parse_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/avs_coap_parse_utils.h -------------------------------------------------------------------------------- /deps/avs_coap/src/avs_coap_poison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/avs_coap_poison.h -------------------------------------------------------------------------------- /deps/avs_coap/src/avs_coap_x_log_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/avs_coap_x_log_config.h -------------------------------------------------------------------------------- /deps/avs_coap/src/options/avs_coap_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/options/avs_coap_iterator.c -------------------------------------------------------------------------------- /deps/avs_coap/src/options/avs_coap_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/options/avs_coap_iterator.h -------------------------------------------------------------------------------- /deps/avs_coap/src/options/avs_coap_option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/options/avs_coap_option.c -------------------------------------------------------------------------------- /deps/avs_coap/src/options/avs_coap_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/options/avs_coap_option.h -------------------------------------------------------------------------------- /deps/avs_coap/src/options/avs_coap_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/options/avs_coap_options.c -------------------------------------------------------------------------------- /deps/avs_coap/src/options/avs_coap_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/options/avs_coap_options.h -------------------------------------------------------------------------------- /deps/avs_coap/src/streaming/avs_coap_streaming_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/streaming/avs_coap_streaming_client.c -------------------------------------------------------------------------------- /deps/avs_coap/src/streaming/avs_coap_streaming_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/streaming/avs_coap_streaming_client.h -------------------------------------------------------------------------------- /deps/avs_coap/src/streaming/avs_coap_streaming_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/streaming/avs_coap_streaming_server.c -------------------------------------------------------------------------------- /deps/avs_coap/src/streaming/avs_coap_streaming_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/streaming/avs_coap_streaming_server.h -------------------------------------------------------------------------------- /deps/avs_coap/src/tcp/avs_coap_tcp_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/tcp/avs_coap_tcp_ctx.c -------------------------------------------------------------------------------- /deps/avs_coap/src/tcp/avs_coap_tcp_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/tcp/avs_coap_tcp_ctx.h -------------------------------------------------------------------------------- /deps/avs_coap/src/tcp/avs_coap_tcp_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/tcp/avs_coap_tcp_header.c -------------------------------------------------------------------------------- /deps/avs_coap/src/tcp/avs_coap_tcp_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/tcp/avs_coap_tcp_header.h -------------------------------------------------------------------------------- /deps/avs_coap/src/tcp/avs_coap_tcp_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/tcp/avs_coap_tcp_msg.c -------------------------------------------------------------------------------- /deps/avs_coap/src/tcp/avs_coap_tcp_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/tcp/avs_coap_tcp_msg.h -------------------------------------------------------------------------------- /deps/avs_coap/src/tcp/avs_coap_tcp_pending_requests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/tcp/avs_coap_tcp_pending_requests.c -------------------------------------------------------------------------------- /deps/avs_coap/src/tcp/avs_coap_tcp_pending_requests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/tcp/avs_coap_tcp_pending_requests.h -------------------------------------------------------------------------------- /deps/avs_coap/src/tcp/avs_coap_tcp_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/tcp/avs_coap_tcp_signaling.c -------------------------------------------------------------------------------- /deps/avs_coap/src/tcp/avs_coap_tcp_signaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/tcp/avs_coap_tcp_signaling.h -------------------------------------------------------------------------------- /deps/avs_coap/src/tcp/avs_coap_tcp_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/tcp/avs_coap_tcp_utils.c -------------------------------------------------------------------------------- /deps/avs_coap/src/tcp/avs_coap_tcp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/tcp/avs_coap_tcp_utils.h -------------------------------------------------------------------------------- /deps/avs_coap/src/udp/avs_coap_udp_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/udp/avs_coap_udp_ctx.c -------------------------------------------------------------------------------- /deps/avs_coap/src/udp/avs_coap_udp_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/udp/avs_coap_udp_ctx.h -------------------------------------------------------------------------------- /deps/avs_coap/src/udp/avs_coap_udp_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/udp/avs_coap_udp_header.h -------------------------------------------------------------------------------- /deps/avs_coap/src/udp/avs_coap_udp_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/udp/avs_coap_udp_msg.c -------------------------------------------------------------------------------- /deps/avs_coap/src/udp/avs_coap_udp_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/udp/avs_coap_udp_msg.h -------------------------------------------------------------------------------- /deps/avs_coap/src/udp/avs_coap_udp_msg_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/udp/avs_coap_udp_msg_cache.c -------------------------------------------------------------------------------- /deps/avs_coap/src/udp/avs_coap_udp_msg_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/udp/avs_coap_udp_msg_cache.h -------------------------------------------------------------------------------- /deps/avs_coap/src/udp/avs_coap_udp_tx_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/udp/avs_coap_udp_tx_params.c -------------------------------------------------------------------------------- /deps/avs_coap/src/udp/avs_coap_udp_tx_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/src/udp/avs_coap_udp_tx_params.h -------------------------------------------------------------------------------- /deps/avs_coap/tests/fuzz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/fuzz/CMakeLists.txt -------------------------------------------------------------------------------- /deps/avs_coap/tests/fuzz/coap_async_api_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/fuzz/coap_async_api_tcp.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/fuzz/coap_async_api_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/fuzz/coap_async_api_udp.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/fuzz/coap_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/fuzz/coap_parse.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/fuzz/input/coap_parse/empty: -------------------------------------------------------------------------------- 1 | @ -------------------------------------------------------------------------------- /deps/avs_coap/tests/fuzz/input/hex-to-fuzz-input.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/fuzz/input/hex-to-fuzz-input.sh -------------------------------------------------------------------------------- /deps/avs_coap/tests/mock_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/mock_clock.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/mock_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/mock_clock.h -------------------------------------------------------------------------------- /deps/avs_coap/tests/options/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/options/option.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/options/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/options/options.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/socket.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/socket.h -------------------------------------------------------------------------------- /deps/avs_coap/tests/tcp/async_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/tcp/async_client.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/tcp/async_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/tcp/async_server.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/tcp/csm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/tcp/csm.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/tcp/ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/tcp/ctx.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/tcp/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/tcp/env.h -------------------------------------------------------------------------------- /deps/avs_coap/tests/tcp/header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/tcp/header.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/tcp/helper_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/tcp/helper_functions.h -------------------------------------------------------------------------------- /deps/avs_coap/tests/tcp/payload_escaper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/tcp/payload_escaper.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/tcp/requesting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/tcp/requesting.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/tcp/responding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/tcp/responding.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/tcp/setsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/tcp/setsock.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/tcp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/tcp/utils.h -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/async_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/async_client.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/async_client_with_big_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/async_client_with_big_data.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/async_observe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/async_observe.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/async_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/async_server.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/big_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/big_data.h -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/fuzzer_cases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/fuzzer_cases.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/msg.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/msg_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/msg_cache.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/setsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/setsock.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/streaming_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/streaming_client.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/streaming_observe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/streaming_observe.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/streaming_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/streaming_server.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/tx_params_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/tx_params_mock.h -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/udp_tx_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/udp_tx_params.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/udp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/udp/utils.h -------------------------------------------------------------------------------- /deps/avs_coap/tests/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/utils.c -------------------------------------------------------------------------------- /deps/avs_coap/tests/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tests/utils.h -------------------------------------------------------------------------------- /deps/avs_coap/tools/avs_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tools/avs_common.py -------------------------------------------------------------------------------- /deps/avs_coap/tools/conditional_headers_whitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tools/conditional_headers_whitelist.json -------------------------------------------------------------------------------- /deps/avs_coap/tools/coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tools/coverage -------------------------------------------------------------------------------- /deps/avs_coap/tools/license_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/deps/avs_coap/tools/license_headers.py -------------------------------------------------------------------------------- /devconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/devconfig -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/Makefile -------------------------------------------------------------------------------- /doc/sphinx/extensions/builders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/extensions/builders/__init__.py -------------------------------------------------------------------------------- /doc/sphinx/extensions/builders/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/extensions/builders/dummy.py -------------------------------------------------------------------------------- /doc/sphinx/extensions/builders/snippet_source_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/extensions/builders/snippet_source_linter.py -------------------------------------------------------------------------------- /doc/sphinx/extensions/file_dirtiness_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/extensions/file_dirtiness_checker.py -------------------------------------------------------------------------------- /doc/sphinx/extensions/small_literal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/extensions/small_literal.py -------------------------------------------------------------------------------- /doc/sphinx/extensions/snippet_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/extensions/snippet_source.py -------------------------------------------------------------------------------- /doc/sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/make.bat -------------------------------------------------------------------------------- /doc/sphinx/snippet_sources.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/snippet_sources.md5 -------------------------------------------------------------------------------- /doc/sphinx/source/API_description.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/API_description.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics/AT-AccessControl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics/AT-AccessControl.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics/AT-AttributeStorage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics/AT-AttributeStorage.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics/AT-Bootstrap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics/AT-Bootstrap.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics/AT-CertificateUsage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics/AT-CertificateUsage.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics/AT-Certificates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics/AT-Certificates.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics/AT-CustomEventLoop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics/AT-CustomEventLoop.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics/AT-CustomObjects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics/AT-CustomObjects.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics/AT-EventLoopNotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics/AT-EventLoopNotes.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics/AT-IpsoObjects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics/AT-IpsoObjects.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics/AT-NetworkErrorHandling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics/AT-NetworkErrorHandling.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics/AT-OtherFeatures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics/AT-OtherFeatures.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics/AT-Persistence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics/AT-Persistence.rst -------------------------------------------------------------------------------- /doc/sphinx/source/AdvancedTopics/_images/anjay-read.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/AdvancedTopics/_images/anjay-read.svg -------------------------------------------------------------------------------- /doc/sphinx/source/BasicClient.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/BasicClient.rst -------------------------------------------------------------------------------- /doc/sphinx/source/BasicClient/BC-Initialization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/BasicClient/BC-Initialization.rst -------------------------------------------------------------------------------- /doc/sphinx/source/BasicClient/BC-MandatoryObjects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/BasicClient/BC-MandatoryObjects.rst -------------------------------------------------------------------------------- /doc/sphinx/source/BasicClient/BC-Notifications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/BasicClient/BC-Notifications.rst -------------------------------------------------------------------------------- /doc/sphinx/source/BasicClient/BC-ObjectImplementation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/BasicClient/BC-ObjectImplementation.rst -------------------------------------------------------------------------------- /doc/sphinx/source/BasicClient/BC-Security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/BasicClient/BC-Security.rst -------------------------------------------------------------------------------- /doc/sphinx/source/BasicClient/BC-Send.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/BasicClient/BC-Send.rst -------------------------------------------------------------------------------- /doc/sphinx/source/BasicClient/BC-ThreadSafety.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/BasicClient/BC-ThreadSafety.rst -------------------------------------------------------------------------------- /doc/sphinx/source/CommercialFeatures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/CommercialFeatures.rst -------------------------------------------------------------------------------- /doc/sphinx/source/CommercialFeatures/CF-CorePersistence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/CommercialFeatures/CF-CorePersistence.rst -------------------------------------------------------------------------------- /doc/sphinx/source/CommercialFeatures/CF-EST.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/CommercialFeatures/CF-EST.rst -------------------------------------------------------------------------------- /doc/sphinx/source/CommercialFeatures/CF-FSDM.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/CommercialFeatures/CF-FSDM.rst -------------------------------------------------------------------------------- /doc/sphinx/source/CommercialFeatures/CF-HSM.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/CommercialFeatures/CF-HSM.rst -------------------------------------------------------------------------------- /doc/sphinx/source/CommercialFeatures/CF-IoTSAFE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/CommercialFeatures/CF-IoTSAFE.rst -------------------------------------------------------------------------------- /doc/sphinx/source/CommercialFeatures/CF-NIDD.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/CommercialFeatures/CF-NIDD.rst -------------------------------------------------------------------------------- /doc/sphinx/source/CommercialFeatures/CF-OSCORE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/CommercialFeatures/CF-OSCORE.rst -------------------------------------------------------------------------------- /doc/sphinx/source/CommercialFeatures/CF-SMSBinding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/CommercialFeatures/CF-SMSBinding.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Compiling_client_applications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Compiling_client_applications.rst -------------------------------------------------------------------------------- /doc/sphinx/source/FirmwareUpdateTutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/FirmwareUpdateTutorial.rst -------------------------------------------------------------------------------- /doc/sphinx/source/FirmwareUpdateTutorial/FU-Introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/FirmwareUpdateTutorial/FU-Introduction.rst -------------------------------------------------------------------------------- /doc/sphinx/source/FirmwareUpdateTutorial/FU1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/FirmwareUpdateTutorial/FU1.rst -------------------------------------------------------------------------------- /doc/sphinx/source/FirmwareUpdateTutorial/FU2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/FirmwareUpdateTutorial/FU2.rst -------------------------------------------------------------------------------- /doc/sphinx/source/FirmwareUpdateTutorial/FU3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/FirmwareUpdateTutorial/FU3.rst -------------------------------------------------------------------------------- /doc/sphinx/source/FirmwareUpdateTutorial/FU4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/FirmwareUpdateTutorial/FU4.rst -------------------------------------------------------------------------------- /doc/sphinx/source/FirmwareUpdateTutorial/FU5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/FirmwareUpdateTutorial/FU5.rst -------------------------------------------------------------------------------- /doc/sphinx/source/FirmwareUpdateTutorial/FU6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/FirmwareUpdateTutorial/FU6.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Introduction.rst -------------------------------------------------------------------------------- /doc/sphinx/source/LwM2M.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/LwM2M.rst -------------------------------------------------------------------------------- /doc/sphinx/source/LwM2MGateway.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/LwM2MGateway.rst -------------------------------------------------------------------------------- /doc/sphinx/source/LwM2MGateway/LwM2MGatewayAPI.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/LwM2MGateway/LwM2MGatewayAPI.rst -------------------------------------------------------------------------------- /doc/sphinx/source/LwM2MGateway/LwM2MGatewayIntro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/LwM2MGateway/LwM2MGatewayIntro.rst -------------------------------------------------------------------------------- /doc/sphinx/source/LwM2MGateway/LwM2MGatewayNotifications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/LwM2MGateway/LwM2MGatewayNotifications.rst -------------------------------------------------------------------------------- /doc/sphinx/source/LwM2MGateway/LwM2MGatewaySend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/LwM2MGateway/LwM2MGatewaySend.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingCustomEntropy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingCustomEntropy.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingFromAnjay214.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingFromAnjay214.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingFromAnjay215.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingFromAnjay215.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingFromAnjay225.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingFromAnjay225.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingFromAnjay24.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingFromAnjay24.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingFromAnjay26.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingFromAnjay26.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingFromAnjay27.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingFromAnjay27.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingFromAnjay28.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingFromAnjay28.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingFromAnjay30.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingFromAnjay30.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingFromAnjay310.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingFromAnjay310.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingFromAnjay32.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingFromAnjay32.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingFromAnjay33.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingFromAnjay33.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingFromAnjay34.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingFromAnjay34.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Migrating/MigratingFromAnjay37.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Migrating/MigratingFromAnjay37.rst -------------------------------------------------------------------------------- /doc/sphinx/source/PortingGuideForNonPOSIXPlatforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/PortingGuideForNonPOSIXPlatforms.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Tools.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Tools/CliLwM2MServer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Tools/CliLwM2MServer.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Tools/FactoryProvisioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Tools/FactoryProvisioning.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Tools/PackagesGenerator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Tools/PackagesGenerator.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Tools/StandaloneObjects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Tools/StandaloneObjects.rst -------------------------------------------------------------------------------- /doc/sphinx/source/Tools/StubGenerator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/Tools/StubGenerator.rst -------------------------------------------------------------------------------- /doc/sphinx/source/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/_static/theme_overrides.css -------------------------------------------------------------------------------- /doc/sphinx/source/avsystem_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/avsystem_header.png -------------------------------------------------------------------------------- /doc/sphinx/source/avsystem_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/avsystem_logo.png -------------------------------------------------------------------------------- /doc/sphinx/source/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/conf.py.in -------------------------------------------------------------------------------- /doc/sphinx/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/doc/sphinx/source/index.rst -------------------------------------------------------------------------------- /example_configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/example_configs/README.md -------------------------------------------------------------------------------- /example_configs/embedded_lwm2m10/anjay/anjay_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/example_configs/embedded_lwm2m10/anjay/anjay_config.h -------------------------------------------------------------------------------- /example_configs/embedded_lwm2m11/anjay/anjay_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/example_configs/embedded_lwm2m11/anjay/anjay_config.h -------------------------------------------------------------------------------- /example_configs/linux_lwm2m10/anjay/anjay_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/example_configs/linux_lwm2m10/anjay/anjay_config.h -------------------------------------------------------------------------------- /example_configs/linux_lwm2m10/avsystem/coap/avs_coap_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/example_configs/linux_lwm2m10/avsystem/coap/avs_coap_config.h -------------------------------------------------------------------------------- /example_configs/linux_lwm2m11/anjay/anjay_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/example_configs/linux_lwm2m11/anjay/anjay_config.h -------------------------------------------------------------------------------- /example_configs/linux_lwm2m11/avsystem/coap/avs_coap_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/example_configs/linux_lwm2m11/avsystem/coap/avs_coap_config.h -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/commercial-features/CF-CorePersistence/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-CorePersistence/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-EST-PKCS11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-EST-PKCS11/CMakeLists.txt -------------------------------------------------------------------------------- /examples/commercial-features/CF-EST-PKCS11/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-EST-PKCS11/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-EST/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-EST/CMakeLists.txt -------------------------------------------------------------------------------- /examples/commercial-features/CF-EST/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-EST/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-NIDD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-NIDD/CMakeLists.txt -------------------------------------------------------------------------------- /examples/commercial-features/CF-NIDD/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-NIDD/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-NIDD/src/nidd_demo_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-NIDD/src/nidd_demo_driver.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-NIDD/src/nidd_demo_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-NIDD/src/nidd_demo_driver.h -------------------------------------------------------------------------------- /examples/commercial-features/CF-OSCORE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-OSCORE/CMakeLists.txt -------------------------------------------------------------------------------- /examples/commercial-features/CF-OSCORE/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-OSCORE/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-PKCS11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-PKCS11/CMakeLists.txt -------------------------------------------------------------------------------- /examples/commercial-features/CF-PKCS11/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-PKCS11/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-PSA-PKI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-PSA-PKI/CMakeLists.txt -------------------------------------------------------------------------------- /examples/commercial-features/CF-PSA-PKI/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-PSA-PKI/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-PSA-PSK/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-PSA-PSK/CMakeLists.txt -------------------------------------------------------------------------------- /examples/commercial-features/CF-PSA-PSK/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-PSA-PSK/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-PSA-bootstrap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-PSA-bootstrap/CMakeLists.txt -------------------------------------------------------------------------------- /examples/commercial-features/CF-PSA-bootstrap/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-PSA-bootstrap/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-PSA-management/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-PSA-management/CMakeLists.txt -------------------------------------------------------------------------------- /examples/commercial-features/CF-PSA-management/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-PSA-management/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-SMS-PSK/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-SMS-PSK/CMakeLists.txt -------------------------------------------------------------------------------- /examples/commercial-features/CF-SMS-PSK/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-SMS-PSK/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-SMS-UDP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-SMS-UDP/CMakeLists.txt -------------------------------------------------------------------------------- /examples/commercial-features/CF-SMS-UDP/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-SMS-UDP/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-SMS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-SMS/CMakeLists.txt -------------------------------------------------------------------------------- /examples/commercial-features/CF-SMS/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-SMS/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CF-SmartCardBootstrap/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CF-SmartCardBootstrap/src/main.c -------------------------------------------------------------------------------- /examples/commercial-features/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/commercial-features/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-network/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-network/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-network/bind/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-network/bind/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-network/bind/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/AT-CustomEventLoop/src/main.c -------------------------------------------------------------------------------- /examples/custom-network/bind/src/net_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-network/bind/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-network/ip-stickiness/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-network/ip-stickiness/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-network/ip-stickiness/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/AT-CustomEventLoop/src/main.c -------------------------------------------------------------------------------- /examples/custom-network/ip-stickiness/src/net_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-network/ip-stickiness/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-network/minimal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-network/minimal/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-network/minimal/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/AT-CustomEventLoop/src/main.c -------------------------------------------------------------------------------- /examples/custom-network/minimal/src/net_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-network/minimal/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-network/remote-host-port/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-network/remote-host-port/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-network/remote-host-port/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/AT-CustomEventLoop/src/main.c -------------------------------------------------------------------------------- /examples/custom-network/remote-host-port/src/net_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-network/remote-host-port/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-network/shutdown-remote-hostname/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/AT-CustomEventLoop/src/main.c -------------------------------------------------------------------------------- /examples/custom-network/stats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-network/stats/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-network/stats/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/AT-CustomEventLoop/src/main.c -------------------------------------------------------------------------------- /examples/custom-network/stats/src/net_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-network/stats/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-tls/certificates-advanced-fake-dane/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/AT-Certificates/src/main.c -------------------------------------------------------------------------------- /examples/custom-tls/certificates-advanced-fake-dane/src/net_impl.c: -------------------------------------------------------------------------------- 1 | ../../../custom-network/ip-stickiness/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/certificates-advanced/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/certificates-advanced/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-tls/certificates-advanced/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/AT-Certificates/src/main.c -------------------------------------------------------------------------------- /examples/custom-tls/certificates-advanced/src/net_impl.c: -------------------------------------------------------------------------------- 1 | ../../../custom-network/ip-stickiness/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/certificates-advanced/src/tls_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/certificates-advanced/src/tls_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/certificates-basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/certificates-basic/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-tls/certificates-basic/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/certificates-basic/src/main.c -------------------------------------------------------------------------------- /examples/custom-tls/certificates-basic/src/net_impl.c: -------------------------------------------------------------------------------- 1 | ../../../custom-network/ip-stickiness/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/certificates-basic/src/tls_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/certificates-basic/src/tls_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/config-features/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/config-features/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-tls/config-features/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/AT-CustomEventLoop/src/main.c -------------------------------------------------------------------------------- /examples/custom-tls/config-features/src/net_impl.c: -------------------------------------------------------------------------------- 1 | ../../../custom-network/ip-stickiness/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/config-features/src/tls_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/config-features/src/tls_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/minimal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/minimal/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-tls/minimal/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/AT-CustomEventLoop/src/main.c -------------------------------------------------------------------------------- /examples/custom-tls/minimal/src/net_impl.c: -------------------------------------------------------------------------------- 1 | ../../../custom-network/ip-stickiness/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/minimal/src/tls_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/minimal/src/tls_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/resumption-buffer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/resumption-buffer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-tls/resumption-buffer/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/AT-CustomEventLoop/src/main.c -------------------------------------------------------------------------------- /examples/custom-tls/resumption-buffer/src/net_impl.c: -------------------------------------------------------------------------------- 1 | ../../../custom-network/ip-stickiness/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/resumption-buffer/src/tls_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/resumption-buffer/src/tls_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/resumption-simple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/resumption-simple/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-tls/resumption-simple/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/AT-CustomEventLoop/src/main.c -------------------------------------------------------------------------------- /examples/custom-tls/resumption-simple/src/net_impl.c: -------------------------------------------------------------------------------- 1 | ../../../custom-network/ip-stickiness/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/resumption-simple/src/tls_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/resumption-simple/src/tls_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/stub/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/stub/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-tls/stub/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/AT-CustomEventLoop/src/main.c -------------------------------------------------------------------------------- /examples/custom-tls/stub/src/net_impl.c: -------------------------------------------------------------------------------- 1 | ../../../custom-network/ip-stickiness/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/stub/src/tls_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/stub/src/tls_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/tcp-support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/tcp-support/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom-tls/tcp-support/src/firmware_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/tcp-support/src/firmware_update.c -------------------------------------------------------------------------------- /examples/custom-tls/tcp-support/src/firmware_update.h: -------------------------------------------------------------------------------- 1 | ../../../tutorial/firmware-update/secure-downloads/src/firmware_update.h -------------------------------------------------------------------------------- /examples/custom-tls/tcp-support/src/main.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/firmware-update/secure-downloads/src/main.c -------------------------------------------------------------------------------- /examples/custom-tls/tcp-support/src/net_impl.c: -------------------------------------------------------------------------------- 1 | ../../../custom-network/ip-stickiness/src/net_impl.c -------------------------------------------------------------------------------- /examples/custom-tls/tcp-support/src/time_object.c: -------------------------------------------------------------------------------- 1 | ../../../tutorial/firmware-update/secure-downloads/src/time_object.c -------------------------------------------------------------------------------- /examples/custom-tls/tcp-support/src/time_object.h: -------------------------------------------------------------------------------- 1 | ../../../tutorial/firmware-update/secure-downloads/src/time_object.h -------------------------------------------------------------------------------- /examples/custom-tls/tcp-support/src/tls_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/custom-tls/tcp-support/src/tls_impl.c -------------------------------------------------------------------------------- /examples/tutorial/AT-AccessControl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-AccessControl/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/AT-AccessControl/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-AccessControl/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/AT-AccessControl/src/test_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-AccessControl/src/test_object.c -------------------------------------------------------------------------------- /examples/tutorial/AT-AccessControl/src/test_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-AccessControl/src/test_object.h -------------------------------------------------------------------------------- /examples/tutorial/AT-Bootstrap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-Bootstrap/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/AT-Bootstrap/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-Bootstrap/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/AT-Certificates/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-Certificates/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/AT-Certificates/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-Certificates/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/AT-CustomEventLoop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-CustomEventLoop/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/AT-CustomEventLoop/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-CustomEventLoop/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/AT-CustomObjects/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-CustomObjects/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/AT-CustomObjects/read-only/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-CustomObjects/read-only/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/AT-CustomObjects/read-only/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-CustomObjects/read-only/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/AT-Downloader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-Downloader/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/AT-Downloader/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-Downloader/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/AT-IpsoObjects/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-IpsoObjects/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/AT-IpsoObjects/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-IpsoObjects/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/AT-Persistence/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-Persistence/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/AT-Persistence/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/AT-Persistence/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/BC-Initialization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-Initialization/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/BC-Initialization/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-Initialization/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/BC-MandatoryObjects/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-MandatoryObjects/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/BC-MandatoryObjects/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-MandatoryObjects/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/BC-Notifications/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-Notifications/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/BC-Notifications/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-Notifications/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/BC-Notifications/src/time_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-Notifications/src/time_object.c -------------------------------------------------------------------------------- /examples/tutorial/BC-Notifications/src/time_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-Notifications/src/time_object.h -------------------------------------------------------------------------------- /examples/tutorial/BC-ObjectImplementation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-ObjectImplementation/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/BC-ObjectImplementation/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-ObjectImplementation/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/BC-ObjectImplementation/src/time_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-ObjectImplementation/src/time_object.c -------------------------------------------------------------------------------- /examples/tutorial/BC-ObjectImplementation/src/time_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-ObjectImplementation/src/time_object.h -------------------------------------------------------------------------------- /examples/tutorial/BC-Security/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-Security/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/BC-Security/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-Security/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/BC-Send/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-Send/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/BC-Send/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-Send/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/BC-Send/src/time_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-Send/src/time_object.c -------------------------------------------------------------------------------- /examples/tutorial/BC-Send/src/time_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-Send/src/time_object.h -------------------------------------------------------------------------------- /examples/tutorial/BC-ThreadSafety/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-ThreadSafety/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/BC-ThreadSafety/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-ThreadSafety/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/BC-ThreadSafety/src/time_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-ThreadSafety/src/time_object.c -------------------------------------------------------------------------------- /examples/tutorial/BC-ThreadSafety/src/time_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/BC-ThreadSafety/src/time_object.h -------------------------------------------------------------------------------- /examples/tutorial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/LwM2M-Gateway/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/LwM2M-Gateway/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/LwM2M-Gateway/end_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/LwM2M-Gateway/end_device.py -------------------------------------------------------------------------------- /examples/tutorial/LwM2M-Gateway/src/gateway_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/LwM2M-Gateway/src/gateway_server.c -------------------------------------------------------------------------------- /examples/tutorial/LwM2M-Gateway/src/gateway_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/LwM2M-Gateway/src/gateway_server.h -------------------------------------------------------------------------------- /examples/tutorial/LwM2M-Gateway/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/LwM2M-Gateway/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/LwM2M-Gateway/src/temperature_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/LwM2M-Gateway/src/temperature_object.c -------------------------------------------------------------------------------- /examples/tutorial/LwM2M-Gateway/src/temperature_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/LwM2M-Gateway/src/temperature_object.h -------------------------------------------------------------------------------- /examples/tutorial/firmware-update/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/firmware-update/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/firmware-update/advanced-firmware-update/src/time_object.c: -------------------------------------------------------------------------------- 1 | ../../../BC-Notifications/src/time_object.c -------------------------------------------------------------------------------- /examples/tutorial/firmware-update/advanced-firmware-update/src/time_object.h: -------------------------------------------------------------------------------- 1 | ../../../BC-Notifications/src/time_object.h -------------------------------------------------------------------------------- /examples/tutorial/firmware-update/basic-implementation/src/time_object.c: -------------------------------------------------------------------------------- 1 | ../../../BC-Notifications/src/time_object.c -------------------------------------------------------------------------------- /examples/tutorial/firmware-update/basic-implementation/src/time_object.h: -------------------------------------------------------------------------------- 1 | ../../../BC-Notifications/src/time_object.h -------------------------------------------------------------------------------- /examples/tutorial/firmware-update/download-resumption/src/time_object.c: -------------------------------------------------------------------------------- 1 | ../../../BC-Notifications/src/time_object.c -------------------------------------------------------------------------------- /examples/tutorial/firmware-update/download-resumption/src/time_object.h: -------------------------------------------------------------------------------- 1 | ../../../BC-Notifications/src/time_object.h -------------------------------------------------------------------------------- /examples/tutorial/firmware-update/secure-downloads/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/examples/tutorial/firmware-update/secure-downloads/src/main.c -------------------------------------------------------------------------------- /examples/tutorial/firmware-update/secure-downloads/src/time_object.c: -------------------------------------------------------------------------------- 1 | ../../../BC-Notifications/src/time_object.c -------------------------------------------------------------------------------- /examples/tutorial/firmware-update/secure-downloads/src/time_object.h: -------------------------------------------------------------------------------- 1 | ../../../BC-Notifications/src/time_object.h -------------------------------------------------------------------------------- /include_public/anjay/access_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/access_control.h -------------------------------------------------------------------------------- /include_public/anjay/advanced_fw_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/advanced_fw_update.h -------------------------------------------------------------------------------- /include_public/anjay/anjay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/anjay.h -------------------------------------------------------------------------------- /include_public/anjay/anjay_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/anjay_config.h.in -------------------------------------------------------------------------------- /include_public/anjay/attr_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/attr_storage.h -------------------------------------------------------------------------------- /include_public/anjay/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/core.h -------------------------------------------------------------------------------- /include_public/anjay/dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/dm.h -------------------------------------------------------------------------------- /include_public/anjay/download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/download.h -------------------------------------------------------------------------------- /include_public/anjay/factory_provisioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/factory_provisioning.h -------------------------------------------------------------------------------- /include_public/anjay/fw_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/fw_update.h -------------------------------------------------------------------------------- /include_public/anjay/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/io.h -------------------------------------------------------------------------------- /include_public/anjay/ipso_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/ipso_objects.h -------------------------------------------------------------------------------- /include_public/anjay/ipso_objects_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/ipso_objects_v2.h -------------------------------------------------------------------------------- /include_public/anjay/lwm2m_gateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/lwm2m_gateway.h -------------------------------------------------------------------------------- /include_public/anjay/lwm2m_send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/lwm2m_send.h -------------------------------------------------------------------------------- /include_public/anjay/security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/security.h -------------------------------------------------------------------------------- /include_public/anjay/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/server.h -------------------------------------------------------------------------------- /include_public/anjay/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/stats.h -------------------------------------------------------------------------------- /include_public/anjay/sw_mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/include_public/anjay/sw_mgmt.h -------------------------------------------------------------------------------- /ltoconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/ltoconfig -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/anjay_config_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_config_log.h -------------------------------------------------------------------------------- /src/anjay_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_init.h -------------------------------------------------------------------------------- /src/anjay_modules/anjay_access_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/anjay_access_utils.h -------------------------------------------------------------------------------- /src/anjay_modules/anjay_attr_storage_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/anjay_attr_storage_utils.h -------------------------------------------------------------------------------- /src/anjay_modules/anjay_bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/anjay_bootstrap.h -------------------------------------------------------------------------------- /src/anjay_modules/anjay_dm_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/anjay_dm_utils.h -------------------------------------------------------------------------------- /src/anjay_modules/anjay_io_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/anjay_io_utils.h -------------------------------------------------------------------------------- /src/anjay_modules/anjay_lwm2m_gateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/anjay_lwm2m_gateway.h -------------------------------------------------------------------------------- /src/anjay_modules/anjay_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/anjay_notify.h -------------------------------------------------------------------------------- /src/anjay_modules/anjay_raw_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/anjay_raw_buffer.h -------------------------------------------------------------------------------- /src/anjay_modules/anjay_sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/anjay_sched.h -------------------------------------------------------------------------------- /src/anjay_modules/anjay_servers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/anjay_servers.h -------------------------------------------------------------------------------- /src/anjay_modules/anjay_time_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/anjay_time_defs.h -------------------------------------------------------------------------------- /src/anjay_modules/anjay_utils_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/anjay_utils_core.h -------------------------------------------------------------------------------- /src/anjay_modules/dm/anjay_execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/dm/anjay_execute.h -------------------------------------------------------------------------------- /src/anjay_modules/dm/anjay_modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/anjay_modules/dm/anjay_modules.h -------------------------------------------------------------------------------- /src/core/anjay_access_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_access_utils.c -------------------------------------------------------------------------------- /src/core/anjay_access_utils_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_access_utils_private.h -------------------------------------------------------------------------------- /src/core/anjay_bootstrap_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_bootstrap_core.c -------------------------------------------------------------------------------- /src/core/anjay_bootstrap_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_bootstrap_core.h -------------------------------------------------------------------------------- /src/core/anjay_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_core.c -------------------------------------------------------------------------------- /src/core/anjay_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_core.h -------------------------------------------------------------------------------- /src/core/anjay_dm_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_dm_core.c -------------------------------------------------------------------------------- /src/core/anjay_dm_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_dm_core.h -------------------------------------------------------------------------------- /src/core/anjay_downloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_downloader.h -------------------------------------------------------------------------------- /src/core/anjay_event_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_event_loop.c -------------------------------------------------------------------------------- /src/core/anjay_io_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_io_core.c -------------------------------------------------------------------------------- /src/core/anjay_io_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_io_core.h -------------------------------------------------------------------------------- /src/core/anjay_io_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_io_utils.c -------------------------------------------------------------------------------- /src/core/anjay_lwm2m_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_lwm2m_send.c -------------------------------------------------------------------------------- /src/core/anjay_lwm2m_send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_lwm2m_send.h -------------------------------------------------------------------------------- /src/core/anjay_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_notify.c -------------------------------------------------------------------------------- /src/core/anjay_raw_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_raw_buffer.c -------------------------------------------------------------------------------- /src/core/anjay_servers_inactive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_servers_inactive.h -------------------------------------------------------------------------------- /src/core/anjay_servers_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_servers_private.h -------------------------------------------------------------------------------- /src/core/anjay_servers_reload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_servers_reload.h -------------------------------------------------------------------------------- /src/core/anjay_servers_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_servers_utils.c -------------------------------------------------------------------------------- /src/core/anjay_servers_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_servers_utils.h -------------------------------------------------------------------------------- /src/core/anjay_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_stats.c -------------------------------------------------------------------------------- /src/core/anjay_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_stats.h -------------------------------------------------------------------------------- /src/core/anjay_utils_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_utils_core.c -------------------------------------------------------------------------------- /src/core/anjay_utils_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/anjay_utils_private.h -------------------------------------------------------------------------------- /src/core/attr_storage/anjay_attr_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/attr_storage/anjay_attr_storage.c -------------------------------------------------------------------------------- /src/core/attr_storage/anjay_attr_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/attr_storage/anjay_attr_storage.h -------------------------------------------------------------------------------- /src/core/attr_storage/anjay_attr_storage_persistence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/attr_storage/anjay_attr_storage_persistence.c -------------------------------------------------------------------------------- /src/core/attr_storage/anjay_attr_storage_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/attr_storage/anjay_attr_storage_private.h -------------------------------------------------------------------------------- /src/core/coap/anjay_content_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/coap/anjay_content_format.h -------------------------------------------------------------------------------- /src/core/coap/anjay_msg_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/coap/anjay_msg_details.h -------------------------------------------------------------------------------- /src/core/dm/anjay_discover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_discover.c -------------------------------------------------------------------------------- /src/core/dm/anjay_discover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_discover.h -------------------------------------------------------------------------------- /src/core/dm/anjay_dm_attributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_dm_attributes.c -------------------------------------------------------------------------------- /src/core/dm/anjay_dm_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_dm_attributes.h -------------------------------------------------------------------------------- /src/core/dm/anjay_dm_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_dm_create.c -------------------------------------------------------------------------------- /src/core/dm/anjay_dm_create.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_dm_create.h -------------------------------------------------------------------------------- /src/core/dm/anjay_dm_execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_dm_execute.c -------------------------------------------------------------------------------- /src/core/dm/anjay_dm_execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_dm_execute.h -------------------------------------------------------------------------------- /src/core/dm/anjay_dm_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_dm_handlers.c -------------------------------------------------------------------------------- /src/core/dm/anjay_dm_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_dm_read.c -------------------------------------------------------------------------------- /src/core/dm/anjay_dm_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_dm_read.h -------------------------------------------------------------------------------- /src/core/dm/anjay_dm_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_dm_write.c -------------------------------------------------------------------------------- /src/core/dm/anjay_dm_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_dm_write.h -------------------------------------------------------------------------------- /src/core/dm/anjay_dm_write_attrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_dm_write_attrs.c -------------------------------------------------------------------------------- /src/core/dm/anjay_dm_write_attrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_dm_write_attrs.h -------------------------------------------------------------------------------- /src/core/dm/anjay_modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_modules.c -------------------------------------------------------------------------------- /src/core/dm/anjay_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_query.c -------------------------------------------------------------------------------- /src/core/dm/anjay_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/dm/anjay_query.h -------------------------------------------------------------------------------- /src/core/downloader/anjay_coap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/downloader/anjay_coap.c -------------------------------------------------------------------------------- /src/core/downloader/anjay_downloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/downloader/anjay_downloader.c -------------------------------------------------------------------------------- /src/core/downloader/anjay_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/downloader/anjay_http.c -------------------------------------------------------------------------------- /src/core/downloader/anjay_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/downloader/anjay_private.h -------------------------------------------------------------------------------- /src/core/io/anjay_base64_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_base64_out.c -------------------------------------------------------------------------------- /src/core/io/anjay_base64_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_base64_out.h -------------------------------------------------------------------------------- /src/core/io/anjay_batch_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_batch_builder.c -------------------------------------------------------------------------------- /src/core/io/anjay_batch_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_batch_builder.h -------------------------------------------------------------------------------- /src/core/io/anjay_cbor_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_cbor_in.c -------------------------------------------------------------------------------- /src/core/io/anjay_cbor_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_cbor_out.c -------------------------------------------------------------------------------- /src/core/io/anjay_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_common.c -------------------------------------------------------------------------------- /src/core/io/anjay_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_common.h -------------------------------------------------------------------------------- /src/core/io/anjay_corelnk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_corelnk.c -------------------------------------------------------------------------------- /src/core/io/anjay_corelnk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_corelnk.h -------------------------------------------------------------------------------- /src/core/io/anjay_dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_dynamic.c -------------------------------------------------------------------------------- /src/core/io/anjay_input_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_input_buf.c -------------------------------------------------------------------------------- /src/core/io/anjay_json_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_json_encoder.c -------------------------------------------------------------------------------- /src/core/io/anjay_json_like_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_json_like_decoder.c -------------------------------------------------------------------------------- /src/core/io/anjay_json_like_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_json_like_decoder.h -------------------------------------------------------------------------------- /src/core/io/anjay_json_like_decoder_vtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_json_like_decoder_vtable.h -------------------------------------------------------------------------------- /src/core/io/anjay_opaque.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_opaque.c -------------------------------------------------------------------------------- /src/core/io/anjay_output_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_output_buf.c -------------------------------------------------------------------------------- /src/core/io/anjay_senml_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_senml_in.c -------------------------------------------------------------------------------- /src/core/io/anjay_senml_like_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_senml_like_encoder.c -------------------------------------------------------------------------------- /src/core/io/anjay_senml_like_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_senml_like_encoder.h -------------------------------------------------------------------------------- /src/core/io/anjay_senml_like_encoder_vtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_senml_like_encoder_vtable.h -------------------------------------------------------------------------------- /src/core/io/anjay_senml_like_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_senml_like_out.c -------------------------------------------------------------------------------- /src/core/io/anjay_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_text.c -------------------------------------------------------------------------------- /src/core/io/anjay_tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_tlv.h -------------------------------------------------------------------------------- /src/core/io/anjay_tlv_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_tlv_in.c -------------------------------------------------------------------------------- /src/core/io/anjay_tlv_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_tlv_out.c -------------------------------------------------------------------------------- /src/core/io/anjay_vtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/anjay_vtable.h -------------------------------------------------------------------------------- /src/core/io/cbor/anjay_cbor_encoder_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/cbor/anjay_cbor_encoder_ll.c -------------------------------------------------------------------------------- /src/core/io/cbor/anjay_cbor_encoder_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/cbor/anjay_cbor_encoder_ll.h -------------------------------------------------------------------------------- /src/core/io/cbor/anjay_cbor_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/cbor/anjay_cbor_types.h -------------------------------------------------------------------------------- /src/core/io/cbor/anjay_json_like_cbor_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/cbor/anjay_json_like_cbor_decoder.c -------------------------------------------------------------------------------- /src/core/io/cbor/anjay_json_like_cbor_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/cbor/anjay_json_like_cbor_decoder.h -------------------------------------------------------------------------------- /src/core/io/cbor/anjay_senml_cbor_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/cbor/anjay_senml_cbor_encoder.c -------------------------------------------------------------------------------- /src/core/io/json/anjay_json_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/json/anjay_json_decoder.c -------------------------------------------------------------------------------- /src/core/io/json/anjay_json_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/io/json/anjay_json_decoder.h -------------------------------------------------------------------------------- /src/core/observe/anjay_observe_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/observe/anjay_observe_core.c -------------------------------------------------------------------------------- /src/core/observe/anjay_observe_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/observe/anjay_observe_core.h -------------------------------------------------------------------------------- /src/core/observe/anjay_observe_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/observe/anjay_observe_internal.h -------------------------------------------------------------------------------- /src/core/observe/anjay_observe_planning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/observe/anjay_observe_planning.c -------------------------------------------------------------------------------- /src/core/servers/anjay_activate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_activate.c -------------------------------------------------------------------------------- /src/core/servers/anjay_activate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_activate.h -------------------------------------------------------------------------------- /src/core/servers/anjay_connection_ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_connection_ip.c -------------------------------------------------------------------------------- /src/core/servers/anjay_connections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_connections.c -------------------------------------------------------------------------------- /src/core/servers/anjay_connections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_connections.h -------------------------------------------------------------------------------- /src/core/servers/anjay_connections_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_connections_internal.h -------------------------------------------------------------------------------- /src/core/servers/anjay_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_register.c -------------------------------------------------------------------------------- /src/core/servers/anjay_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_register.h -------------------------------------------------------------------------------- /src/core/servers/anjay_reload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_reload.c -------------------------------------------------------------------------------- /src/core/servers/anjay_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_security.h -------------------------------------------------------------------------------- /src/core/servers/anjay_security_generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_security_generic.c -------------------------------------------------------------------------------- /src/core/servers/anjay_server_connections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_server_connections.c -------------------------------------------------------------------------------- /src/core/servers/anjay_server_connections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_server_connections.h -------------------------------------------------------------------------------- /src/core/servers/anjay_servers_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_servers_internal.c -------------------------------------------------------------------------------- /src/core/servers/anjay_servers_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/core/servers/anjay_servers_internal.h -------------------------------------------------------------------------------- /src/modules/access_control/anjay_access_control_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/access_control/anjay_access_control_handlers.c -------------------------------------------------------------------------------- /src/modules/access_control/anjay_access_control_persistence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/access_control/anjay_access_control_persistence.c -------------------------------------------------------------------------------- /src/modules/access_control/anjay_mod_access_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/access_control/anjay_mod_access_control.c -------------------------------------------------------------------------------- /src/modules/access_control/anjay_mod_access_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/access_control/anjay_mod_access_control.h -------------------------------------------------------------------------------- /src/modules/advanced_fw_update/anjay_advanced_fw_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/advanced_fw_update/anjay_advanced_fw_update.c -------------------------------------------------------------------------------- /src/modules/factory_provisioning/anjay_provisioning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/factory_provisioning/anjay_provisioning.c -------------------------------------------------------------------------------- /src/modules/fw_update/anjay_fw_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/fw_update/anjay_fw_update.c -------------------------------------------------------------------------------- /src/modules/ipso/anjay_ipso_3d_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/ipso/anjay_ipso_3d_sensor.c -------------------------------------------------------------------------------- /src/modules/ipso/anjay_ipso_basic_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/ipso/anjay_ipso_basic_sensor.c -------------------------------------------------------------------------------- /src/modules/ipso/anjay_ipso_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/ipso/anjay_ipso_button.c -------------------------------------------------------------------------------- /src/modules/ipso_v2/anjay_ipso_v2_3d_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/ipso_v2/anjay_ipso_v2_3d_sensor.c -------------------------------------------------------------------------------- /src/modules/ipso_v2/anjay_ipso_v2_basic_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/ipso_v2/anjay_ipso_v2_basic_sensor.c -------------------------------------------------------------------------------- /src/modules/lwm2m_gateway/anjay_lwm2m_gateway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/lwm2m_gateway/anjay_lwm2m_gateway.c -------------------------------------------------------------------------------- /src/modules/security/anjay_mod_security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/security/anjay_mod_security.c -------------------------------------------------------------------------------- /src/modules/security/anjay_mod_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/security/anjay_mod_security.h -------------------------------------------------------------------------------- /src/modules/security/anjay_security_persistence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/security/anjay_security_persistence.c -------------------------------------------------------------------------------- /src/modules/security/anjay_security_transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/security/anjay_security_transaction.c -------------------------------------------------------------------------------- /src/modules/security/anjay_security_transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/security/anjay_security_transaction.h -------------------------------------------------------------------------------- /src/modules/security/anjay_security_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/security/anjay_security_utils.c -------------------------------------------------------------------------------- /src/modules/security/anjay_security_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/security/anjay_security_utils.h -------------------------------------------------------------------------------- /src/modules/server/anjay_mod_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/server/anjay_mod_server.c -------------------------------------------------------------------------------- /src/modules/server/anjay_mod_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/server/anjay_mod_server.h -------------------------------------------------------------------------------- /src/modules/server/anjay_server_persistence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/server/anjay_server_persistence.c -------------------------------------------------------------------------------- /src/modules/server/anjay_server_transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/server/anjay_server_transaction.c -------------------------------------------------------------------------------- /src/modules/server/anjay_server_transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/server/anjay_server_transaction.h -------------------------------------------------------------------------------- /src/modules/server/anjay_server_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/server/anjay_server_utils.c -------------------------------------------------------------------------------- /src/modules/server/anjay_server_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/server/anjay_server_utils.h -------------------------------------------------------------------------------- /src/modules/sw_mgmt/anjay_sw_mgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/src/modules/sw_mgmt/anjay_sw_mgmt.c -------------------------------------------------------------------------------- /standalone/security/standalone_mod_security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/security/standalone_mod_security.c -------------------------------------------------------------------------------- /standalone/security/standalone_mod_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/security/standalone_mod_security.h -------------------------------------------------------------------------------- /standalone/security/standalone_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/security/standalone_security.h -------------------------------------------------------------------------------- /standalone/security/standalone_security_persistence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/security/standalone_security_persistence.c -------------------------------------------------------------------------------- /standalone/security/standalone_security_transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/security/standalone_security_transaction.c -------------------------------------------------------------------------------- /standalone/security/standalone_security_transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/security/standalone_security_transaction.h -------------------------------------------------------------------------------- /standalone/security/standalone_security_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/security/standalone_security_utils.c -------------------------------------------------------------------------------- /standalone/security/standalone_security_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/security/standalone_security_utils.h -------------------------------------------------------------------------------- /standalone/server/standalone_mod_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/server/standalone_mod_server.c -------------------------------------------------------------------------------- /standalone/server/standalone_mod_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/server/standalone_mod_server.h -------------------------------------------------------------------------------- /standalone/server/standalone_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/server/standalone_server.h -------------------------------------------------------------------------------- /standalone/server/standalone_server_persistence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/server/standalone_server_persistence.c -------------------------------------------------------------------------------- /standalone/server/standalone_server_transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/server/standalone_server_transaction.c -------------------------------------------------------------------------------- /standalone/server/standalone_server_transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/server/standalone_server_transaction.h -------------------------------------------------------------------------------- /standalone/server/standalone_server_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/server/standalone_server_utils.c -------------------------------------------------------------------------------- /standalone/server/standalone_server_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/standalone/server/standalone_server_utils.h -------------------------------------------------------------------------------- /tests/codegen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/codegen/CMakeLists.txt -------------------------------------------------------------------------------- /tests/codegen/check_with_object_registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/codegen/check_with_object_registry.sh -------------------------------------------------------------------------------- /tests/codegen/input/execute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/codegen/input/execute.xml -------------------------------------------------------------------------------- /tests/codegen/input/multiple-object.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/codegen/input/multiple-object.xml -------------------------------------------------------------------------------- /tests/codegen/input/read.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/codegen/input/read.xml -------------------------------------------------------------------------------- /tests/codegen/input/sanitization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/codegen/input/sanitization.xml -------------------------------------------------------------------------------- /tests/codegen/input/write.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/codegen/input/write.xml -------------------------------------------------------------------------------- /tests/core/anjay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/anjay.c -------------------------------------------------------------------------------- /tests/core/attr_storage/attr_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/attr_storage/attr_storage.c -------------------------------------------------------------------------------- /tests/core/attr_storage/attr_storage_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/attr_storage/attr_storage_test.h -------------------------------------------------------------------------------- /tests/core/attr_storage/persistence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/attr_storage/persistence.c -------------------------------------------------------------------------------- /tests/core/bootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/bootstrap.c -------------------------------------------------------------------------------- /tests/core/bootstrap_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/bootstrap_mock.h -------------------------------------------------------------------------------- /tests/core/coap/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/coap/utils.c -------------------------------------------------------------------------------- /tests/core/coap/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/coap/utils.h -------------------------------------------------------------------------------- /tests/core/dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/dm.c -------------------------------------------------------------------------------- /tests/core/downloader/downloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/downloader/downloader.c -------------------------------------------------------------------------------- /tests/core/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io.c -------------------------------------------------------------------------------- /tests/core/io/batch_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/batch_builder.c -------------------------------------------------------------------------------- /tests/core/io/bigdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/bigdata.h -------------------------------------------------------------------------------- /tests/core/io/cbor/cbor_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/cbor/cbor_decoder.c -------------------------------------------------------------------------------- /tests/core/io/cbor/cbor_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/cbor/cbor_encoder.c -------------------------------------------------------------------------------- /tests/core/io/cbor_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/cbor_in.c -------------------------------------------------------------------------------- /tests/core/io/corelnk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/corelnk.c -------------------------------------------------------------------------------- /tests/core/io/dm_batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/dm_batch.c -------------------------------------------------------------------------------- /tests/core/io/dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/dynamic.c -------------------------------------------------------------------------------- /tests/core/io/json/json_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/json/json_decoder.c -------------------------------------------------------------------------------- /tests/core/io/json_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/json_in.c -------------------------------------------------------------------------------- /tests/core/io/lwm2m_cbor_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/lwm2m_cbor_out.c -------------------------------------------------------------------------------- /tests/core/io/raw_cbor_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/raw_cbor_in.c -------------------------------------------------------------------------------- /tests/core/io/senml_cbor_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/senml_cbor_encoder.c -------------------------------------------------------------------------------- /tests/core/io/senml_cbor_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/senml_cbor_out.c -------------------------------------------------------------------------------- /tests/core/io/senml_in_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/senml_in_common.h -------------------------------------------------------------------------------- /tests/core/io/senml_json_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/senml_json_encoder.c -------------------------------------------------------------------------------- /tests/core/io/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/text.c -------------------------------------------------------------------------------- /tests/core/io/tlv_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/tlv_in.c -------------------------------------------------------------------------------- /tests/core/io/tlv_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/io/tlv_out.c -------------------------------------------------------------------------------- /tests/core/lwm2m_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/lwm2m_send.c -------------------------------------------------------------------------------- /tests/core/observe/observe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/observe/observe.c -------------------------------------------------------------------------------- /tests/core/observe/observe_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/observe/observe_mock.h -------------------------------------------------------------------------------- /tests/core/socket_mock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/socket_mock.c -------------------------------------------------------------------------------- /tests/core/socket_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/socket_mock.h -------------------------------------------------------------------------------- /tests/core/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/core/utils.c -------------------------------------------------------------------------------- /tests/doc/runtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/doc/runtest.py -------------------------------------------------------------------------------- /tests/fuzz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/fuzz/CMakeLists.txt -------------------------------------------------------------------------------- /tests/fuzz/cbor/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/fuzz/cbor/decoder.c -------------------------------------------------------------------------------- /tests/fuzz/test_cases/cbor_decoder/boring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/fuzz/test_cases/cbor_decoder/boring -------------------------------------------------------------------------------- /tests/fuzz/test_cases/cbor_decoder/invalid: -------------------------------------------------------------------------------- 1 | x -n 2 | -------------------------------------------------------------------------------- /tests/fuzz/test_cases/coap_stream/valid_coap_msg: -------------------------------------------------------------------------------- 1 | ` -------------------------------------------------------------------------------- /tests/fuzz/test_cases/coap_stream_request/basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/fuzz/test_cases/coap_stream_request/basic -------------------------------------------------------------------------------- /tests/fuzz/test_cases/coap_stream_response/basic: -------------------------------------------------------------------------------- 1 | _ -------------------------------------------------------------------------------- /tests/integration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/CMakeLists.txt -------------------------------------------------------------------------------- /tests/integration/framework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/__init__.py -------------------------------------------------------------------------------- /tests/integration/framework/asserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/asserts.py -------------------------------------------------------------------------------- /tests/integration/framework/coap_file_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/coap_file_server.py -------------------------------------------------------------------------------- /tests/integration/framework/create_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/create_package.py -------------------------------------------------------------------------------- /tests/integration/framework/create_xlsx_test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/create_xlsx_test_report.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/__init__.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/coap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/coap/__init__.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/coap/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/coap/code.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/coap/content_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/coap/content_format.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/coap/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/coap/option.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/coap/packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/coap/packet.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/coap/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/coap/server.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/coap/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/coap/transport.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/coap/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/coap/type.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/coap/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/coap/utils.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/messages.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/path.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/senml_cbor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/senml_cbor.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/server.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m/tlv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m/tlv.py -------------------------------------------------------------------------------- /tests/integration/framework/lwm2m_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/lwm2m_test.py -------------------------------------------------------------------------------- /tests/integration/framework/nsh-lwm2m/cbor_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/nsh-lwm2m/cbor_shell.py -------------------------------------------------------------------------------- /tests/integration/framework/nsh-lwm2m/nsh_lwm2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/nsh-lwm2m/nsh_lwm2m.py -------------------------------------------------------------------------------- /tests/integration/framework/nsh-lwm2m/pymbedtls/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/nsh-lwm2m/pymbedtls/setup.py -------------------------------------------------------------------------------- /tests/integration/framework/nsh-lwm2m/tlv_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/nsh-lwm2m/tlv_shell.py -------------------------------------------------------------------------------- /tests/integration/framework/pretty_test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/pretty_test_runner.py -------------------------------------------------------------------------------- /tests/integration/framework/serialize_senml_cbor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/serialize_senml_cbor.py -------------------------------------------------------------------------------- /tests/integration/framework/test_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/test_suite.py -------------------------------------------------------------------------------- /tests/integration/framework/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/framework/test_utils.py -------------------------------------------------------------------------------- /tests/integration/run_tests.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/run_tests.sh.in -------------------------------------------------------------------------------- /tests/integration/runtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/runtest.py -------------------------------------------------------------------------------- /tests/integration/suites/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/__init__.py -------------------------------------------------------------------------------- /tests/integration/suites/default/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/__init__.py -------------------------------------------------------------------------------- /tests/integration/suites/default/access_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/access_control.py -------------------------------------------------------------------------------- /tests/integration/suites/default/advanced_firmware_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/advanced_firmware_update.py -------------------------------------------------------------------------------- /tests/integration/suites/default/async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/async.py -------------------------------------------------------------------------------- /tests/integration/suites/default/block_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/block_response.py -------------------------------------------------------------------------------- /tests/integration/suites/default/block_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/block_write.py -------------------------------------------------------------------------------- /tests/integration/suites/default/bootstrap_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/bootstrap_client.py -------------------------------------------------------------------------------- /tests/integration/suites/default/bootstrap_discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/bootstrap_discover.py -------------------------------------------------------------------------------- /tests/integration/suites/default/bootstrap_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/bootstrap_factory.py -------------------------------------------------------------------------------- /tests/integration/suites/default/bootstrap_holdoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/bootstrap_holdoff.py -------------------------------------------------------------------------------- /tests/integration/suites/default/bootstrap_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/bootstrap_server.py -------------------------------------------------------------------------------- /tests/integration/suites/default/bootstrap_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/bootstrap_sync.py -------------------------------------------------------------------------------- /tests/integration/suites/default/bootstrap_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/bootstrap_transaction.py -------------------------------------------------------------------------------- /tests/integration/suites/default/buffer_sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/buffer_sizes.py -------------------------------------------------------------------------------- /tests/integration/suites/default/cbor_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/cbor_encoding.py -------------------------------------------------------------------------------- /tests/integration/suites/default/cbor_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/cbor_requests.py -------------------------------------------------------------------------------- /tests/integration/suites/default/client_block_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/client_block_request.py -------------------------------------------------------------------------------- /tests/integration/suites/default/coap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/coap.py -------------------------------------------------------------------------------- /tests/integration/suites/default/con_attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/con_attr.py -------------------------------------------------------------------------------- /tests/integration/suites/default/conn_status_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/conn_status_api.py -------------------------------------------------------------------------------- /tests/integration/suites/default/connection_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/connection_id.py -------------------------------------------------------------------------------- /tests/integration/suites/default/crash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/crash.py -------------------------------------------------------------------------------- /tests/integration/suites/default/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/create.py -------------------------------------------------------------------------------- /tests/integration/suites/default/critical_opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/critical_opts.py -------------------------------------------------------------------------------- /tests/integration/suites/default/disable_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/disable_server.py -------------------------------------------------------------------------------- /tests/integration/suites/default/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/downloader.py -------------------------------------------------------------------------------- /tests/integration/suites/default/factory_provisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/factory_provisioning.py -------------------------------------------------------------------------------- /tests/integration/suites/default/firmware_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/firmware_update.py -------------------------------------------------------------------------------- /tests/integration/suites/default/forbidden_on_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/forbidden_on_register.py -------------------------------------------------------------------------------- /tests/integration/suites/default/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/formats.py -------------------------------------------------------------------------------- /tests/integration/suites/default/ipso_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/ipso_objects.py -------------------------------------------------------------------------------- /tests/integration/suites/default/json_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/json_encoding.py -------------------------------------------------------------------------------- /tests/integration/suites/default/json_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/json_requests.py -------------------------------------------------------------------------------- /tests/integration/suites/default/lwm2m_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/lwm2m_gateway.py -------------------------------------------------------------------------------- /tests/integration/suites/default/modify_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/modify_servers.py -------------------------------------------------------------------------------- /tests/integration/suites/default/msg_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/msg_cache.py -------------------------------------------------------------------------------- /tests/integration/suites/default/notification_timestamps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/notification_timestamps.py -------------------------------------------------------------------------------- /tests/integration/suites/default/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/notifications.py -------------------------------------------------------------------------------- /tests/integration/suites/default/observe_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/observe_attributes.py -------------------------------------------------------------------------------- /tests/integration/suites/default/offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/offline.py -------------------------------------------------------------------------------- /tests/integration/suites/default/plaintext_base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/plaintext_base64.py -------------------------------------------------------------------------------- /tests/integration/suites/default/port_rebind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/port_rebind.py -------------------------------------------------------------------------------- /tests/integration/suites/default/queue_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/queue_mode.py -------------------------------------------------------------------------------- /tests/integration/suites/default/read_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/read_composite.py -------------------------------------------------------------------------------- /tests/integration/suites/default/reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/reboot.py -------------------------------------------------------------------------------- /tests/integration/suites/default/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/register.py -------------------------------------------------------------------------------- /tests/integration/suites/default/request_too_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/request_too_large.py -------------------------------------------------------------------------------- /tests/integration/suites/default/retransmissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/retransmissions.py -------------------------------------------------------------------------------- /tests/integration/suites/default/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/security.py -------------------------------------------------------------------------------- /tests/integration/suites/default/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/send.py -------------------------------------------------------------------------------- /tests/integration/suites/default/senml_json_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/senml_json_encoding.py -------------------------------------------------------------------------------- /tests/integration/suites/default/separate_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/separate_response.py -------------------------------------------------------------------------------- /tests/integration/suites/default/software_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/software_mgmt.py -------------------------------------------------------------------------------- /tests/integration/suites/default/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/stats.py -------------------------------------------------------------------------------- /tests/integration/suites/default/test_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/test_object.py -------------------------------------------------------------------------------- /tests/integration/suites/default/time_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/time_api.py -------------------------------------------------------------------------------- /tests/integration/suites/default/unregister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/unregister.py -------------------------------------------------------------------------------- /tests/integration/suites/default/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/update.py -------------------------------------------------------------------------------- /tests/integration/suites/default/uri_change_reregister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/uri_change_reregister.py -------------------------------------------------------------------------------- /tests/integration/suites/default/write_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/default/write_composite.py -------------------------------------------------------------------------------- /tests/integration/suites/sensitive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/sensitive/__init__.py -------------------------------------------------------------------------------- /tests/integration/suites/sensitive/bootstrap_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/sensitive/bootstrap_client.py -------------------------------------------------------------------------------- /tests/integration/suites/sensitive/firmware_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/sensitive/firmware_update.py -------------------------------------------------------------------------------- /tests/integration/suites/sensitive/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/sensitive/update.py -------------------------------------------------------------------------------- /tests/integration/suites/testfest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/testfest/__init__.py -------------------------------------------------------------------------------- /tests/integration/suites/testfest/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/testfest/bootstrap.py -------------------------------------------------------------------------------- /tests/integration/suites/testfest/dm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/testfest/dm/__init__.py -------------------------------------------------------------------------------- /tests/integration/suites/testfest/dm/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/testfest/dm/device.py -------------------------------------------------------------------------------- /tests/integration/suites/testfest/dm/firmware_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/testfest/dm/firmware_update.py -------------------------------------------------------------------------------- /tests/integration/suites/testfest/dm/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/testfest/dm/location.py -------------------------------------------------------------------------------- /tests/integration/suites/testfest/dm/portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/testfest/dm/portfolio.py -------------------------------------------------------------------------------- /tests/integration/suites/testfest/dm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/testfest/dm/utils.py -------------------------------------------------------------------------------- /tests/integration/suites/testfest/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/testfest/management.py -------------------------------------------------------------------------------- /tests/integration/suites/testfest/multi_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/testfest/multi_servers.py -------------------------------------------------------------------------------- /tests/integration/suites/testfest/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/testfest/register.py -------------------------------------------------------------------------------- /tests/integration/suites/testfest/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/testfest/reporting.py -------------------------------------------------------------------------------- /tests/integration/suites/testfest/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/integration/suites/testfest/security.py -------------------------------------------------------------------------------- /tests/modules/access_control/access_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/modules/access_control/access_control.c -------------------------------------------------------------------------------- /tests/modules/access_control/persistence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/modules/access_control/persistence.c -------------------------------------------------------------------------------- /tests/modules/factory_provisioning/provisioning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/modules/factory_provisioning/provisioning.c -------------------------------------------------------------------------------- /tests/modules/lwm2m_gateway/lwm2m_gateway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/modules/lwm2m_gateway/lwm2m_gateway.c -------------------------------------------------------------------------------- /tests/modules/security/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/modules/security/api.c -------------------------------------------------------------------------------- /tests/modules/security/persistence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/modules/security/persistence.c -------------------------------------------------------------------------------- /tests/modules/server/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/modules/server/api.c -------------------------------------------------------------------------------- /tests/modules/server/persistence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/modules/server/persistence.c -------------------------------------------------------------------------------- /tests/utils/coap/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/utils/coap/socket.c -------------------------------------------------------------------------------- /tests/utils/coap/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/utils/coap/socket.h -------------------------------------------------------------------------------- /tests/utils/dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/utils/dm.c -------------------------------------------------------------------------------- /tests/utils/dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/utils/dm.h -------------------------------------------------------------------------------- /tests/utils/mock_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/utils/mock_clock.c -------------------------------------------------------------------------------- /tests/utils/mock_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/utils/mock_clock.h -------------------------------------------------------------------------------- /tests/utils/mock_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/utils/mock_dm.c -------------------------------------------------------------------------------- /tests/utils/mock_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/utils/mock_dm.h -------------------------------------------------------------------------------- /tests/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tests/utils/utils.h -------------------------------------------------------------------------------- /tools/analyze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/analyze -------------------------------------------------------------------------------- /tools/anjay_codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/anjay_codegen.py -------------------------------------------------------------------------------- /tools/anjay_config_log_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/anjay_config_log_tool.py -------------------------------------------------------------------------------- /tools/avs_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/avs_common.py -------------------------------------------------------------------------------- /tools/ci-psa/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/ci-psa/Dockerfile -------------------------------------------------------------------------------- /tools/ci-psa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/ci-psa/README.md -------------------------------------------------------------------------------- /tools/ci/build-docker-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/ci/build-docker-images.sh -------------------------------------------------------------------------------- /tools/ci/rockylinux-9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/ci/rockylinux-9/Dockerfile -------------------------------------------------------------------------------- /tools/ci/ubuntu-20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/ci/ubuntu-20.04/Dockerfile -------------------------------------------------------------------------------- /tools/ci/ubuntu-22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/ci/ubuntu-22.04/Dockerfile -------------------------------------------------------------------------------- /tools/conditional_headers_whitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/conditional_headers_whitelist.json -------------------------------------------------------------------------------- /tools/coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/coverage -------------------------------------------------------------------------------- /tools/find_unused_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/find_unused_code.py -------------------------------------------------------------------------------- /tools/generate-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/generate-certs.sh -------------------------------------------------------------------------------- /tools/generate_doxygen_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/generate_doxygen_config.py -------------------------------------------------------------------------------- /tools/license_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/license_headers.py -------------------------------------------------------------------------------- /tools/lwm2m_object_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/lwm2m_object_registry.py -------------------------------------------------------------------------------- /tools/markdown-toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/markdown-toc.py -------------------------------------------------------------------------------- /tools/provisioning-tool/configs/cert_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/provisioning-tool/configs/cert_info.json -------------------------------------------------------------------------------- /tools/provisioning-tool/configs/endpoint_cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/provisioning-tool/configs/endpoint_cfg -------------------------------------------------------------------------------- /tools/provisioning-tool/configs/lwm2m_server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/provisioning-tool/configs/lwm2m_server.json -------------------------------------------------------------------------------- /tools/provisioning-tool/factory_prov/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/provisioning-tool/factory_prov/__init__.py -------------------------------------------------------------------------------- /tools/provisioning-tool/factory_prov/cert_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/provisioning-tool/factory_prov/cert_gen.py -------------------------------------------------------------------------------- /tools/provisioning-tool/factory_prov/factory_prov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/provisioning-tool/factory_prov/factory_prov.py -------------------------------------------------------------------------------- /tools/provisioning-tool/ptool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/provisioning-tool/ptool.py -------------------------------------------------------------------------------- /tools/symlink-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/symlink-check.sh -------------------------------------------------------------------------------- /tools/test_duplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/test_duplicates.py -------------------------------------------------------------------------------- /tools/test_ghactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/test_ghactions.py -------------------------------------------------------------------------------- /tools/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/tools/utils.sh -------------------------------------------------------------------------------- /valgrind_test.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVSystem/Anjay/HEAD/valgrind_test.supp --------------------------------------------------------------------------------