Skip to content

Commit

Permalink
chore(deps): update deps/open62541 digest to 0b1d72f
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jun 16, 2023
1 parent 4b5b804 commit 4f90e9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/open62541
Submodule open62541 updated 84 files
+3 −0 .github/workflows/build_linux.yml
+49 −6 CMakeLists.txt
+38 −9 arch/eventloop_mqtt.c
+4 −0 arch/eventloop_posix.c
+56 −104 arch/eventloop_posix_udp.c
+1 −1 deps/nodesetLoader
+26 −0 doc/nodeset_compiler.rst
+20 −8 examples/CMakeLists.txt
+6 −4 examples/nodeset/CMakeLists.txt
+22 −10 examples/nodeset/server_nodeset_plcopen.c
+22 −10 examples/nodeset/server_nodeset_powerlink.c
+3 −1 examples/nodeset/server_testnodeset.c
+0 −6 examples/pubsub/monitoring/server_pubsub_subscribe_custom_monitoring.c
+1 −8 examples/pubsub/pubsub_subscribe_standalone_dataset.c
+0 −210 examples/pubsub/server_pubsub_publisher_rt_level_raw.c
+3 −10 examples/pubsub/tutorial_pubsub_mqtt_publish.c
+3 −7 examples/pubsub/tutorial_pubsub_mqtt_subscribe.c
+0 −357 examples/pubsub/tutorial_pubsub_publish_raw.c
+0 −400 examples/pubsub/tutorial_pubsub_subscribe_raw.c
+134 −21 include/open62541/client.h
+3 −0 include/open62541/config.h.in
+0 −4 plugins/include/open62541/client_config_default.h
+5 −2 plugins/include/open62541/plugin/accesscontrol_default.h
+8 −8 plugins/mqtt/ua_mqtt-c_adapter.c
+50 −36 plugins/ua_accesscontrol_default.c
+8 −16 plugins/ua_config_default.c
+37 −10 src/client/ua_client.c
+334 −227 src/client/ua_client_connect.c
+1 −1 src/client/ua_client_highlevel.c
+7 −9 src/client/ua_client_internal.h
+87 −37 src/pubsub/ua_pubsub.h
+0 −78 src/pubsub/ua_pubsub_config.c
+191 −126 src/pubsub/ua_pubsub_connection.c
+54 −0 src/pubsub/ua_pubsub_dataset.c
+1,007 −0 src/pubsub/ua_pubsub_eventloop.c
+31 −37 src/pubsub/ua_pubsub_keystorage.c
+11 −1 src/pubsub/ua_pubsub_manager.c
+36 −42 src/pubsub/ua_pubsub_ns0.c
+43 −317 src/pubsub/ua_pubsub_reader.c
+78 −156 src/pubsub/ua_pubsub_readergroup.c
+6 −1 src/pubsub/ua_pubsub_securitygroup.c
+109 −116 src/pubsub/ua_pubsub_writergroup.c
+15 −33 src/server/ua_server.c
+0 −3 src/server/ua_server_internal.h
+2 −2 src/ua_util_internal.h
+19 −19 tests/CMakeLists.txt
+2 −1 tests/check_eventloop_mqtt.c
+488 −0 tests/client/check_activateSession.c
+182 −0 tests/client/check_activateSessionAsync.c
+2 −3 tests/client/check_client_async_connect.c
+277 −0 tests/client/check_subscriptionWithactivateSession.c
+8 −0 tests/fuzz/CMakeLists.txt
+29 −47 tests/nodeset-compiler/CMakeLists.txt
+5 −0 tests/nodeset-loader/check_nodeset_loader_compare_di.c
+4 −7 tests/pubsub/check_pubsub_connection_mqtt.c
+2 −3 tests/pubsub/check_pubsub_connection_udp.c
+35 −70 tests/pubsub/check_pubsub_encrypted_rt_levels.c
+1 −4 tests/pubsub/check_pubsub_get_state.c
+1 −1 tests/pubsub/check_pubsub_informationmodel_methods.c
+1 −4 tests/pubsub/check_pubsub_mqtt.c
+15 −84 tests/pubsub/check_pubsub_multiple_subscribe_rt_levels.c
+4 −14 tests/pubsub/check_pubsub_publish_ethernet.c
+2 −8 tests/pubsub/check_pubsub_publish_ethernet_etf.c
+15 −125 tests/pubsub/check_pubsub_publish_rt_levels.c
+14 −157 tests/pubsub/check_pubsub_publish_uadp.c
+102 −103 tests/pubsub/check_pubsub_publisherid.c
+65 −34 tests/pubsub/check_pubsub_sks_client.c
+11 −8 tests/pubsub/check_pubsub_sks_pull.c
+31 −101 tests/pubsub/check_pubsub_subscribe.c
+2 −0 tests/pubsub/check_pubsub_subscribe_encrypted.c
+612 −589 tests/pubsub/check_pubsub_subscribe_msgrcvtimeout.c
+19 −66 tests/pubsub/check_pubsub_subscribe_rt_levels.c
+20 −5 tools/ci.sh
+101 −34 tools/cmake/macros_public.cmake
+56 −0 tools/generate_bsd.py
+11 −0 tools/nodeset_compiler/backend_open62541.py
+4 −4 tools/nodeset_compiler/backend_open62541_typedefinitions.py
+4 −0 tools/nodeset_compiler/datatypes.py
+25 −4 tools/nodeset_compiler/nodeset_compiler.py
+1 −8 tools/nodeset_compiler/type_parser.py
+227 −0 tools/nodeset_injector/CMakeLists.txt
+68 −0 tools/nodeset_injector/generate_nodesetinjector.py
+148 −0 tools/nodeset_injector/generate_nodesetinjector_content.py
+1 −0 tools/schema/datatypes_pubsub.txt

0 comments on commit 4f90e9b

Please sign in to comment.