首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

open62541库文件

操作系统 68.04MB 15 需要积分: 1
立即下载

资源介绍:

open62541在ubuntu20.04已编译好的源码,编译好的库文件、头文件放在install目录中
# open62541 open62541 () is an open source and free implementation of OPC UA (OPC Unified Architecture) written in the common subset of the C99 and C++98 languages. The library is usable with all major compilers and provides the necessary tools to implement dedicated OPC UA clients and servers, or to integrate OPC UA-based communication into existing applications. open62541 library is platform independent. All platform-specific functionality is implemented via exchangeable plugins. Plugin implementations are provided for the major operating systems. open62541 is licensed under the Mozilla Public License v2.0 (MPLv2). This allows the open62541 library to be combined and distributed with any proprietary software. Only changes to the open62541 library itself need to be licensed under the MPLv2 when copied and distributed. The plugins, as well as the server and client examples are in the public domain (CC0 license). They can be reused under any license and changes do not have to be published. The library is [available](https://github.com/open62541/open62541/releases) in standard source and binary form. In addition, the single-file source distribution merges the entire library into a single .c and .h file that can be easily added to existing projects. Example server and client implementations can be found in the [/examples](examples/) directory or further down on this page. ## Project Information Build Status: [![Build Status](https://img.shields.io/travis/open62541/open62541/master.svg)](https://travis-ci.org/open62541/open62541) [![Build Status](https://dev.azure.com/open62541/open62541/_apis/build/status/open62541.open62541?branchName=master)](https://dev.azure.com/open62541/open62541/_build/latest?definitionId=1&branchName=master) [![Build Status](https://ci.appveyor.com/api/projects/status/github/open62541/open62541?branch=master&svg=true)](https://ci.appveyor.com/project/open62541/open62541/branch/master) [![Build Status](https://img.shields.io/docker/cloud/build/open62541/open62541)](https://cloud.docker.com/u/open62541/repository/docker/open62541/open62541) Code Quality: [![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/open62541.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:open62541) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/68ad08e897624c77a64fc2be66ca7b50)](https://www.codacy.com/app/open62541/open62541?utm_source=github.com&utm_medium=referral&utm_content=open62541/open62541&utm_campaign=Badge_Grade) [![Total Alerts](https://img.shields.io/lgtm/alerts/g/open62541/open62541.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/open62541/open62541/alerts) [![Coverage Status](https://img.shields.io/coveralls/open62541/open62541/master.svg)](https://coveralls.io/r/open62541/open62541?branch=master) [![codecov](https://codecov.io/gh/open62541/open62541/branch/master/graph/badge.svg)](https://codecov.io/gh/open62541/open62541) [![Code Quality: Cpp](https://img.shields.io/lgtm/grade/cpp/g/open62541/open62541.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/open62541/open62541/context:cpp) General Project Info: [![Open Hub Project Status](https://www.openhub.net/p/open62541/widgets/project_thin_badge.gif)](https://www.openhub.net/p/open62541/) [![Overall Downloads](https://img.shields.io/github/downloads/open62541/open62541/total.svg)](https://github.com/open62541/open62541/releases) ### Features and Certification open62541 implements the OPC UA binary protocol stack as well as a client and server SDK. The final server binaries can be well under 100kb, depending on the selected features and the size of the information model. - Communication Stack - OPC UA binary protocol - OPC UA JSON encoding - Secure communication with encrypted messages - Exchangeable network layer (plugin) for using custom networking APIs (e.g. on embedded targets) - Support for generating data types from standard XML definitions - Server - Support for all OPC UA node types - Access control for individual nodes - Support for generating server-side information models from standard XML definitions (nodesets) - Support for adding and removing nodes and references also at runtime. - Support for inheritance and instantiation of object- and variable-types (custom constructor/destructor, instantiation of child nodes) - Support for subscriptions/monitoreditems (data change notifications and events) - Client - All OPC UA services supported - Asynchronous service requests - Background handling of subscriptions - Publish/Subscribe - UADP Binary protocol with UDP-multicast or Ethernet communication - PubSub JSON encoding ### Official Certification The sample server (server_ctt) built using open62541 v1.0 is in conformance with the 'Micro Embedded Device Server' Profile of OPC Foundation supporting OPC UA client/server communication, subscriptions, method calls and security (encryption) with the security policies 'Basic128Rsa15', 'Basic256' and 'Basic256Sha256' and the facets 'method server' and 'node management'. See https://open62541.org/certified-sdk for more details. PubSub (UADP) is implemented in open62541. But the feature cannot be certified at this point in time (Sep-2019) due to the lack of official test cases and testing tools. During development, the Conformance Testing Tools (CTT) of the OPC Foundation are regularly applied. The CTT configuration and results are tracked at https://github.com/open62541/open62541-ctt. The OPC UA profiles under regular test in the CTT are currently: - Micro Embedded Device Server - Method Server Facet - Node Management Facet - Security Policies - Basic128Rsa15 - Basic256 - Basic256Sha256 - User Tokens - Anonymous Facet - User Name Password Server Facet See the page on [open62541 Features](FEATURES.md) for an in-depth look at the support for the conformance units that make up the OPC UA profiles. ### Dependencies On most systems, open62541 requires the C standard library only. For dependencies during the build process, see the following list and the [build documentation](https://open62541.org/doc/current/building.html) for details. - Core Library: The core library has no dependencies besides the C99 standard headers. - Default Plugins: The default plugins use the POSIX interfaces for networking and accessing the system clock. Ports to different (embedded) architectures are achieved by customizing the plugins. - Building and Code Generation: The build environment is generated via CMake. Some code is auto-generated from XML definitions that are part of the OPC UA standard. The code generation scripts run with both Python 2 and 3. **Note:** Specific optional features are dependent on third-party libraries. These are all listed under the `deps/` folder. Depending on the selected feature set, some of these libraries will be included in the resulting library. More information on the third-party libraries can be found in the corresponding [deps/README.md](deps/README.md) ### Code Quality We emphasize code quality. The following quality metrics are continuously checked and are ensured to hold before an official release is made: - Zero errors indicated by the Compliance Testing Tool (CTT) of the OPC Foundation for the supported features - Zero compiler warnings from GCC/Clang/MSVC with very strict compilation flags - Zero issues indicated by unit tests (more than 80% coverage) - Zero issues indicated by clang-analyzer, clang-tidy, cpp-check and the Codacy static code analysis tools - Zero unresolved issues from fuzzing the library in Google's oss-fuzz infrastructure - Zero issues indicated by Valgrind (Linux), DrMemory (Windows) and Clang AddressSanitizer / MemorySanitizer for the CTT tests, unit tests and fuzzing ### Documentation and Support A general introduction to OPC UA and the open62541 documentation can be found at http://open62541.org/doc/current. Past rel

资源文件列表:

