Skip to content

Commit

Permalink
chore(deps): update deps/open62541 digest to 5c979cd
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 1, 2023
1 parent 887f693 commit 0ea35e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/open62541
Submodule open62541 updated 84 files
+3 −1 CMakeLists.txt
+4 −0 arch/eventloop_posix_eth.c
+1 −1 arch/eventloop_posix_udp.c
+2 −1 examples/pubsub/monitoring/server_pubsub_subscribe_custom_monitoring.c
+1 −1 examples/pubsub/pubsub_publish_encrypted.c
+2 −1 examples/pubsub/pubsub_publish_encrypted_tpm.c
+1 −1 examples/pubsub/pubsub_publish_encrypted_tpm_keystore.c
+1 −4 examples/pubsub/pubsub_subscribe_encrypted.c
+1 −4 examples/pubsub/pubsub_subscribe_encrypted_tpm.c
+1 −3 examples/pubsub/pubsub_subscribe_encrypted_tpm_keystore.c
+1 −1 examples/pubsub/pubsub_subscribe_standalone_dataset.c
+1 −1 examples/pubsub/server_pubsub_publisher_iop.c
+1 −1 examples/pubsub/server_pubsub_publisher_on_demand.c
+1 −1 examples/pubsub/server_pubsub_publisher_rt_level.c
+1 −1 examples/pubsub/server_pubsub_rt_field_information_model.c
+1 −1 examples/pubsub/server_pubsub_subscriber_rt_level.c
+3 −2 examples/pubsub/sks/pubsub_publish_encrypted_sks.c
+3 −3 examples/pubsub/sks/pubsub_subscribe_encrypted_sks.c
+1 −2 examples/pubsub/tutorial_pubsub_mqtt_publish.c
+3 −7 examples/pubsub/tutorial_pubsub_mqtt_subscribe.c
+1 −1 examples/pubsub/tutorial_pubsub_publish.c
+2 −1 examples/pubsub/tutorial_pubsub_subscribe.c
+10 −10 examples/pubsub_realtime/Readme_PubSub.txt
+1 −1 examples/pubsub_realtime/nodeset/pubsub_nodeset_rt_publisher.c
+2 −47 examples/pubsub_realtime/nodeset/pubsub_nodeset_rt_subscriber.c
+2 −44 examples/pubsub_realtime/pubsub_TSN_loopback.c
+3 −22 examples/pubsub_realtime/pubsub_TSN_loopback_single_thread.c
+3 −44 examples/pubsub_realtime/pubsub_TSN_publisher.c
+3 −24 examples/pubsub_realtime/pubsub_TSN_publisher_multiple_thread.c
+1 −1 examples/pubsub_realtime/pubsub_interrupt_publish.c
+1 −1 examples/pubsub_realtime/vxworks/pubsub_interrupt_publish_tsn.c
+26 −6 include/open62541/server_pubsub.h
+3 −2 plugins/crypto/mbedtls/securitypolicy_mbedtls_common.c
+1 −1 plugins/crypto/mbedtls/securitypolicy_mbedtls_common.h
+1 −1 plugins/crypto/mbedtls/ua_securitypolicy_aes128sha256rsaoaep.c
+946 −0 plugins/crypto/mbedtls/ua_securitypolicy_aes256sha256rsapss.c
+1 −1 plugins/crypto/mbedtls/ua_securitypolicy_basic256.c
+2 −2 plugins/crypto/mbedtls/ua_securitypolicy_basic256sha256.c
+132 −45 plugins/crypto/openssl/securitypolicy_openssl_common.c
+21 −0 plugins/crypto/openssl/securitypolicy_openssl_common.h
+692 −0 plugins/crypto/openssl/ua_openssl_aes256sha256rsapss.c
+3 −0 plugins/crypto/openssl/ua_pki_openssl.c
+6 −0 plugins/include/open62541/plugin/securitypolicy_default.h
+15 −0 plugins/include/open62541/server_config_default.h
+23 −6 plugins/ua_accesscontrol_default.c
+93 −11 plugins/ua_config_default.c
+19 −12 src/client/ua_client_connect.c
+63 −1 src/pubsub/ua_pubsub.h
+7 −1 src/pubsub/ua_pubsub_connection.c
+11 −4 src/pubsub/ua_pubsub_eventloop.c
+186 −5 src/pubsub/ua_pubsub_ns0.c
+41 −5 src/pubsub/ua_pubsub_reader.c
+81 −58 src/pubsub/ua_pubsub_readergroup.c
+121 −58 src/pubsub/ua_pubsub_writer.c
+209 −112 src/pubsub/ua_pubsub_writergroup.c
+2 −0 src/server/ua_server_config.c
+14 −0 src/server/ua_services_discovery.c
+14 −20 src/server/ua_services_session.c
+4 −0 tests/CMakeLists.txt
+1 −1 tests/client/check_client_async_connect.c
+287 −0 tests/encryption/check_encryption_aes256sha256rsapss.c
+1 −0 tests/fuzz/CMakeLists.txt
+9 −5 tests/pubsub/check_pubsub_encrypted_rt_levels.c
+3 −3 tests/pubsub/check_pubsub_encryption.c
+3 −3 tests/pubsub/check_pubsub_encryption_aes256.c
+135 −19 tests/pubsub/check_pubsub_get_state.c
+65 −9 tests/pubsub/check_pubsub_informationmodel.c
+8 −7 tests/pubsub/check_pubsub_mqtt.c
+5 −5 tests/pubsub/check_pubsub_multiple_subscribe_rt_levels.c
+11 −11 tests/pubsub/check_pubsub_publish.c
+1 −1 tests/pubsub/check_pubsub_publish_ethernet_etf.c
+1 −1 tests/pubsub/check_pubsub_publish_json.c
+39 −16 tests/pubsub/check_pubsub_publish_rt_levels.c
+17 −12 tests/pubsub/check_pubsub_publisherid.c
+1 −1 tests/pubsub/check_pubsub_publishspeed.c
+72 −34 tests/pubsub/check_pubsub_sks_client.c
+2 −2 tests/pubsub/check_pubsub_sks_keystorage.c
+1 −1 tests/pubsub/check_pubsub_sks_push.c
+83 −26 tests/pubsub/check_pubsub_subscribe.c
+13 −6 tests/pubsub/check_pubsub_subscribe_encrypted.c
+136 −54 tests/pubsub/check_pubsub_subscribe_msgrcvtimeout.c
+4 −5 tests/pubsub/check_pubsub_subscribe_rt_levels.c
+5 −24 tests/pubsub/check_pubsub_udp_unicast.c
+48 −6 tools/schema/Opc.Ua.NodeSet2.PubSubMinimal.xml

0 comments on commit 0ea35e8

Please sign in to comment.