├── .dockerignore ├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── Changelog.txt ├── Dockerfile ├── README.md ├── config.h ├── docker-compose.yml ├── docker-initd.sh ├── etc ├── ualds.conf └── ualds.ini ├── fetch_openssl.bat ├── fetch_openssl_win64.bat ├── findservers.c ├── findserversonnetwork.c ├── findserversonnetwork.h ├── getendpoints.c ├── linux ├── daemon.c ├── daemon.h ├── log.c ├── log.h ├── platform.c └── platform.h ├── main.c ├── mdns ├── CMakeLists.txt ├── CommonServices.h ├── DebugServices.c ├── DebugServices.h ├── GenLinkedList.c ├── GenLinkedList.h ├── WinVersRes.h ├── dll.rc ├── dllmain.c ├── dns_sd.h ├── dnssd.def ├── dnssd.rc ├── dnssd_clientlib.c ├── dnssd_clientstub.c ├── dnssd_ipc.c ├── dnssd_ipc.h ├── mDNSDebug.h ├── mDNSEmbeddedAPI.h └── resource.h ├── registerserver.c ├── registerserver2.c ├── settings.c ├── settings.h ├── settingstests.c ├── stack ├── CMakeLists.txt ├── Changelog.txt ├── README ├── README.md ├── Stack │ ├── AnsiCStack_VS2013.vcxproj │ ├── AnsiCStack_VS2013.vcxproj.filters │ ├── CMakeLists.txt │ ├── core │ │ ├── opcua.h │ │ ├── opcua_buffer.c │ │ ├── opcua_buffer.h │ │ ├── opcua_config.h │ │ ├── opcua_core.c │ │ ├── opcua_core.h │ │ ├── opcua_cryptofactory.h │ │ ├── opcua_datetime.c │ │ ├── opcua_datetime.h │ │ ├── opcua_errorhandling.h │ │ ├── opcua_exclusions.h │ │ ├── opcua_guid.c │ │ ├── opcua_guid.h │ │ ├── opcua_list.c │ │ ├── opcua_list.h │ │ ├── opcua_memory.c │ │ ├── opcua_memory.h │ │ ├── opcua_memorystream.c │ │ ├── opcua_memorystream.h │ │ ├── opcua_mutex.h │ │ ├── opcua_pkifactory.h │ │ ├── opcua_proxystub.c │ │ ├── opcua_proxystub.h │ │ ├── opcua_semaphore.h │ │ ├── opcua_socket.h │ │ ├── opcua_stackstatuscodes.h │ │ ├── opcua_statuscodes.h │ │ ├── opcua_string.c │ │ ├── opcua_string.h │ │ ├── opcua_thread.c │ │ ├── opcua_thread.h │ │ ├── opcua_timer.c │ │ ├── opcua_timer.h │ │ ├── opcua_trace.c │ │ ├── opcua_trace.h │ │ ├── opcua_utilities.c │ │ └── opcua_utilities.h │ ├── linux_gcc.mak │ ├── platforms │ │ ├── linux │ │ │ ├── opcua_p_binary.c │ │ │ ├── opcua_p_binary.h │ │ │ ├── opcua_p_crypto.h │ │ │ ├── opcua_p_cryptofactory.c │ │ │ ├── opcua_p_cryptofactory.h │ │ │ ├── opcua_p_datetime.c │ │ │ ├── opcua_p_datetime.h │ │ │ ├── opcua_p_guid.c │ │ │ ├── opcua_p_guid.h │ │ │ ├── opcua_p_interface.c │ │ │ ├── opcua_p_interface.h │ │ │ ├── opcua_p_internal.c │ │ │ ├── opcua_p_internal.h │ │ │ ├── opcua_p_memory.c │ │ │ ├── opcua_p_memory.h │ │ │ ├── opcua_p_mutex.c │ │ │ ├── opcua_p_mutex.h │ │ │ ├── opcua_p_openssl.c │ │ │ ├── opcua_p_openssl.h │ │ │ ├── opcua_p_openssl_aes.c │ │ │ ├── opcua_p_openssl_hmac_sha.c │ │ │ ├── opcua_p_openssl_nosecurity.c │ │ │ ├── opcua_p_openssl_pki.c │ │ │ ├── opcua_p_openssl_pki.h │ │ │ ├── opcua_p_openssl_pki_nosecurity.c │ │ │ ├── opcua_p_openssl_random.c │ │ │ ├── opcua_p_openssl_rsa.c │ │ │ ├── opcua_p_openssl_sha.c │ │ │ ├── opcua_p_openssl_x509.c │ │ │ ├── opcua_p_pki.h │ │ │ ├── opcua_p_pkifactory.c │ │ │ ├── opcua_p_pkifactory.h │ │ │ ├── opcua_p_semaphore.c │ │ │ ├── opcua_p_semaphore.h │ │ │ ├── opcua_p_socket.c │ │ │ ├── opcua_p_socket.h │ │ │ ├── opcua_p_socket_interface.c │ │ │ ├── opcua_p_socket_interface.h │ │ │ ├── opcua_p_socket_internal.c │ │ │ ├── opcua_p_socket_internal.h │ │ │ ├── opcua_p_socket_ssl.c │ │ │ ├── opcua_p_socket_ssl.h │ │ │ ├── opcua_p_socket_udp.c │ │ │ ├── opcua_p_socket_udp.h │ │ │ ├── opcua_p_string.c │ │ │ ├── opcua_p_string.h │ │ │ ├── opcua_p_thread.c │ │ │ ├── opcua_p_thread.h │ │ │ ├── opcua_p_timer.c │ │ │ ├── opcua_p_timer.h │ │ │ ├── opcua_p_trace.c │ │ │ ├── opcua_p_trace.h │ │ │ ├── opcua_p_types.h │ │ │ ├── opcua_p_utilities.c │ │ │ ├── opcua_p_utilities.h │ │ │ └── opcua_platformdefs.h │ │ └── win32 │ │ │ ├── opcua_p_binary.c │ │ │ ├── opcua_p_binary.h │ │ │ ├── opcua_p_crypto.h │ │ │ ├── opcua_p_cryptofactory.c │ │ │ ├── opcua_p_cryptofactory.h │ │ │ ├── opcua_p_datetime.c │ │ │ ├── opcua_p_datetime.h │ │ │ ├── opcua_p_guid.c │ │ │ ├── opcua_p_guid.h │ │ │ ├── opcua_p_interface.c │ │ │ ├── opcua_p_interface.h │ │ │ ├── opcua_p_internal.c │ │ │ ├── opcua_p_internal.h │ │ │ ├── opcua_p_memory.c │ │ │ ├── opcua_p_memory.h │ │ │ ├── opcua_p_mutex.c │ │ │ ├── opcua_p_mutex.h │ │ │ ├── opcua_p_openssl.c │ │ │ ├── opcua_p_openssl.h │ │ │ ├── opcua_p_openssl_aes.c │ │ │ ├── opcua_p_openssl_hmac_sha.c │ │ │ ├── opcua_p_openssl_nosecurity.c │ │ │ ├── opcua_p_openssl_pki.c │ │ │ ├── opcua_p_openssl_pki.h │ │ │ ├── opcua_p_openssl_pki_nosecurity.c │ │ │ ├── opcua_p_openssl_random.c │ │ │ ├── opcua_p_openssl_rsa.c │ │ │ ├── opcua_p_openssl_sha.c │ │ │ ├── opcua_p_openssl_x509.c │ │ │ ├── opcua_p_pki.h │ │ │ ├── opcua_p_pkifactory.c │ │ │ ├── opcua_p_pkifactory.h │ │ │ ├── opcua_p_semaphore.c │ │ │ ├── opcua_p_semaphore.h │ │ │ ├── opcua_p_socket.c │ │ │ ├── opcua_p_socket.h │ │ │ ├── opcua_p_socket_interface.c │ │ │ ├── opcua_p_socket_interface.h │ │ │ ├── opcua_p_socket_internal.c │ │ │ ├── opcua_p_socket_internal.h │ │ │ ├── opcua_p_socket_ssl.c │ │ │ ├── opcua_p_socket_ssl.h │ │ │ ├── opcua_p_socket_udp.c │ │ │ ├── opcua_p_socket_udp.h │ │ │ ├── opcua_p_string.c │ │ │ ├── opcua_p_string.h │ │ │ ├── opcua_p_thread.c │ │ │ ├── opcua_p_thread.h │ │ │ ├── opcua_p_timer.c │ │ │ ├── opcua_p_timer.h │ │ │ ├── opcua_p_trace.c │ │ │ ├── opcua_p_trace.h │ │ │ ├── opcua_p_types.h │ │ │ ├── opcua_p_utilities.c │ │ │ ├── opcua_p_utilities.h │ │ │ ├── opcua_p_win32_pki.c │ │ │ ├── opcua_p_win32_pki.h │ │ │ └── opcua_platformdefs.h │ ├── proxystub │ │ └── serverstub │ │ │ ├── opcua_endpoint.c │ │ │ ├── opcua_endpoint.h │ │ │ ├── opcua_endpoint_internal.h │ │ │ ├── opcua_serverapi.c │ │ │ ├── opcua_serverapi.h │ │ │ ├── opcua_serverstub.h │ │ │ ├── opcua_servicetable.c │ │ │ └── opcua_servicetable.h │ ├── securechannel │ │ ├── opcua_securechannel_types.h │ │ ├── opcua_secureconnection.c │ │ ├── opcua_secureconnection.h │ │ ├── opcua_securelistener.c │ │ ├── opcua_securelistener.h │ │ ├── opcua_securelistener_channelmanager.c │ │ ├── opcua_securelistener_channelmanager.h │ │ ├── opcua_securelistener_policymanager.c │ │ ├── opcua_securelistener_policymanager.h │ │ ├── opcua_securestream.c │ │ ├── opcua_securestream.h │ │ ├── opcua_soapsecurechannel.c │ │ ├── opcua_soapsecurechannel.h │ │ ├── opcua_tcpsecurechannel.c │ │ └── opcua_tcpsecurechannel.h │ ├── stackcore │ │ ├── opcua_attributes.h │ │ ├── opcua_binarydecoder.c │ │ ├── opcua_binaryencoder.c │ │ ├── opcua_binaryencoder.h │ │ ├── opcua_binaryencoderinternal.h │ │ ├── opcua_browsenames.h │ │ ├── opcua_builtintypes.c │ │ ├── opcua_builtintypes.h │ │ ├── opcua_connection.c │ │ ├── opcua_connection.h │ │ ├── opcua_credentials.h │ │ ├── opcua_crypto.c │ │ ├── opcua_crypto.h │ │ ├── opcua_decoder.c │ │ ├── opcua_decoder.h │ │ ├── opcua_encodeableobject.c │ │ ├── opcua_encodeableobject.h │ │ ├── opcua_encoder.c │ │ ├── opcua_encoder.h │ │ ├── opcua_enumeratedtype.c │ │ ├── opcua_enumeratedtype.h │ │ ├── opcua_extensionobject.c │ │ ├── opcua_extensionobject.h │ │ ├── opcua_identifiers.h │ │ ├── opcua_listener.c │ │ ├── opcua_listener.h │ │ ├── opcua_messagecontext.c │ │ ├── opcua_messagecontext.h │ │ ├── opcua_pki.c │ │ ├── opcua_pki.h │ │ ├── opcua_securechannel.c │ │ ├── opcua_securechannel.h │ │ ├── opcua_stream.c │ │ ├── opcua_stream.h │ │ ├── opcua_stringtable.c │ │ ├── opcua_stringtable.h │ │ ├── opcua_types.c │ │ └── opcua_types.h │ ├── transport │ │ ├── https │ │ │ ├── opcua_https_internal.c │ │ │ ├── opcua_https_internal.h │ │ │ ├── opcua_httpsconnection.c │ │ │ ├── opcua_httpsconnection.h │ │ │ ├── opcua_httpslistener.c │ │ │ ├── opcua_httpslistener.h │ │ │ ├── opcua_httpslistener_connectionmanager.c │ │ │ ├── opcua_httpslistener_connectionmanager.h │ │ │ ├── opcua_httpsstream.c │ │ │ └── opcua_httpsstream.h │ │ └── tcp │ │ │ ├── opcua_tcpconnection.c │ │ │ ├── opcua_tcpconnection.h │ │ │ ├── opcua_tcplistener.c │ │ │ ├── opcua_tcplistener.h │ │ │ ├── opcua_tcplistener_connectionmanager.c │ │ │ ├── opcua_tcplistener_connectionmanager.h │ │ │ ├── opcua_tcpstream.c │ │ │ └── opcua_tcpstream.h │ └── win32_msc.mak ├── build_linux.sh ├── build_win32.bat ├── build_win64.bat ├── linux_gcc.mak └── linux_gcc_rules.mak ├── strlcat.c ├── strlcpy.c ├── tlds-alpha-by-domain.h ├── ualds.c ├── ualds.h ├── utils.c ├── utils.h ├── win32 ├── certstore.c ├── certstore.h ├── daemon.c ├── daemon.h ├── getopt.c ├── getopt.h ├── log.c ├── log.h ├── platform.c ├── platform.h ├── service.c ├── service.h ├── ualds.ico ├── version.rc ├── win_version.h └── winmain.c ├── zeroconf.c └── zeroconf.h /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/Changelog.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/README.md -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/config.h -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-initd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/docker-initd.sh -------------------------------------------------------------------------------- /etc/ualds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/etc/ualds.conf -------------------------------------------------------------------------------- /etc/ualds.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/etc/ualds.ini -------------------------------------------------------------------------------- /fetch_openssl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/fetch_openssl.bat -------------------------------------------------------------------------------- /fetch_openssl_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/fetch_openssl_win64.bat -------------------------------------------------------------------------------- /findservers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/findservers.c -------------------------------------------------------------------------------- /findserversonnetwork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/findserversonnetwork.c -------------------------------------------------------------------------------- /findserversonnetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/findserversonnetwork.h -------------------------------------------------------------------------------- /getendpoints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/getendpoints.c -------------------------------------------------------------------------------- /linux/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/linux/daemon.c -------------------------------------------------------------------------------- /linux/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/linux/daemon.h -------------------------------------------------------------------------------- /linux/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/linux/log.c -------------------------------------------------------------------------------- /linux/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/linux/log.h -------------------------------------------------------------------------------- /linux/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/linux/platform.c -------------------------------------------------------------------------------- /linux/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/linux/platform.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/main.c -------------------------------------------------------------------------------- /mdns/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/CMakeLists.txt -------------------------------------------------------------------------------- /mdns/CommonServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/CommonServices.h -------------------------------------------------------------------------------- /mdns/DebugServices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/DebugServices.c -------------------------------------------------------------------------------- /mdns/DebugServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/DebugServices.h -------------------------------------------------------------------------------- /mdns/GenLinkedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/GenLinkedList.c -------------------------------------------------------------------------------- /mdns/GenLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/GenLinkedList.h -------------------------------------------------------------------------------- /mdns/WinVersRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/WinVersRes.h -------------------------------------------------------------------------------- /mdns/dll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/dll.rc -------------------------------------------------------------------------------- /mdns/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/dllmain.c -------------------------------------------------------------------------------- /mdns/dns_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/dns_sd.h -------------------------------------------------------------------------------- /mdns/dnssd.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/dnssd.def -------------------------------------------------------------------------------- /mdns/dnssd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/dnssd.rc -------------------------------------------------------------------------------- /mdns/dnssd_clientlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/dnssd_clientlib.c -------------------------------------------------------------------------------- /mdns/dnssd_clientstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/dnssd_clientstub.c -------------------------------------------------------------------------------- /mdns/dnssd_ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/dnssd_ipc.c -------------------------------------------------------------------------------- /mdns/dnssd_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/dnssd_ipc.h -------------------------------------------------------------------------------- /mdns/mDNSDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/mDNSDebug.h -------------------------------------------------------------------------------- /mdns/mDNSEmbeddedAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/mDNSEmbeddedAPI.h -------------------------------------------------------------------------------- /mdns/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/mdns/resource.h -------------------------------------------------------------------------------- /registerserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/registerserver.c -------------------------------------------------------------------------------- /registerserver2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/registerserver2.c -------------------------------------------------------------------------------- /settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/settings.c -------------------------------------------------------------------------------- /settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/settings.h -------------------------------------------------------------------------------- /settingstests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/settingstests.c -------------------------------------------------------------------------------- /stack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/CMakeLists.txt -------------------------------------------------------------------------------- /stack/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Changelog.txt -------------------------------------------------------------------------------- /stack/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/README -------------------------------------------------------------------------------- /stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/README.md -------------------------------------------------------------------------------- /stack/Stack/AnsiCStack_VS2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/AnsiCStack_VS2013.vcxproj -------------------------------------------------------------------------------- /stack/Stack/AnsiCStack_VS2013.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/AnsiCStack_VS2013.vcxproj.filters -------------------------------------------------------------------------------- /stack/Stack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/CMakeLists.txt -------------------------------------------------------------------------------- /stack/Stack/core/opcua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_buffer.c -------------------------------------------------------------------------------- /stack/Stack/core/opcua_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_buffer.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_config.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_core.c -------------------------------------------------------------------------------- /stack/Stack/core/opcua_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_core.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_cryptofactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_cryptofactory.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_datetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_datetime.c -------------------------------------------------------------------------------- /stack/Stack/core/opcua_datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_datetime.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_errorhandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_errorhandling.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_exclusions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_exclusions.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_guid.c -------------------------------------------------------------------------------- /stack/Stack/core/opcua_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_guid.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_list.c -------------------------------------------------------------------------------- /stack/Stack/core/opcua_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_list.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_memory.c -------------------------------------------------------------------------------- /stack/Stack/core/opcua_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_memory.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_memorystream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_memorystream.c -------------------------------------------------------------------------------- /stack/Stack/core/opcua_memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_memorystream.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_mutex.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_pkifactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_pkifactory.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_proxystub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_proxystub.c -------------------------------------------------------------------------------- /stack/Stack/core/opcua_proxystub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_proxystub.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_semaphore.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_socket.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_stackstatuscodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_stackstatuscodes.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_statuscodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_statuscodes.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_string.c -------------------------------------------------------------------------------- /stack/Stack/core/opcua_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_string.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_thread.c -------------------------------------------------------------------------------- /stack/Stack/core/opcua_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_thread.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_timer.c -------------------------------------------------------------------------------- /stack/Stack/core/opcua_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_timer.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_trace.c -------------------------------------------------------------------------------- /stack/Stack/core/opcua_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_trace.h -------------------------------------------------------------------------------- /stack/Stack/core/opcua_utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_utilities.c -------------------------------------------------------------------------------- /stack/Stack/core/opcua_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/core/opcua_utilities.h -------------------------------------------------------------------------------- /stack/Stack/linux_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/linux_gcc.mak -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_binary.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_binary.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_crypto.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_cryptofactory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_cryptofactory.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_cryptofactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_cryptofactory.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_datetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_datetime.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_datetime.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_guid.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_guid.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_interface.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_interface.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_internal.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_internal.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_memory.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_memory.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_mutex.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_mutex.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_openssl.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_openssl.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_openssl_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_openssl_aes.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_openssl_hmac_sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_openssl_hmac_sha.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_openssl_nosecurity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_openssl_nosecurity.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_openssl_pki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_openssl_pki.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_openssl_pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_openssl_pki.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_openssl_pki_nosecurity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_openssl_pki_nosecurity.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_openssl_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_openssl_random.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_openssl_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_openssl_rsa.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_openssl_sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_openssl_sha.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_openssl_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_openssl_x509.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_pki.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_pkifactory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_pkifactory.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_pkifactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_pkifactory.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_semaphore.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_semaphore.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_socket.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_socket.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_socket_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_socket_interface.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_socket_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_socket_interface.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_socket_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_socket_internal.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_socket_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_socket_internal.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_socket_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_socket_ssl.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_socket_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_socket_ssl.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_socket_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_socket_udp.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_socket_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_socket_udp.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_string.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_string.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_thread.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_thread.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_timer.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_timer.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_trace.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_trace.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_types.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_utilities.c -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_p_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_p_utilities.h -------------------------------------------------------------------------------- /stack/Stack/platforms/linux/opcua_platformdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/linux/opcua_platformdefs.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_binary.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_binary.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_crypto.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_cryptofactory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_cryptofactory.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_cryptofactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_cryptofactory.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_datetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_datetime.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_datetime.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_guid.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_guid.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_interface.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_interface.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_internal.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_internal.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_memory.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_memory.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_mutex.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_mutex.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_openssl.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_openssl.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_openssl_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_openssl_aes.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_openssl_hmac_sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_openssl_hmac_sha.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_openssl_nosecurity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_openssl_nosecurity.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_openssl_pki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_openssl_pki.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_openssl_pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_openssl_pki.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_openssl_pki_nosecurity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_openssl_pki_nosecurity.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_openssl_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_openssl_random.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_openssl_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_openssl_rsa.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_openssl_sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_openssl_sha.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_openssl_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_openssl_x509.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_pki.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_pkifactory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_pkifactory.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_pkifactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_pkifactory.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_semaphore.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_semaphore.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_socket.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_socket.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_socket_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_socket_interface.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_socket_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_socket_interface.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_socket_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_socket_internal.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_socket_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_socket_internal.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_socket_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_socket_ssl.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_socket_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_socket_ssl.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_socket_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_socket_udp.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_socket_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_socket_udp.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_string.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_string.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_thread.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_thread.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_timer.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_timer.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_trace.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_trace.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_types.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_utilities.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_utilities.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_win32_pki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_win32_pki.c -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_p_win32_pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_p_win32_pki.h -------------------------------------------------------------------------------- /stack/Stack/platforms/win32/opcua_platformdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/platforms/win32/opcua_platformdefs.h -------------------------------------------------------------------------------- /stack/Stack/proxystub/serverstub/opcua_endpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/proxystub/serverstub/opcua_endpoint.c -------------------------------------------------------------------------------- /stack/Stack/proxystub/serverstub/opcua_endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/proxystub/serverstub/opcua_endpoint.h -------------------------------------------------------------------------------- /stack/Stack/proxystub/serverstub/opcua_endpoint_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/proxystub/serverstub/opcua_endpoint_internal.h -------------------------------------------------------------------------------- /stack/Stack/proxystub/serverstub/opcua_serverapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/proxystub/serverstub/opcua_serverapi.c -------------------------------------------------------------------------------- /stack/Stack/proxystub/serverstub/opcua_serverapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/proxystub/serverstub/opcua_serverapi.h -------------------------------------------------------------------------------- /stack/Stack/proxystub/serverstub/opcua_serverstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/proxystub/serverstub/opcua_serverstub.h -------------------------------------------------------------------------------- /stack/Stack/proxystub/serverstub/opcua_servicetable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/proxystub/serverstub/opcua_servicetable.c -------------------------------------------------------------------------------- /stack/Stack/proxystub/serverstub/opcua_servicetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/proxystub/serverstub/opcua_servicetable.h -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_securechannel_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_securechannel_types.h -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_secureconnection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_secureconnection.c -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_secureconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_secureconnection.h -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_securelistener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_securelistener.c -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_securelistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_securelistener.h -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_securelistener_channelmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_securelistener_channelmanager.c -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_securelistener_channelmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_securelistener_channelmanager.h -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_securelistener_policymanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_securelistener_policymanager.c -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_securelistener_policymanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_securelistener_policymanager.h -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_securestream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_securestream.c -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_securestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_securestream.h -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_soapsecurechannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_soapsecurechannel.c -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_soapsecurechannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_soapsecurechannel.h -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_tcpsecurechannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_tcpsecurechannel.c -------------------------------------------------------------------------------- /stack/Stack/securechannel/opcua_tcpsecurechannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/securechannel/opcua_tcpsecurechannel.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_attributes.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_binarydecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_binarydecoder.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_binaryencoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_binaryencoder.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_binaryencoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_binaryencoder.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_binaryencoderinternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_binaryencoderinternal.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_browsenames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_browsenames.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_builtintypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_builtintypes.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_builtintypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_builtintypes.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_connection.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_connection.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_credentials.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_crypto.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_crypto.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_decoder.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_decoder.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_encodeableobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_encodeableobject.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_encodeableobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_encodeableobject.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_encoder.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_encoder.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_enumeratedtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_enumeratedtype.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_enumeratedtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_enumeratedtype.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_extensionobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_extensionobject.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_extensionobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_extensionobject.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_identifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_identifiers.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_listener.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_listener.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_messagecontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_messagecontext.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_messagecontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_messagecontext.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_pki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_pki.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_pki.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_securechannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_securechannel.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_securechannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_securechannel.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_stream.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_stream.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_stringtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_stringtable.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_stringtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_stringtable.h -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_types.c -------------------------------------------------------------------------------- /stack/Stack/stackcore/opcua_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/stackcore/opcua_types.h -------------------------------------------------------------------------------- /stack/Stack/transport/https/opcua_https_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/https/opcua_https_internal.c -------------------------------------------------------------------------------- /stack/Stack/transport/https/opcua_https_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/https/opcua_https_internal.h -------------------------------------------------------------------------------- /stack/Stack/transport/https/opcua_httpsconnection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/https/opcua_httpsconnection.c -------------------------------------------------------------------------------- /stack/Stack/transport/https/opcua_httpsconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/https/opcua_httpsconnection.h -------------------------------------------------------------------------------- /stack/Stack/transport/https/opcua_httpslistener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/https/opcua_httpslistener.c -------------------------------------------------------------------------------- /stack/Stack/transport/https/opcua_httpslistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/https/opcua_httpslistener.h -------------------------------------------------------------------------------- /stack/Stack/transport/https/opcua_httpslistener_connectionmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/https/opcua_httpslistener_connectionmanager.c -------------------------------------------------------------------------------- /stack/Stack/transport/https/opcua_httpslistener_connectionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/https/opcua_httpslistener_connectionmanager.h -------------------------------------------------------------------------------- /stack/Stack/transport/https/opcua_httpsstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/https/opcua_httpsstream.c -------------------------------------------------------------------------------- /stack/Stack/transport/https/opcua_httpsstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/https/opcua_httpsstream.h -------------------------------------------------------------------------------- /stack/Stack/transport/tcp/opcua_tcpconnection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/tcp/opcua_tcpconnection.c -------------------------------------------------------------------------------- /stack/Stack/transport/tcp/opcua_tcpconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/tcp/opcua_tcpconnection.h -------------------------------------------------------------------------------- /stack/Stack/transport/tcp/opcua_tcplistener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/tcp/opcua_tcplistener.c -------------------------------------------------------------------------------- /stack/Stack/transport/tcp/opcua_tcplistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/tcp/opcua_tcplistener.h -------------------------------------------------------------------------------- /stack/Stack/transport/tcp/opcua_tcplistener_connectionmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/tcp/opcua_tcplistener_connectionmanager.c -------------------------------------------------------------------------------- /stack/Stack/transport/tcp/opcua_tcplistener_connectionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/tcp/opcua_tcplistener_connectionmanager.h -------------------------------------------------------------------------------- /stack/Stack/transport/tcp/opcua_tcpstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/tcp/opcua_tcpstream.c -------------------------------------------------------------------------------- /stack/Stack/transport/tcp/opcua_tcpstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/transport/tcp/opcua_tcpstream.h -------------------------------------------------------------------------------- /stack/Stack/win32_msc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/Stack/win32_msc.mak -------------------------------------------------------------------------------- /stack/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/build_linux.sh -------------------------------------------------------------------------------- /stack/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/build_win32.bat -------------------------------------------------------------------------------- /stack/build_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/build_win64.bat -------------------------------------------------------------------------------- /stack/linux_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/linux_gcc.mak -------------------------------------------------------------------------------- /stack/linux_gcc_rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/stack/linux_gcc_rules.mak -------------------------------------------------------------------------------- /strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/strlcat.c -------------------------------------------------------------------------------- /strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/strlcpy.c -------------------------------------------------------------------------------- /tlds-alpha-by-domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/tlds-alpha-by-domain.h -------------------------------------------------------------------------------- /ualds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/ualds.c -------------------------------------------------------------------------------- /ualds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/ualds.h -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/utils.h -------------------------------------------------------------------------------- /win32/certstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/certstore.c -------------------------------------------------------------------------------- /win32/certstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/certstore.h -------------------------------------------------------------------------------- /win32/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/daemon.c -------------------------------------------------------------------------------- /win32/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/daemon.h -------------------------------------------------------------------------------- /win32/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/getopt.c -------------------------------------------------------------------------------- /win32/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/getopt.h -------------------------------------------------------------------------------- /win32/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/log.c -------------------------------------------------------------------------------- /win32/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/log.h -------------------------------------------------------------------------------- /win32/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/platform.c -------------------------------------------------------------------------------- /win32/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/platform.h -------------------------------------------------------------------------------- /win32/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/service.c -------------------------------------------------------------------------------- /win32/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/service.h -------------------------------------------------------------------------------- /win32/ualds.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/ualds.ico -------------------------------------------------------------------------------- /win32/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/version.rc -------------------------------------------------------------------------------- /win32/win_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/win_version.h -------------------------------------------------------------------------------- /win32/winmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/win32/winmain.c -------------------------------------------------------------------------------- /zeroconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/zeroconf.c -------------------------------------------------------------------------------- /zeroconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-LDS/HEAD/zeroconf.h --------------------------------------------------------------------------------