open62541.zip 大约有1024个文件
  1. .azure-pipelines/
  2. .azure-pipelines/azure-pipelines-dist.yml 2.25KB
  3. .azure-pipelines/azure-pipelines-win.yml 2.93KB
  4. .clang-format 1.62KB
  5. .clang-tidy 215B
  6. .cquery 71B
  7. .dockerignore 20B
  8. .editorconfig 553B
  9. .git/
  10. .git/branches/
  11. .git/config 261B
  12. .git/description 73B
  13. .git/HEAD 20B
  14. .git/hooks/
  15. .git/hooks/applypatch-msg.sample 478B
  16. .git/hooks/commit-msg.sample 896B
  17. .git/hooks/fsmonitor-watchman.sample 3.01KB
  18. .git/hooks/post-update.sample 189B
  19. .git/hooks/pre-applypatch.sample 424B
  20. .git/hooks/pre-commit.sample 1.6KB
  21. .git/hooks/pre-merge-commit.sample 416B
  22. .git/hooks/pre-push.sample 1.32KB
  23. .git/hooks/pre-rebase.sample 4.78KB
  24. .git/hooks/pre-receive.sample 544B
  25. .git/hooks/prepare-commit-msg.sample 1.46KB
  26. .git/hooks/update.sample 3.53KB
  27. .git/index 50.31KB
  28. .git/info/
  29. .git/info/exclude 240B
  30. .git/logs/
  31. .git/logs/HEAD 180B
  32. .git/logs/refs/
  33. .git/logs/refs/heads/
  34. .git/logs/refs/heads/1.0 180B
  35. .git/logs/refs/remotes/
  36. .git/logs/refs/remotes/origin/
  37. .git/logs/refs/remotes/origin/HEAD 180B
  38. .git/objects/
  39. .git/objects/info/
  40. .git/objects/pack/
  41. .git/objects/pack/pack-84f1121e71bbc77580f821e638198ae66bc801e6.idx 2.02MB
  42. .git/objects/pack/pack-84f1121e71bbc77580f821e638198ae66bc801e6.pack 54.1MB
  43. .git/packed-refs 7.73KB
  44. .git/refs/
  45. .git/refs/heads/
  46. .git/refs/heads/1.0 41B
  47. .git/refs/remotes/
  48. .git/refs/remotes/origin/
  49. .git/refs/remotes/origin/HEAD 32B
  50. .git/refs/tags/
  51. .github/
  52. .github/lock.yml 1.12KB
  53. .github/reaction.yml 703B
  54. .gitignore 955B
  55. .gitmodules 205B
  56. .travis-apt-pin.preferences 388B
  57. .travis.yml 9.7KB
  58. appveyor.yml 1.49KB
  59. arch/
  60. arch/CMakeLists.txt 1.06KB
  61. arch/common/
  62. arch/common/ua_freeRTOS.h 1.14KB
  63. arch/common/ua_lwip.h 2.85KB
  64. arch/eCos/
  65. arch/eCos/CMakeLists.txt 671B
  66. arch/eCos/ua_architecture.h 2.32KB
  67. arch/eCos/ua_architecture_functions.c 949B
  68. arch/eCos/ua_clock.c 1.15KB
  69. arch/freertosLWIP/
  70. arch/freertosLWIP/CMakeLists.txt 1.1KB
  71. arch/freertosLWIP/ua_architecture.h 681B
  72. arch/freertosLWIP/ua_architecture_functions.c 1.25KB
  73. arch/freertosLWIP/ua_clock.c 1.17KB
  74. arch/network_tcp.c 38.16KB
  75. arch/posix/
  76. arch/posix/CMakeLists.txt 1.24KB
  77. arch/posix/ua_architecture.h 6.35KB
  78. arch/posix/ua_architecture_functions.c 1.15KB
  79. arch/posix/ua_clock.c 1.91KB
  80. arch/Readme.md 4.29KB
  81. arch/vxworks/
  82. arch/vxworks/CMakeLists.txt 492B
  83. arch/vxworks/ua_architecture.h 2.82KB
  84. arch/vxworks/ua_architecture_functions.c 813B
  85. arch/vxworks/ua_clock.c 1.5KB
  86. arch/wec7/
  87. arch/wec7/CMakeLists.txt 523B
  88. arch/wec7/ua_architecture.h 4.5KB
  89. arch/wec7/ua_architecture_functions.c 1.22KB
  90. arch/wec7/ua_clock.c 1.34KB
  91. arch/win32/
  92. arch/win32/CMakeLists.txt 800B
  93. arch/win32/ua_architecture.h 4.48KB
  94. arch/win32/ua_architecture_functions.c 905B
  95. arch/win32/ua_clock.c 1.79KB
  96. AUTHORS 546B
  97. azure-pipelines.yml 200B
  98. build/
  99. build/arch/
  100. build/arch/cmake_install.cmake 1.62KB
  101. build/arch/CMakeFiles/
  102. build/arch/CMakeFiles/CMakeDirectoryInformation.cmake 620B
  103. build/arch/CMakeFiles/progress.marks 2B
  104. build/arch/eCos/
  105. build/arch/eCos/cmake_install.cmake 1.11KB
  106. build/arch/eCos/CMakeFiles/
  107. build/arch/eCos/CMakeFiles/CMakeDirectoryInformation.cmake 620B
  108. build/arch/eCos/CMakeFiles/progress.marks 2B
  109. build/arch/eCos/Makefile 6.63KB
  110. build/arch/freertosLWIP/
  111. build/arch/freertosLWIP/cmake_install.cmake 1.12KB
  112. build/arch/freertosLWIP/CMakeFiles/
  113. build/arch/freertosLWIP/CMakeFiles/CMakeDirectoryInformation.cmake 620B
  114. build/arch/freertosLWIP/CMakeFiles/progress.marks 2B
  115. build/arch/freertosLWIP/Makefile 6.67KB
  116. build/arch/Makefile 6.6KB
  117. build/arch/posix/
  118. build/arch/posix/cmake_install.cmake 1.12KB
  119. build/arch/posix/CMakeFiles/
  120. build/arch/posix/CMakeFiles/CMakeDirectoryInformation.cmake 620B
  121. build/arch/posix/CMakeFiles/progress.marks 2B
  122. build/arch/posix/Makefile 6.63KB
  123. build/arch/vxworks/
  124. build/arch/vxworks/cmake_install.cmake 1.12KB
  125. build/arch/vxworks/CMakeFiles/
  126. build/arch/vxworks/CMakeFiles/CMakeDirectoryInformation.cmake 620B
  127. build/arch/vxworks/CMakeFiles/progress.marks 2B
  128. build/arch/vxworks/Makefile 6.64KB
  129. build/arch/wec7/
  130. build/arch/wec7/cmake_install.cmake 1.11KB
  131. build/arch/wec7/CMakeFiles/
  132. build/arch/wec7/CMakeFiles/CMakeDirectoryInformation.cmake 620B
  133. build/arch/wec7/CMakeFiles/progress.marks 2B
  134. build/arch/wec7/Makefile 6.63KB
  135. build/arch/win32/
  136. build/arch/win32/cmake_install.cmake 1.12KB
  137. build/arch/win32/CMakeFiles/
  138. build/arch/win32/CMakeFiles/CMakeDirectoryInformation.cmake 620B
  139. build/arch/win32/CMakeFiles/progress.marks 2B
  140. build/arch/win32/Makefile 6.63KB
  141. build/bin/
  142. build/bin/libopen62541.a 3.15MB
  143. build/cmake_install.cmake 5.07KB
  144. build/CMakeCache.txt 31.56KB
  145. build/CMakeFiles/
  146. build/CMakeFiles/3.16.3/
  147. build/CMakeFiles/3.16.3/CMakeCCompiler.cmake 2.37KB
  148. build/CMakeFiles/3.16.3/CMakeCXXCompiler.cmake 5.32KB
  149. build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_C.bin 16.16KB
  150. build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_CXX.bin 16.17KB
  151. build/CMakeFiles/3.16.3/CMakeSystem.cmake 470B
  152. build/CMakeFiles/3.16.3/CompilerIdC/
  153. build/CMakeFiles/3.16.3/CompilerIdC/a.out 16.32KB
  154. build/CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 19.8KB
  155. build/CMakeFiles/3.16.3/CompilerIdC/tmp/
  156. build/CMakeFiles/3.16.3/CompilerIdCXX/
  157. build/CMakeFiles/3.16.3/CompilerIdCXX/a.out 16.33KB
  158. build/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 19.62KB
  159. build/CMakeFiles/3.16.3/CompilerIdCXX/tmp/
  160. build/CMakeFiles/_CMakeLTOTest-C/
  161. build/CMakeFiles/_CMakeLTOTest-C/bin/
  162. build/CMakeFiles/_CMakeLTOTest-C/bin/boo 16.1KB
  163. build/CMakeFiles/_CMakeLTOTest-C/bin/cmake_install.cmake 1.52KB
  164. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeCache.txt 9.8KB
  165. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/
  166. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/boo.dir/
  167. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/boo.dir/build.make 3.78KB
  168. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/boo.dir/C.includecache 218B
  169. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/boo.dir/cmake_clean.cmake 222B
  170. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/boo.dir/depend.internal 193B
  171. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/boo.dir/depend.make 194B
  172. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/boo.dir/DependInfo.cmake 705B
  173. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/boo.dir/flags.make 198B
  174. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/boo.dir/link.txt 88B
  175. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/boo.dir/main.c.o 3.3KB
  176. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/boo.dir/progress.make 43B
  177. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/cmake.check_cache 85B
  178. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/CMakeDirectoryInformation.cmake 688B
  179. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/foo.dir/
  180. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/foo.dir/build.make 3.84KB
  181. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/foo.dir/C.includecache 217B
  182. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/foo.dir/cmake_clean.cmake 229B
  183. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/foo.dir/cmake_clean_target.cmake 35B
  184. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/foo.dir/depend.internal 191B
  185. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/foo.dir/depend.make 192B
  186. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/foo.dir/DependInfo.cmake 606B
  187. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/foo.dir/flags.make 198B
  188. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/foo.dir/foo.c.o 3.14KB
  189. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/foo.dir/link.txt 93B
  190. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/foo.dir/progress.make 43B
  191. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/Makefile.cmake 1.86KB
  192. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/Makefile2 4.47KB
  193. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/progress.marks 2B
  194. build/CMakeFiles/_CMakeLTOTest-C/bin/CMakeFiles/TargetDirectories.txt 321B
  195. build/CMakeFiles/_CMakeLTOTest-C/bin/libfoo.a 3.28KB
  196. build/CMakeFiles/_CMakeLTOTest-C/bin/Makefile 5.52KB
  197. build/CMakeFiles/_CMakeLTOTest-C/src/
  198. build/CMakeFiles/_CMakeLTOTest-C/src/CMakeLists.txt 193B
  199. build/CMakeFiles/_CMakeLTOTest-C/src/foo.c 29B
  200. build/CMakeFiles/_CMakeLTOTest-C/src/main.c 43B
  201. build/CMakeFiles/_CMakeLTOTest-CXX/
  202. build/CMakeFiles/_CMakeLTOTest-CXX/bin/
  203. build/CMakeFiles/_CMakeLTOTest-CXX/bin/boo 16.1KB
  204. build/CMakeFiles/_CMakeLTOTest-CXX/bin/cmake_install.cmake 1.53KB
  205. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeCache.txt 9.85KB
  206. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/
  207. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/boo.dir/
  208. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/boo.dir/build.make 3.87KB
  209. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/boo.dir/cmake_clean.cmake 226B
  210. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/boo.dir/CXX.includecache 222B
  211. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/boo.dir/depend.internal 199B
  212. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/boo.dir/depend.make 200B
  213. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/boo.dir/DependInfo.cmake 723B
  214. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/boo.dir/flags.make 207B
  215. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/boo.dir/link.txt 92B
  216. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/boo.dir/main.cpp.o 3.38KB
  217. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/boo.dir/progress.make 43B
  218. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/cmake.check_cache 85B
  219. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/CMakeDirectoryInformation.cmake 692B
  220. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/foo.dir/
  221. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/foo.dir/build.make 3.93KB
  222. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/foo.dir/cmake_clean.cmake 233B
  223. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/foo.dir/cmake_clean_target.cmake 35B
  224. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/foo.dir/CXX.includecache 221B
  225. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/foo.dir/depend.internal 197B
  226. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/foo.dir/depend.make 198B
  227. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/foo.dir/DependInfo.cmake 622B
  228. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/foo.dir/flags.make 207B
  229. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/foo.dir/foo.cpp.o 3.17KB
  230. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/foo.dir/link.txt 95B
  231. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/foo.dir/progress.make 43B
  232. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/Makefile.cmake 1.87KB
  233. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/Makefile2 4.49KB
  234. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/progress.marks 2B
  235. build/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/TargetDirectories.txt 329B
  236. build/CMakeFiles/_CMakeLTOTest-CXX/bin/libfoo.a 3.31KB
  237. build/CMakeFiles/_CMakeLTOTest-CXX/bin/Makefile 5.58KB
  238. build/CMakeFiles/_CMakeLTOTest-CXX/src/
  239. build/CMakeFiles/_CMakeLTOTest-CXX/src/CMakeLists.txt 199B
  240. build/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp 29B
  241. build/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp 43B
  242. build/CMakeFiles/clang-tidy.dir/
  243. build/CMakeFiles/clang-tidy.dir/build.make 14.15KB
  244. build/CMakeFiles/clang-tidy.dir/cmake_clean.cmake 822B
  245. build/CMakeFiles/clang-tidy.dir/DependInfo.cmake 1.58KB
  246. build/CMakeFiles/clang-tidy.dir/progress.make 106B
  247. build/CMakeFiles/cmake.check_cache 85B
  248. build/CMakeFiles/CMakeDirectoryInformation.cmake 620B
  249. build/CMakeFiles/CMakeError.log 906B
  250. build/CMakeFiles/CMakeOutput.log 45.01KB
  251. build/CMakeFiles/CMakeRuleHashes.txt 2.97KB
  252. build/CMakeFiles/CMakeTmp/
  253. build/CMakeFiles/cpplint.dir/
  254. build/CMakeFiles/cpplint.dir/build.make 19.45KB
  255. build/CMakeFiles/cpplint.dir/cmake_clean.cmake 816B
  256. build/CMakeFiles/cpplint.dir/DependInfo.cmake 1.58KB
  257. build/CMakeFiles/cpplint.dir/progress.make 107B
  258. build/CMakeFiles/Export/
  259. build/CMakeFiles/Export/lib/
  260. build/CMakeFiles/Export/lib/cmake/
  261. build/CMakeFiles/Export/lib/cmake/open62541/
  262. build/CMakeFiles/Export/lib/cmake/open62541/open62541Targets-debug.cmake 855B
  263. build/CMakeFiles/Export/lib/cmake/open62541/open62541Targets.cmake 3.45KB
  264. build/CMakeFiles/Makefile.cmake 5.63KB
  265. build/CMakeFiles/Makefile2 26.71KB
  266. build/CMakeFiles/open62541-amalgamation-header.dir/
  267. build/CMakeFiles/open62541-amalgamation-header.dir/build.make 10.6KB
  268. build/CMakeFiles/open62541-amalgamation-header.dir/cmake_clean.cmake 587B
  269. build/CMakeFiles/open62541-amalgamation-header.dir/depend.internal 100B
  270. build/CMakeFiles/open62541-amalgamation-header.dir/depend.make 100B
  271. build/CMakeFiles/open62541-amalgamation-header.dir/DependInfo.cmake 990B
  272. build/CMakeFiles/open62541-amalgamation-header.dir/progress.make 89B
  273. build/CMakeFiles/open62541-amalgamation-source.dir/
  274. build/CMakeFiles/open62541-amalgamation-source.dir/build.make 18.4KB
  275. build/CMakeFiles/open62541-amalgamation-source.dir/cmake_clean.cmake 876B
  276. build/CMakeFiles/open62541-amalgamation-source.dir/depend.internal 100B
  277. build/CMakeFiles/open62541-amalgamation-source.dir/depend.make 100B
  278. build/CMakeFiles/open62541-amalgamation-source.dir/DependInfo.cmake 1.58KB
  279. build/CMakeFiles/open62541-amalgamation-source.dir/progress.make 111B
  280. build/CMakeFiles/open62541-generator-ids-ns0.dir/
  281. build/CMakeFiles/open62541-generator-ids-ns0.dir/build.make 2.87KB
  282. build/CMakeFiles/open62541-generator-ids-ns0.dir/cmake_clean.cmake 274B
  283. build/CMakeFiles/open62541-generator-ids-ns0.dir/DependInfo.cmake 316B
  284. build/CMakeFiles/open62541-generator-ids-ns0.dir/progress.make 23B
  285. build/CMakeFiles/open62541-generator-namespace.dir/
  286. build/CMakeFiles/open62541-generator-namespace.dir/build.make 4.06KB
  287. build/CMakeFiles/open62541-generator-namespace.dir/cmake_clean.cmake 342B
  288. build/CMakeFiles/open62541-generator-namespace.dir/depend.internal 100B
  289. build/CMakeFiles/open62541-generator-namespace.dir/depend.make 100B
  290. build/CMakeFiles/open62541-generator-namespace.dir/DependInfo.cmake 557B
  291. build/CMakeFiles/open62541-generator-namespace.dir/progress.make 23B
  292. build/CMakeFiles/open62541-generator-statuscode.dir/
  293. build/CMakeFiles/open62541-generator-statuscode.dir/build.make 3.95KB
  294. build/CMakeFiles/open62541-generator-statuscode.dir/cmake_clean.cmake 364B
  295. build/CMakeFiles/open62541-generator-statuscode.dir/depend.internal 100B
  296. build/CMakeFiles/open62541-generator-statuscode.dir/depend.make 100B
  297. build/CMakeFiles/open62541-generator-statuscode.dir/DependInfo.cmake 539B
  298. build/CMakeFiles/open62541-generator-statuscode.dir/progress.make 45B
  299. build/CMakeFiles/open62541-generator-transport.dir/
  300. build/CMakeFiles/open62541-generator-transport.dir/build.make 4.72KB
  301. build/CMakeFiles/open62541-generator-transport.dir/cmake_clean.cmake 465B
  302. build/CMakeFiles/open62541-generator-transport.dir/depend.internal 100B
  303. build/CMakeFiles/open62541-generator-transport.dir/depend.make 100B
  304. build/CMakeFiles/open62541-generator-transport.dir/DependInfo.cmake 880B
  305. build/CMakeFiles/open62541-generator-transport.dir/progress.make 23B
  306. build/CMakeFiles/open62541-generator-types.dir/
  307. build/CMakeFiles/open62541-generator-types.dir/build.make 4.96KB
  308. build/CMakeFiles/open62541-generator-types.dir/cmake_clean.cmake 441B
  309. build/CMakeFiles/open62541-generator-types.dir/depend.internal 100B
  310. build/CMakeFiles/open62541-generator-types.dir/depend.make 100B
  311. build/CMakeFiles/open62541-generator-types.dir/DependInfo.cmake 856B
  312. build/CMakeFiles/open62541-generator-types.dir/progress.make 23B
  313. build/CMakeFiles/open62541-object.dir/
  314. build/CMakeFiles/open62541-object.dir/build.make 24.57KB
  315. build/CMakeFiles/open62541-object.dir/C.includecache 1.61KB
  316. build/CMakeFiles/open62541-object.dir/cmake_clean.cmake 923B
  317. build/CMakeFiles/open62541-object.dir/depend.internal 224B
  318. build/CMakeFiles/open62541-object.dir/depend.make 219B
  319. build/CMakeFiles/open62541-object.dir/DependInfo.cmake 1.98KB
  320. build/CMakeFiles/open62541-object.dir/flags.make 790B
  321. build/CMakeFiles/open62541-object.dir/open62541.c.o 3.14MB
  322. build/CMakeFiles/open62541-object.dir/progress.make 177B
  323. build/CMakeFiles/open62541.dir/
  324. build/CMakeFiles/open62541.dir/build.make 2.76KB
  325. build/CMakeFiles/open62541.dir/cmake_clean.cmake 224B
  326. build/CMakeFiles/open62541.dir/cmake_clean_target.cmake 45B
  327. build/CMakeFiles/open62541.dir/depend.internal 100B
  328. build/CMakeFiles/open62541.dir/depend.make 100B
  329. build/CMakeFiles/open62541.dir/DependInfo.cmake 316B
  330. build/CMakeFiles/open62541.dir/flags.make 763B
  331. build/CMakeFiles/open62541.dir/link.txt 132B
  332. build/CMakeFiles/open62541.dir/progress.make 23B
  333. build/CMakeFiles/progress.marks 3B
  334. build/CMakeFiles/TargetDirectories.txt 5.86KB
  335. build/compile_commands.json 844B
  336. build/CPackConfig.cmake 3.7KB
  337. build/CPackSourceConfig.cmake 4.14KB
  338. build/doc/
  339. build/doc/cmake_install.cmake 1.11KB
  340. build/doc/CMakeFiles/
  341. build/doc/CMakeFiles/CMakeDirectoryInformation.cmake 620B
  342. build/doc/CMakeFiles/doc.dir/
  343. build/doc/CMakeFiles/doc.dir/build.make 19.55KB
  344. build/doc/CMakeFiles/doc.dir/cmake_clean.cmake 1.19KB
  345. build/doc/CMakeFiles/doc.dir/DependInfo.cmake 316B
  346. build/doc/CMakeFiles/doc.dir/progress.make 659B
  347. build/doc/CMakeFiles/doc_latex.dir/
  348. build/doc/CMakeFiles/doc_latex.dir/build.make 20.07KB
  349. build/doc/CMakeFiles/doc_latex.dir/cmake_clean.cmake 1.2KB
  350. build/doc/CMakeFiles/doc_latex.dir/DependInfo.cmake 316B
  351. build/doc/CMakeFiles/doc_latex.dir/progress.make 659B
  352. build/doc/CMakeFiles/doc_pdf.dir/
  353. build/doc/CMakeFiles/doc_pdf.dir/build.make 2.47KB
  354. build/doc/CMakeFiles/doc_pdf.dir/cmake_clean.cmake 196B
  355. build/doc/CMakeFiles/doc_pdf.dir/DependInfo.cmake 316B
  356. build/doc/CMakeFiles/doc_pdf.dir/progress.make 23B
  357. build/doc/CMakeFiles/progress.marks 2B
  358. build/doc/Makefile 8.03KB
  359. build/doc_src/
  360. build/doc_src/building.rst 12.83KB
  361. build/doc_src/building_arch.rst 7KB
  362. build/doc_src/conf.py 9.39KB
  363. build/doc_src/index.rst 5.31KB
  364. build/doc_src/installing.rst 3.92KB
  365. build/doc_src/internal.rst 144B
  366. build/doc_src/nodeset_compiler.rst 26.95KB
  367. build/doc_src/nodeset_compiler_pump.png 14.09KB
  368. build/doc_src/open62541.png 19.19KB
  369. build/doc_src/open62541_html.png 4.79KB
  370. build/doc_src/protocol.rst 7.05KB
  371. build/doc_src/toc.rst 222B
  372. build/doc_src/tutorials.rst 406B
  373. build/doc_src/ua-wireshark-pubsub.png 94.97KB
  374. build/doc_src/ua-wireshark.png 83.6KB
  375. build/install_manifest.txt 3.68KB
  376. build/Makefile 13.97KB
  377. build/open62541.c 2.12MB
  378. build/open62541.h 1.5MB
  379. build/open62541Config.cmake 1.74KB
  380. build/open62541ConfigVersion.cmake 1.35KB
  381. build/open62541Macros.cmake 24.19KB
  382. build/open62541Targets.cmake 2.29KB
  383. build/src_generated/
  384. build/src_generated/open62541.pc 506B
  385. build/src_generated/open62541/
  386. build/src_generated/open62541/config.h 3.25KB
  387. build/src_generated/open62541/namespace0_generated.c 181.5KB
  388. build/src_generated/open62541/namespace0_generated.h 1.39KB
  389. build/src_generated/open62541/nodeids.h 917.06KB
  390. build/src_generated/open62541/statuscodes.c 16.84KB
  391. build/src_generated/open62541/statuscodes.h 29.1KB
  392. build/src_generated/open62541/transport_generated.c 15.11KB
  393. build/src_generated/open62541/transport_generated.h 4.24KB
  394. build/src_generated/open62541/transport_generated_encoding_binary.h 9.01KB
  395. build/src_generated/open62541/transport_generated_handling.h 12.6KB
  396. build/src_generated/open62541/types_generated.c 239.1KB
  397. build/src_generated/open62541/types_generated.h 55.23KB
  398. build/src_generated/open62541/types_generated_encoding_binary.h 122.42KB
  399. build/src_generated/open62541/types_generated_handling.h 166.53KB
  400. build/tools/
  401. build/tools/packaging/
  402. build/tools/packaging/cmake_install.cmake 1.12KB
  403. build/tools/packaging/CMakeFiles/
  404. build/tools/packaging/CMakeFiles/CMakeDirectoryInformation.cmake 620B
  405. build/tools/packaging/CMakeFiles/progress.marks 2B
  406. build/tools/packaging/Makefile 6.66KB
  407. CHANGELOG 5.13KB
  408. CMakeLists.txt 57.5KB
  409. CODE_OF_CONDUCT.md 3.15KB
  410. CONTRIBUTING.md 4.18KB
  411. cppcheck-suppressions.txt 44B
  412. CPPLINT.cfg 562B
  413. debian/
  414. debian/changelog 173B
  415. debian/compat 2B
  416. debian/control-template 3.09KB
  417. debian/copyright 17.06KB
  418. debian/libopen62541-dev.install-template 102B
  419. debian/libopen62541-tools.install-template 440B
  420. debian/libopen62541.install-template 17B
  421. debian/open62541-doc.doc-base-template 639B
  422. debian/open62541-doc.install-template 53B
  423. debian/rules-template 556B
  424. debian/source/
  425. debian/source/format 13B
  426. deps/
  427. deps/atoi.c 2.26KB
  428. deps/atoi.h 303B
  429. deps/base64.c 3.54KB
  430. deps/base64.h 844B
  431. deps/itoa.c 3.16KB
  432. deps/itoa.h 1.36KB
  433. deps/jsmn/
  434. deps/jsmn/jsmn.c 7.81KB
  435. deps/jsmn/jsmn.h 1.62KB
  436. deps/jsmn/LICENSE 1.04KB
  437. deps/libc_time.c 3.78KB
  438. deps/libc_time.h 282B
  439. deps/mdnsd/
  440. deps/ms_stdint.h 7.85KB
  441. deps/musl/
  442. deps/musl/floatscan.c 14.6KB
  443. deps/musl/floatscan.h 319B
  444. deps/musl/vfprintf.c 12.75KB
  445. deps/musl/vfprintf.h 1.32KB
  446. deps/open62541_queue.h 22.77KB
  447. deps/pcg_basic.c 1.47KB
  448. deps/pcg_basic.h 1.43KB
  449. deps/README.md 1.57KB
  450. deps/string_escape.c 5.09KB
  451. deps/string_escape.h 1.09KB
  452. deps/ua-nodeset/
  453. deps/ziptree.h 13.31KB
  454. doc/
  455. doc/building.rst 12.83KB
  456. doc/building_arch.rst 7KB
  457. doc/CMakeLists.txt 5.96KB
  458. doc/conf.py 9.51KB
  459. doc/index.rst 5.31KB
  460. doc/installing.rst 3.92KB
  461. doc/internal.rst 144B
  462. doc/nodeset_compiler.rst 26.95KB
  463. doc/nodeset_compiler_pump.png 14.09KB
  464. doc/open62541.png 19.19KB
  465. doc/open62541_html.png 4.79KB
  466. doc/protocol.rst 7.05KB
  467. doc/toc.rst 222B
  468. doc/tutorials.rst 406B
  469. doc/ua-wireshark-pubsub.png 94.97KB
  470. doc/ua-wireshark.png 83.6KB
  471. Dockerfile 1.28KB
  472. examples/
  473. examples/access_control/
  474. examples/access_control/client_access_control.c 2.79KB
  475. examples/access_control/server_access_control.c 2.77KB
  476. examples/access_control_encrypt/
  477. examples/access_control_encrypt/client_access_control_encrypt.c 4.46KB
  478. examples/client.c 12.42KB
  479. examples/client_async.c 7.57KB
  480. examples/client_connect.c 4.43KB
  481. examples/client_connect_loop.c 3.38KB
  482. examples/client_connectivitycheck_loop.c 1.98KB
  483. examples/client_historical.c 6.27KB
  484. examples/client_subscription_loop.c 6.18KB
  485. examples/CMakeLists.txt 6.17KB
  486. examples/common.h 1.22KB
  487. examples/custom_datatype/
  488. examples/custom_datatype/client_types_custom.c 1.51KB
  489. examples/custom_datatype/custom_datatype.h 1.96KB
  490. examples/custom_datatype/server_types_custom.c 3.19KB
  491. examples/discovery/
  492. examples/discovery/client_find_servers.c 7.92KB
  493. examples/discovery/server_lds.c 2.86KB
  494. examples/discovery/server_multicast.c 14.87KB
  495. examples/discovery/server_register.c 6.02KB
  496. examples/encryption/
  497. examples/encryption/client_encryption.c 3.19KB
  498. examples/encryption/server_encryption.c 2.59KB
  499. examples/nodeset/
  500. examples/nodeset/CMakeLists.txt 4.47KB
  501. examples/nodeset/Opc.Ua.POWERLINK.NodeSet2.bsd 4.14KB
  502. examples/nodeset/server_nodeset.c 1.89KB
  503. examples/nodeset/server_nodeset.csv 133B
  504. examples/nodeset/server_nodeset.xml 3.02KB
  505. examples/nodeset/server_nodeset_plcopen.c 1.59KB
  506. examples/nodeset/server_nodeset_powerlink.c 1.6KB
  507. examples/nodeset/server_testnodeset.c 1.74KB
  508. examples/nodeset/testnodeset.csv 672B
  509. examples/nodeset/testnodeset.xml 27.95KB
  510. examples/nodeset/testtypes.bsd 2.94KB
  511. examples/pubsub/
  512. examples/pubsub/pubsub_subscribe_standalone.c 5.22KB
  513. examples/pubsub/tutorial_pubsub_connection.c 3.92KB
  514. examples/pubsub/tutorial_pubsub_publish.c 8.96KB
  515. examples/pubsub/tutorial_pubsub_subscribe.c 9.14KB
  516. examples/pubsub_realtime/
  517. examples/pubsub_realtime/bufmalloc.c 1.61KB
  518. examples/pubsub_realtime/bufmalloc.h 343B
  519. examples/pubsub_realtime/etfa18-pfrommer-tsn-pubsub.pdf 1.47MB
  520. examples/pubsub_realtime/pubsub_interrupt_publish.c 13.58KB
  521. examples/pubsub_realtime/README.md 3.35KB
  522. examples/pubsub_realtime/start_rt_publish.sh 1.2KB
  523. examples/server.cpp 1.87KB
  524. examples/server_ctt.c 49.91KB
  525. examples/server_inheritance.c 12.65KB
  526. examples/server_instantiation.c 3.73KB
  527. examples/server_mainloop.c 2.24KB
  528. examples/server_repeated_job.c 1.09KB
  529. examples/tutorial_client_events.c 6.73KB
  530. examples/tutorial_client_firststeps.c 2.81KB
  531. examples/tutorial_datatypes.c 4.15KB
  532. examples/tutorial_server_datasource.c 7.25KB
  533. examples/tutorial_server_events.c 7.38KB
  534. examples/tutorial_server_firststeps.c 4.73KB
  535. examples/tutorial_server_historicaldata.c 6.08KB
  536. examples/tutorial_server_method.c 8.07KB
  537. examples/tutorial_server_monitoreditems.c 2.67KB
  538. examples/tutorial_server_object.c 14.34KB
  539. examples/tutorial_server_variable.c 4.5KB
  540. examples/tutorial_server_variabletype.c 5.5KB
  541. FEATURES.md 9.19KB
  542. include/
  543. include/open62541/
  544. include/open62541/architecture_base.h 1.07KB
  545. include/open62541/architecture_definitions.h 11.55KB
  546. include/open62541/architecture_functions.h 6.4KB
  547. include/open62541/client.h 20.44KB
  548. include/open62541/client_config.h 5.99KB
  549. include/open62541/client_highlevel.h 30.84KB
  550. include/open62541/client_highlevel_async.h 39.6KB
  551. include/open62541/client_subscriptions.h 8.29KB
  552. include/open62541/config.h.in 3.26KB
  553. include/open62541/constants.h 5.41KB
  554. include/open62541/network_tcp.h 997B
  555. include/open62541/plugin/
  556. include/open62541/plugin/accesscontrol.h 5.3KB
  557. include/open62541/plugin/historydatabase.h 4.35KB
  558. include/open62541/plugin/log.h 3.86KB
  559. include/open62541/plugin/network.h 8.39KB
  560. include/open62541/plugin/nodestore.h 20.52KB
  561. include/open62541/plugin/pki.h 1.98KB
  562. include/open62541/plugin/pubsub.h 4.44KB
  563. include/open62541/plugin/securitypolicy.h 18.18KB
  564. include/open62541/server.h 62.03KB
  565. include/open62541/server_config.h 8.42KB
  566. include/open62541/server_pubsub.h 17.48KB
  567. include/open62541/types.h 34.88KB
  568. include/open62541/util.h 4.73KB
  569. install/
  570. install/include/
  571. install/include/open62541.h 1.5MB
  572. install/include/open62541/
  573. install/include/open62541/architecture_base.h 1.07KB
  574. install/include/open62541/architecture_definitions.h 11.55KB
  575. install/include/open62541/architecture_functions.h 6.4KB
  576. install/include/open62541/client.h 20.44KB
  577. install/include/open62541/client_config.h 5.99KB
  578. install/include/open62541/client_config_default.h 1016B
  579. install/include/open62541/client_highlevel.h 30.84KB
  580. install/include/open62541/client_highlevel_async.h 39.6KB
  581. install/include/open62541/client_subscriptions.h 8.29KB
  582. install/include/open62541/config.h 3.25KB
  583. install/include/open62541/constants.h 5.41KB
  584. install/include/open62541/ms_stdint.h 7.85KB
  585. install/include/open62541/network_tcp.h 997B
  586. install/include/open62541/nodeids.h 917.06KB
  587. install/include/open62541/plugin/
  588. install/include/open62541/plugin/accesscontrol.h 5.3KB
  589. install/include/open62541/plugin/accesscontrol_default.h 1.02KB
  590. install/include/open62541/plugin/log.h 3.86KB
  591. install/include/open62541/plugin/log_stdout.h 852B
  592. install/include/open62541/plugin/network.h 8.39KB
  593. install/include/open62541/plugin/nodestore.h 20.52KB
  594. install/include/open62541/plugin/pki.h 1.98KB
  595. install/include/open62541/plugin/pki_default.h 1.59KB
  596. install/include/open62541/plugin/pubsub.h 4.44KB
  597. install/include/open62541/plugin/securitypolicy.h 18.18KB
  598. install/include/open62541/plugin/securitypolicy_default.h 1.8KB
  599. install/include/open62541/plugin/securitypolicy_mbedtls_common.h 1.96KB
  600. install/include/open62541/posix/
  601. install/include/open62541/posix/ua_architecture.h 6.35KB
  602. install/include/open62541/server.h 62.03KB
  603. install/include/open62541/server_config.h 8.42KB
  604. install/include/open62541/server_config_default.h 8.29KB
  605. install/include/open62541/server_pubsub.h 17.48KB
  606. install/include/open62541/statuscodes.h 29.1KB
  607. install/include/open62541/types.h 34.88KB
  608. install/include/open62541/types_generated.h 55.23KB
  609. install/include/open62541/types_generated_handling.h 166.53KB
  610. install/include/open62541/util.h 4.73KB
  611. install/include/open62541/ziptree.h 13.31KB
  612. install/lib/
  613. install/lib/cmake/
  614. install/lib/cmake/open62541/
  615. install/lib/cmake/open62541/open62541Config.cmake 1.74KB
  616. install/lib/cmake/open62541/open62541ConfigVersion.cmake 1.35KB
  617. install/lib/cmake/open62541/open62541Macros.cmake 24.19KB
  618. install/lib/cmake/open62541/open62541Targets-debug.cmake 855B
  619. install/lib/cmake/open62541/open62541Targets.cmake 3.45KB
  620. install/lib/libopen62541.a 3.15MB
  621. install/lib/pkgconfig/
  622. install/lib/pkgconfig/open62541.pc 506B
  623. install/share/
  624. install/share/open62541/
  625. install/share/open62541/tools/
  626. install/share/open62541/tools/certs/
  627. install/share/open62541/tools/certs/create_self-signed.py 2.76KB
  628. install/share/open62541/tools/certs/localhost.cnf 11.02KB
  629. install/share/open62541/tools/certs/server_cert.der 1010B
  630. install/share/open62541/tools/certs/server_key.der 1.16KB
  631. install/share/open62541/tools/certs/test/
  632. install/share/open62541/tools/certs/test/server_cert.der 1010B
  633. install/share/open62541/tools/certs/test/server_key.der 1.17KB
  634. install/share/open62541/tools/generate_datatypes.py 28.36KB
  635. install/share/open62541/tools/generate_nodeid_header.py 1.62KB
  636. install/share/open62541/tools/generate_statuscode_descriptions.py 3.06KB
  637. install/share/open62541/tools/nodeset_compiler/
  638. install/share/open62541/tools/nodeset_compiler/__init__.py
  639. install/share/open62541/tools/nodeset_compiler/__pycache__/
  640. install/share/open62541/tools/nodeset_compiler/backend_graphviz.py 6.47KB
  641. install/share/open62541/tools/nodeset_compiler/backend_open62541.py 11.14KB
  642. install/share/open62541/tools/nodeset_compiler/backend_open62541_datatypes.py 6.27KB
  643. install/share/open62541/tools/nodeset_compiler/backend_open62541_nodes.py 25.02KB
  644. install/share/open62541/tools/nodeset_compiler/datatypes.py 27.7KB
  645. install/share/open62541/tools/nodeset_compiler/NodeID_NS0_Base.txt 167B
  646. install/share/open62541/tools/nodeset_compiler/nodes.py 25.7KB
  647. install/share/open62541/tools/nodeset_compiler/nodeset.py 13.57KB
  648. install/share/open62541/tools/nodeset_compiler/nodeset_compiler.py 8.06KB
  649. install/share/open62541/tools/nodeset_compiler/nodeset_testing.py 2.46KB
  650. install/share/open62541/tools/nodeset_compiler/opaque_type_mapping.py 2.86KB
  651. install/share/open62541/tools/nodeset_compiler/README.md 805B
  652. install/share/open62541/tools/schema/
  653. install/share/open62541/tools/schema/Custom.Opc.Ua.Transport.bsd 4.45KB
  654. install/share/open62541/tools/schema/datatypes_dataaccess.txt 6B
  655. install/share/open62541/tools/schema/datatypes_discovery.txt 232B
  656. install/share/open62541/tools/schema/datatypes_events.txt 17B
  657. install/share/open62541/tools/schema/datatypes_historizing.txt 381B
  658. install/share/open62541/tools/schema/datatypes_method.txt 69B
  659. install/share/open62541/tools/schema/datatypes_minimal.txt 1.92KB
  660. install/share/open62541/tools/schema/datatypes_pubsub.txt 928B
  661. install/share/open62541/tools/schema/datatypes_query.txt 140B
  662. install/share/open62541/tools/schema/datatypes_subscriptions.txt 1.12KB
  663. install/share/open62541/tools/schema/datatypes_transport.txt 274B
  664. install/share/open62541/tools/schema/NodeIds.csv 675.98KB
  665. install/share/open62541/tools/schema/Opc.Ua.NodeSet2.EventsMinimal.xml 7.37KB
  666. install/share/open62541/tools/schema/Opc.Ua.NodeSet2.HistorizingMinimal.xml 8.52KB
  667. install/share/open62541/tools/schema/Opc.Ua.NodeSet2.Minimal.xml 77.74KB
  668. install/share/open62541/tools/schema/Opc.Ua.NodeSet2.PubSubMinimal.xml 84.48KB
  669. install/share/open62541/tools/schema/Opc.Ua.Types.bsd 179.18KB
  670. install/share/open62541/tools/schema/StatusCode.csv 22.15KB
  671. install/share/open62541/tools/ua-nodeset/
  672. ISSUE_TEMPLATE.md 1.24KB
  673. LICENSE 16.33KB
  674. LICENSE-CC0 6.38KB
  675. mongodb.tar
  676. open62541.pc.in 599B
  677. open62541.spec 1.55KB
  678. plugins/
  679. plugins/historydata/
  680. plugins/historydata/ua_history_data_backend_memory.c 24.01KB
  681. plugins/historydata/ua_history_data_gathering_default.c 9.63KB
  682. plugins/historydata/ua_history_database_default.c 29.05KB
  683. plugins/include/
  684. plugins/include/open62541/
  685. plugins/include/open62541/client_config_default.h 1016B
  686. plugins/include/open62541/plugin/
  687. plugins/include/open62541/plugin/accesscontrol_default.h 1.02KB
  688. plugins/include/open62541/plugin/historydata/
  689. plugins/include/open62541/plugin/historydata/history_data_backend.h 13.89KB
  690. plugins/include/open62541/plugin/historydata/history_data_backend_memory.h 747B
  691. plugins/include/open62541/plugin/historydata/history_data_gathering.h 5.45KB
  692. plugins/include/open62541/plugin/historydata/history_data_gathering_default.h 602B
  693. plugins/include/open62541/plugin/historydata/history_database_default.h 637B
  694. plugins/include/open62541/plugin/log_stdout.h 852B
  695. plugins/include/open62541/plugin/pki_default.h 1.59KB
  696. plugins/include/open62541/plugin/pubsub_ethernet.h 499B
  697. plugins/include/open62541/plugin/pubsub_udp.h 468B
  698. plugins/include/open62541/plugin/securitypolicy_default.h 1.8KB
  699. plugins/include/open62541/plugin/securitypolicy_mbedtls_common.h 1.96KB
  700. plugins/include/open62541/server_config_default.h 8.29KB
  701. plugins/securityPolicies/
  702. plugins/securityPolicies/securitypolicy_mbedtls_common.c 8.32KB
  703. plugins/securityPolicies/ua_securitypolicy_basic128rsa15.c 36.66KB
  704. plugins/securityPolicies/ua_securitypolicy_basic256.c 34.11KB
  705. plugins/securityPolicies/ua_securitypolicy_basic256sha256.c 37.21KB
  706. plugins/securityPolicies/ua_securitypolicy_none.c 6.76KB
  707. plugins/ua_accesscontrol_default.c 11.98KB
  708. plugins/ua_config_default.c 27.67KB
  709. plugins/ua_debug_dump_pkgs.c 1.16KB
  710. plugins/ua_log_stdout.c 2.58KB
  711. plugins/ua_nodestore_default.c 10.05KB
  712. plugins/ua_pki_default.c 22.09KB
  713. plugins/ua_pubsub_ethernet.c 15.33KB
  714. plugins/ua_pubsub_udp.c 19.33KB
  715. README.md 15.38KB
  716. sonar-project.properties 939B
  717. src/
  718. src/client/
  719. src/client/ua_client.c 21.84KB
  720. src/client/ua_client_connect.c 47.65KB
  721. src/client/ua_client_connect_async.c 29.62KB
  722. src/client/ua_client_discovery.c 5.49KB
  723. src/client/ua_client_highlevel.c 35.31KB
  724. src/client/ua_client_internal.h 7.04KB
  725. src/client/ua_client_subscriptions.c 33.63KB
  726. src/client/ua_client_worker.c 5.49KB
  727. src/pubsub/
  728. src/pubsub/ua_pubsub.c 90.51KB
  729. src/pubsub/ua_pubsub.h 8.33KB
  730. src/pubsub/ua_pubsub_manager.c 15.72KB
  731. src/pubsub/ua_pubsub_manager.h 1.61KB
  732. src/pubsub/ua_pubsub_networkmessage.c 47.8KB
  733. src/pubsub/ua_pubsub_networkmessage.h 7KB
  734. src/pubsub/ua_pubsub_networkmessage_json.c 21.19KB
  735. src/pubsub/ua_pubsub_ns0.c 60.65KB
  736. src/pubsub/ua_pubsub_ns0.h 1.75KB
  737. src/server/
  738. src/server/ua_discovery_manager.c 7.3KB
  739. src/server/ua_discovery_manager.h 5.88KB
  740. src/server/ua_nodes.c 25.77KB
  741. src/server/ua_securechannel_manager.c 10.93KB
  742. src/server/ua_securechannel_manager.h 2.5KB
  743. src/server/ua_server.c 24.86KB
  744. src/server/ua_server_binary.c 36.83KB
  745. src/server/ua_server_config.c 3.46KB
  746. src/server/ua_server_discovery.c 5.66KB
  747. src/server/ua_server_discovery_mdns.c 25.86KB
  748. src/server/ua_server_internal.h 10.56KB
  749. src/server/ua_server_ns0.c 53.21KB
  750. src/server/ua_server_utils.c 14.67KB
  751. src/server/ua_services.h 19.97KB
  752. src/server/ua_services_attribute.c 65.25KB
  753. src/server/ua_services_discovery.c 30.69KB
  754. src/server/ua_services_discovery_multicast.c 21.68KB
  755. src/server/ua_services_method.c 11.52KB
  756. src/server/ua_services_monitoreditem.c 23.59KB
  757. src/server/ua_services_nodemanagement.c 93.8KB
  758. src/server/ua_services_securechannel.c 2.55KB
  759. src/server/ua_services_session.c 24.6KB
  760. src/server/ua_services_subscription.c 16.56KB
  761. src/server/ua_services_view.c 45.34KB
  762. src/server/ua_session.c 4.77KB
  763. src/server/ua_session.h 5.9KB
  764. src/server/ua_session_manager.c 7.02KB
  765. src/server/ua_session_manager.h 2.02KB
  766. src/server/ua_subscription.c 24.47KB
  767. src/server/ua_subscription.h 8.79KB
  768. src/server/ua_subscription_datachange.c 20.46KB
  769. src/server/ua_subscription_events.c 18.59KB
  770. src/server/ua_subscription_monitoreditem.c 14.2KB
  771. src/ua_connection.c 11.19KB
  772. src/ua_connection_internal.h 3.79KB
  773. src/ua_securechannel.c 62.05KB
  774. src/ua_securechannel.h 12.58KB
  775. src/ua_timer.c 6.85KB
  776. src/ua_timer.h 2.47KB
  777. src/ua_types.c 42.36KB
  778. src/ua_types_encoding_binary.c 60.77KB
  779. src/ua_types_encoding_binary.h 3.67KB
  780. src/ua_types_encoding_json.c 110.17KB
  781. src/ua_types_encoding_json.h 5.21KB
  782. src/ua_util.c 10.31KB
  783. src/ua_util_internal.h 1.53KB
  784. src/ua_workqueue.c 8.58KB
  785. src/ua_workqueue.h 4.52KB
  786. tests/
  787. tests/check_chunking.c 6.38KB
  788. tests/check_securechannel.c 26.88KB
  789. tests/check_timer.c 2.06KB
  790. tests/check_types_builtin.c 55.04KB
  791. tests/check_types_builtin_json.c 201.54KB
  792. tests/check_types_custom.c 7.14KB
  793. tests/check_types_memory.c 12.96KB
  794. tests/check_types_range.c 3.47KB
  795. tests/check_utils.c 19.3KB
  796. tests/client/
  797. tests/client/check_client.c 13.22KB
  798. tests/client/check_client_async.c 8.71KB
  799. tests/client/check_client_async_connect.c 5.03KB
  800. tests/client/check_client_highlevel.c 44.63KB
  801. tests/client/check_client_historical_data.c 29.91KB
  802. tests/client/check_client_securechannel.c 6.45KB
  803. tests/client/check_client_subscriptions.c 31.38KB
  804. tests/client/historical_read_test_data.h 2.5KB
  805. tests/CMakeLists.txt 20.05KB
  806. tests/encryption/
  807. tests/encryption/certificates.h 13.59KB
  808. tests/encryption/check_encryption_basic128rsa15.c 6.08KB
  809. tests/encryption/check_encryption_basic256sha256.c 6.17KB
  810. tests/fuzz/
  811. tests/fuzz/check_build.sh 272B
  812. tests/fuzz/CMakeLists.txt 4.78KB
  813. tests/fuzz/corpus_generator.c 24.35KB
  814. tests/fuzz/custom_memory_manager.c 4.4KB
  815. tests/fuzz/custom_memory_manager.h 1.08KB
  816. tests/fuzz/fuzz_binary_decode.cc 3.59KB
  817. tests/fuzz/fuzz_binary_message.cc 2KB
  818. tests/fuzz/fuzz_binary_message.options 51B
  819. tests/fuzz/fuzz_binary_message_corpus/
  820. tests/fuzz/fuzz_binary_message_corpus/generated/
  821. tests/fuzz/fuzz_binary_message_corpus/generated/1d6d4004d0a22c324410fd9df02d7477c1c66f79 3.55KB
  822. tests/fuzz/fuzz_binary_message_corpus/generated/2469be236b03b891b0371fc00f659be7ecaf48a5 636B
  823. tests/fuzz/fuzz_binary_message_corpus/generated/2bb7608575acec126e3dd72a71c98b45756cdc17 2.4KB
  824. tests/fuzz/fuzz_binary_message_corpus/generated/2e985938f94ec3ffb5d68fdea9f7a57527300c54 945B
  825. tests/fuzz/fuzz_binary_message_corpus/generated/3571f2e3699024bbd13426c1c1e0fb6a2be080b7 635B
  826. tests/fuzz/fuzz_binary_message_corpus/generated/3cbe2dd022994d8b2aecf44d85207c45d270283b 1.53KB
  827. tests/fuzz/fuzz_binary_message_corpus/generated/3dd5bc5b48941232b09f72ff1fa2f53f1123695e 3.5KB
  828. tests/fuzz/fuzz_binary_message_corpus/generated/4d008f20a34ba50a523a62d6b5449935f1ad3125 2.84KB
  829. tests/fuzz/fuzz_binary_message_corpus/generated/55783816d6936aee3ce44915f575a621b8c41f88 936B
  830. tests/fuzz/fuzz_binary_message_corpus/generated/61861286a164b848cf3ba3460ac43de4299e055d 940B
  831. tests/fuzz/fuzz_binary_message_corpus/generated/6fdcec03ea094f77554f81c634d752d7372176f2 314B
  832. tests/fuzz/fuzz_binary_message_corpus/generated/8c7195ba09cde70328ce616296580f88c1868ce9 712B
  833. tests/fuzz/fuzz_binary_message_corpus/generated/8c8167bbf8c029729fde0630d4f00873058780a2 11.22KB
  834. tests/fuzz/fuzz_binary_message_corpus/generated/92f427417e4c921678f4a65a71dd77feadedb93b 1.08KB
  835. tests/fuzz/fuzz_binary_message_corpus/generated/a64af70c8e80f73918426271b02f2a43dfdf3c58 852B
  836. tests/fuzz/fuzz_binary_message_corpus/generated/ad7eca3743c2383c57df920f02539f684b3ffcc3 300B
  837. tests/fuzz/fuzz_binary_message_corpus/generated/af1c80d18c06c16ba6067c3cf9526e04c5682f5a 825B
  838. tests/fuzz/fuzz_binary_message_corpus/generated/b7568f0dc026fa16ca737c6643353ac75b79c149 904B
  839. tests/fuzz/fuzz_binary_message_corpus/generated/ddf2be2fcdaa07a3d7adf0cd9d3c5c8339d97fff 9.88KB
  840. tests/fuzz/fuzz_binary_message_corpus/generated/e7710c8ad29b5310c48e3fcfdf01195c210048f6 810B
  841. tests/fuzz/fuzz_binary_message_corpus/generated/fbef981b62c06122e22da3512d733cb51f093795 688B
  842. tests/fuzz/fuzz_binary_message_header.dict 800B
  843. tests/fuzz/fuzz_json/
  844. tests/fuzz/fuzz_json/json_corpus 2.44KB
  845. tests/fuzz/fuzz_json_decode.cc 848B
  846. tests/fuzz/fuzz_json_decode_encode.cc 2.44KB
  847. tests/fuzz/fuzz_src_ua_util.cc 1.54KB
  848. tests/fuzz/fuzz_src_ua_util.options 51B
  849. tests/fuzz/fuzz_src_ua_util_endpoints.dict 300B
  850. tests/fuzz/generate_corpus.sh 3.05KB
  851. tests/fuzz/oss-fuzz-copy.sh 655B
  852. tests/fuzz/README.md 2.15KB
  853. tests/fuzz/ua_debug_dump_pkgs_file.c 7.46KB
  854. tests/nodeset-compiler/
  855. tests/nodeset-compiler/check_nodeset_compiler_adi.c 1.67KB
  856. tests/nodeset-compiler/check_nodeset_compiler_plc.c 1.73KB
  857. tests/nodeset-compiler/check_nodeset_compiler_testnodeset.c 4.54KB
  858. tests/nodeset-compiler/CMakeLists.txt 3.88KB
  859. tests/nodeset-compiler/testnodeset.csv 540B
  860. tests/nodeset-compiler/testnodeset.xml 22.63KB
  861. tests/nodeset-compiler/testtypes.bsd 2.53KB
  862. tests/pubsub/
  863. tests/pubsub/check_pubsub_connection_udp.c 12.27KB
  864. tests/pubsub/check_pubsub_encoding.c 81.54KB
  865. tests/pubsub/check_pubsub_encoding_json.c 22.63KB
  866. tests/pubsub/check_pubsub_informationmodel.c 17.08KB
  867. tests/pubsub/check_pubsub_informationmodel_methods.c 18.01KB
  868. tests/pubsub/check_pubsub_multiple_layer.c 2.11KB
  869. tests/pubsub/check_pubsub_pds.c 6.65KB
  870. tests/pubsub/check_pubsub_publish.c 24.48KB
  871. tests/pubsub/check_pubsub_publish_json.c 4.54KB
  872. tests/pubsub/check_pubsub_publish_uadp.c 9.54KB
  873. tests/pubsub/check_pubsub_publishspeed.c 4.4KB
  874. tests/pubsub/check_pubsub_subscribe.c 59.65KB
  875. tests/server/
  876. tests/server/check_accesscontrol.c 3.25KB
  877. tests/server/check_discovery.c 24.1KB
  878. tests/server/check_local_monitored_item.c 5.12KB
  879. tests/server/check_monitoreditem_filter.c 39.27KB
  880. tests/server/check_node_inheritance.c 18.9KB
  881. tests/server/check_nodestore.c 10.21KB
  882. tests/server/check_server.c 2.63KB
  883. tests/server/check_server_callbacks.c 8.17KB
  884. tests/server/check_server_historical_data.c 42.76KB
  885. tests/server/check_server_jobs.c 2.4KB
  886. tests/server/check_server_monitoringspeed.c 4.31KB
  887. tests/server/check_server_readspeed.c 4.86KB
  888. tests/server/check_server_speed_addnodes.c 3.29KB
  889. tests/server/check_server_userspace.c 6.83KB
  890. tests/server/check_services_attributes.c 44.06KB
  891. tests/server/check_services_call.c 9.41KB
  892. tests/server/check_services_nodemanagement.c 28.1KB
  893. tests/server/check_services_subscriptions.c 32.83KB
  894. tests/server/check_services_view.c 9.24KB
  895. tests/server/check_session.c 2.27KB
  896. tests/server/check_subscription_events.c 28.13KB
  897. tests/server/historical_read_test_data.h 8.89KB
  898. tests/server/randomindextest_backend.h 12.43KB
  899. tests/testing-plugins/
  900. tests/testing-plugins/testing_clock.c 1.21KB
  901. tests/testing-plugins/testing_clock.h 880B
  902. tests/testing-plugins/testing_networklayers.c 2.79KB
  903. tests/testing-plugins/testing_networklayers.h 1.42KB
  904. tests/testing-plugins/testing_policy.c 16.14KB
  905. tests/testing-plugins/testing_policy.h 1.53KB
  906. tests/testing-plugins/thread_wrapper.h 1.61KB
  907. TinyDockerfile 394B
  908. tools/
  909. tools/amalgamate.py 3.11KB
  910. tools/appveyor/
  911. tools/appveyor/build.ps1 5.59KB
  912. tools/appveyor/install.ps1 749B
  913. tools/azure-devops/
  914. tools/azure-devops/debian/
  915. tools/azure-devops/debian/build.sh 664B
  916. tools/azure-devops/debian/install.sh 759B
  917. tools/azure-devops/win/
  918. tools/azure-devops/win/build.ps1 8.25KB
  919. tools/azure-devops/win/install.ps1 2.95KB
  920. tools/c2rst.py 2.76KB
  921. tools/certs/
  922. tools/certs/create_self-signed.py 2.76KB
  923. tools/certs/localhost.cnf 11.02KB
  924. tools/certs/server_cert.der 1010B
  925. tools/certs/server_key.der 1.16KB
  926. tools/certs/test/
  927. tools/certs/test/server_cert.der 1010B
  928. tools/certs/test/server_key.der 1.17KB
  929. tools/clang-format_precommit_hook 1.43KB
  930. tools/cmake/
  931. tools/cmake/AssignSourceGroup.cmake 525B
  932. tools/cmake/CompilerFlags.cmake 547B
  933. tools/cmake/FindCheck.cmake 2.29KB
  934. tools/cmake/FindClangTools.cmake 1006B
  935. tools/cmake/FindMbedTLS.cmake 1.48KB
  936. tools/cmake/FindSphinx.cmake 286B
  937. tools/cmake/FindValgrind.cmake 773B
  938. tools/cmake/linting_build.cmake 1.68KB
  939. tools/cmake/linting_target.cmake 1.79KB
  940. tools/cmake/macros_internal.cmake 2.15KB
  941. tools/cmake/macros_public.cmake 24.19KB
  942. tools/cmake/open62541Config.cmake.in 870B
  943. tools/cmake/SetGitBasedVersion.cmake 3.27KB
  944. tools/cmake/Toolchain-gcc-m32.cmake 175B
  945. tools/cmake/Toolchain-mingw32.cmake 2.71KB
  946. tools/cmake/Toolchain-mingw64.cmake 1.75KB
  947. tools/cmake/Toolchain-QNX-6.5.0.cmake 3.29KB
  948. tools/cmake/Toolchain-rpi.cmake 560B
  949. tools/cmake/Toolchain-rpi64.cmake 538B
  950. tools/gdb-prettyprint.py 1.79KB
  951. tools/generate_datatypes.py 28.36KB
  952. tools/generate_nodeid_header.py 1.62KB
  953. tools/generate_statuscode_descriptions.py 3.06KB
  954. tools/nodeset_compiler/
  955. tools/nodeset_compiler/__init__.py
  956. tools/nodeset_compiler/__pycache__/
  957. tools/nodeset_compiler/__pycache__/__init__.cpython-38.pyc 145B
  958. tools/nodeset_compiler/__pycache__/backend_open62541.cpython-38.pyc 7.42KB
  959. tools/nodeset_compiler/__pycache__/backend_open62541_datatypes.cpython-38.pyc 5.06KB
  960. tools/nodeset_compiler/__pycache__/backend_open62541_nodes.cpython-38.pyc 14.46KB
  961. tools/nodeset_compiler/__pycache__/datatypes.cpython-38.pyc 20.29KB
  962. tools/nodeset_compiler/__pycache__/nodes.cpython-38.pyc 18.04KB
  963. tools/nodeset_compiler/__pycache__/nodeset.cpython-38.pyc 10.66KB
  964. tools/nodeset_compiler/__pycache__/opaque_type_mapping.cpython-38.pyc 1.22KB
  965. tools/nodeset_compiler/backend_graphviz.py 6.47KB
  966. tools/nodeset_compiler/backend_open62541.py 11.14KB
  967. tools/nodeset_compiler/backend_open62541_datatypes.py 6.27KB
  968. tools/nodeset_compiler/backend_open62541_nodes.py 25.02KB
  969. tools/nodeset_compiler/datatypes.py 27.7KB
  970. tools/nodeset_compiler/NodeID_NS0_Base.txt 167B
  971. tools/nodeset_compiler/nodes.py 25.7KB
  972. tools/nodeset_compiler/nodeset.py 13.57KB
  973. tools/nodeset_compiler/nodeset_compiler.py 8.06KB
  974. tools/nodeset_compiler/nodeset_testing.py 2.46KB
  975. tools/nodeset_compiler/opaque_type_mapping.py 2.86KB
  976. tools/nodeset_compiler/README.md 805B
  977. tools/packaging/
  978. tools/packaging/CMakeLists.txt 913B
  979. tools/packaging/tito/
  980. tools/packaging/tito/tito.props 147B
  981. tools/prepare_packaging.py 4.64KB
  982. tools/schema/
  983. tools/schema/Custom.Opc.Ua.Transport.bsd 4.45KB
  984. tools/schema/datatypes_dataaccess.txt 6B
  985. tools/schema/datatypes_discovery.txt 232B
  986. tools/schema/datatypes_events.txt 17B
  987. tools/schema/datatypes_historizing.txt 381B
  988. tools/schema/datatypes_method.txt 69B
  989. tools/schema/datatypes_minimal.txt 1.92KB
  990. tools/schema/datatypes_pubsub.txt 928B
  991. tools/schema/datatypes_query.txt 140B
  992. tools/schema/datatypes_subscriptions.txt 1.12KB
  993. tools/schema/datatypes_transport.txt 274B
  994. tools/schema/NodeIds.csv 675.98KB
  995. tools/schema/Opc.Ua.NodeSet2.EventsMinimal.xml 7.37KB
  996. tools/schema/Opc.Ua.NodeSet2.HistorizingMinimal.xml 8.52KB
  997. tools/schema/Opc.Ua.NodeSet2.Minimal.xml 77.74KB
  998. tools/schema/Opc.Ua.NodeSet2.PubSubMinimal.xml 84.48KB
  999. tools/schema/Opc.Ua.Types.bsd 179.18KB
  1000. tools/schema/StatusCode.csv 22.15KB
  1001. tools/travis/
  1002. tools/travis/travis_linux_after_success.sh 699B
  1003. tools/travis/travis_linux_before_install.sh 2.2KB
  1004. tools/travis/travis_linux_script.sh 20.3KB
  1005. tools/travis/travis_osx_before_install.sh 131B
  1006. tools/travis/travis_osx_script.sh 2.36KB
  1007. tools/travis/travis_push_doc.sh 1.05KB
  1008. tools/travis/travis_push_release.sh 2.06KB
  1009. tools/ua2json/
  1010. tools/ua2json/CMakeLists.txt 451B
  1011. tools/ua2json/examples/
  1012. tools/ua2json/examples/datavalue.bin 27B
  1013. tools/ua2json/examples/datavalue.json 241B
  1014. tools/ua2json/examples/pubsub.bin 33B
  1015. tools/ua2json/examples/pubsub.json 518B
  1016. tools/ua2json/examples/readrequest.bin 80B
  1017. tools/ua2json/examples/readrequest.json 660B
  1018. tools/ua2json/examples/variant.bin 25B
  1019. tools/ua2json/examples/variant.json 74B
  1020. tools/ua2json/README.md 1.72KB
  1021. tools/ua2json/ua2json.c 9.53KB
  1022. tools/update_copyright_header.py 7.17KB
  1023. tools/valgrind_check_error.py 3.45KB
  1024. tools/valgrind_suppressions.supp 14.95KB
0评论
提交 加载更多评论
其他资源 南开大学《软件安全》课程作业
原漏洞利用渗透测试,所有实验作业
云借阅图书管理系统 SSM
JAVAEE SSM云借阅图书管理系统
【“第二课堂”AI实践课堂笔记】:2-数据分析:Pandas的基础学习及实践操作
【“第二课堂”AI实践课堂笔记】:2-数据分析:Pandas的基础学习及实践操作
新建 WinRAR ZIP archive.zip
新建 WinRAR ZIP archive.zip
医药管理系统 JAVA+Vue.js+SpringBoot+MySQL
基于Vue.js和SpringBoot的医药管理系统,分为用户前台和管理后台,可以给管理员、员工角色使用,包括药品管理模块、供应商模块、进货管理模块、销售管理模块、员工管理模块和系统基础模块,项目编号T197。 项目录屏:https://www.bilibili.com/video/BV1S1421k7nN 启动教程:https://www.bilibili.com/video/BV1pW4y1P7GR 项目讲解视频:https://space.bilibili.com/417412814/channel/collectiondetail?sid=2242844
社区养老服务平台 JAVA+Vue.js+SpringBoot+MySQL
基于Vue.js和SpringBoot的社区养老服务平台,分为用户前台和管理后台,可以给管理员、普通用户角色使用,包括服务信息模块、服务申请模块、公告信息模块、用户管理模块和系统基础模块,项目编号T190。 项目录屏:https://www.bilibili.com/video/BV1pb421i7go 启动教程:https://www.bilibili.com/video/BV1pW4y1P7GR 项目讲解视频:https://space.bilibili.com/417412814/channel/collectiondetail?sid=2242844
社区养老服务平台 JAVA+Vue.js+SpringBoot+MySQL 社区养老服务平台 JAVA+Vue.js+SpringBoot+MySQL 社区养老服务平台 JAVA+Vue.js+SpringBoot+MySQL
webgoat-server-8.2.2.zip
解压即可得到webgoat-server-8.2.2.jar
InstallLeagueofLegendsna.zip
InstallLeagueofLegendsna.zip