Procházet zdrojové kódy

added new license text (mplv3)

FlorianPalm před 7 roky
rodič
revize
87028b0ee6
68 změnil soubory, kde provedl 272 přidání a 0 odebrání
  1. 4 0
      include/ua_client.h
  2. 4 0
      include/ua_client_highlevel.h
  3. 4 0
      include/ua_connection.h
  4. 4 0
      include/ua_constants.h
  5. 4 0
      include/ua_job.h
  6. 4 0
      include/ua_log.h
  7. 4 0
      include/ua_server.h
  8. 4 0
      include/ua_server_external_ns.h
  9. 4 0
      include/ua_types.h
  10. 4 0
      src/client/ua_client.c
  11. 4 0
      src/client/ua_client_highlevel.c
  12. 4 0
      src/client/ua_client_highlevel_subscriptions.c
  13. 4 0
      src/client/ua_client_internal.h
  14. 4 0
      src/server/ua_nodes.c
  15. 4 0
      src/server/ua_nodes.h
  16. 4 0
      src/server/ua_nodestore.c
  17. 4 0
      src/server/ua_nodestore.h
  18. 4 0
      src/server/ua_nodestore_concurrent.c
  19. 4 0
      src/server/ua_securechannel_manager.c
  20. 4 0
      src/server/ua_securechannel_manager.h
  21. 4 0
      src/server/ua_server.c
  22. 4 0
      src/server/ua_server_binary.c
  23. 4 0
      src/server/ua_server_internal.h
  24. 4 0
      src/server/ua_server_utils.c
  25. 4 0
      src/server/ua_server_worker.c
  26. 4 0
      src/server/ua_services.h
  27. 4 0
      src/server/ua_services_attribute.c
  28. 4 0
      src/server/ua_services_call.c
  29. 4 0
      src/server/ua_services_discovery.c
  30. 4 0
      src/server/ua_services_nodemanagement.c
  31. 4 0
      src/server/ua_services_securechannel.c
  32. 4 0
      src/server/ua_services_session.c
  33. 4 0
      src/server/ua_services_subscription.c
  34. 4 0
      src/server/ua_services_view.c
  35. 4 0
      src/server/ua_session_manager.c
  36. 4 0
      src/server/ua_session_manager.h
  37. 4 0
      src/server/ua_subscription.c
  38. 4 0
      src/server/ua_subscription.h
  39. 4 0
      src/ua_connection.c
  40. 4 0
      src/ua_connection_internal.h
  41. 4 0
      src/ua_securechannel.c
  42. 4 0
      src/ua_securechannel.h
  43. 4 0
      src/ua_session.c
  44. 4 0
      src/ua_session.h
  45. 4 0
      src/ua_types.c
  46. 4 0
      src/ua_types_encoding_binary.c
  47. 4 0
      src/ua_types_encoding_binary.h
  48. 4 0
      src/ua_util.h
  49. 4 0
      tests/check_chunking.c
  50. 4 0
      tests/check_client.c
  51. 4 0
      tests/check_client_subscriptions.c
  52. 4 0
      tests/check_discovery.c
  53. 4 0
      tests/check_nodestore.c
  54. 4 0
      tests/check_server_binary_messages.c
  55. 4 0
      tests/check_server_jobs.c
  56. 4 0
      tests/check_server_userspace.c
  57. 4 0
      tests/check_services_attributes.c
  58. 4 0
      tests/check_services_nodemanagement.c
  59. 4 0
      tests/check_services_subscriptions.c
  60. 4 0
      tests/check_services_view.c
  61. 4 0
      tests/check_session.c
  62. 4 0
      tests/check_types_builtin.c
  63. 4 0
      tests/check_types_custom.c
  64. 4 0
      tests/check_types_memory.c
  65. 4 0
      tests/check_types_range.c
  66. 4 0
      tests/check_utils.c
  67. 4 0
      tests/testing_networklayers.c
  68. 4 0
      tests/testing_networklayers.h

+ 4 - 0
include/ua_client.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 
 #ifndef UA_CLIENT_H_
 #define UA_CLIENT_H_

+ 4 - 0
include/ua_client_highlevel.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 
 #ifndef UA_CLIENT_HIGHLEVEL_H_
 #define UA_CLIENT_HIGHLEVEL_H_

+ 4 - 0
include/ua_connection.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 
 #ifndef UA_CONNECTION_H_
 #define UA_CONNECTION_H_

+ 4 - 0
include/ua_constants.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 
 #ifndef UA_CONSTANTS_H_
 #define UA_CONSTANTS_H_

+ 4 - 0
include/ua_job.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 
 #ifndef UA_JOB_H_
 #define UA_JOB_H_

+ 4 - 0
include/ua_log.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 
 #ifndef UA_LOG_H_
 #define UA_LOG_H_

+ 4 - 0
include/ua_server.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 
 #ifndef UA_SERVER_H_
 #define UA_SERVER_H_

+ 4 - 0
include/ua_server_external_ns.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 
 #ifndef UA_SERVER_EXTERNAL_NS_H_
 #define UA_SERVER_EXTERNAL_NS_H_

+ 4 - 0
include/ua_types.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 
 #ifndef UA_TYPES_H_
 #define UA_TYPES_H_

+ 4 - 0
src/client/ua_client.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_util.h"
 #include "ua_client.h"
 #include "ua_client_highlevel.h"

+ 4 - 0
src/client/ua_client_highlevel.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_client.h"
 #include "ua_nodeids.h"
 #include "ua_client_highlevel.h"

+ 4 - 0
src/client/ua_client_highlevel_subscriptions.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_client_highlevel.h"
 #include "ua_client_internal.h"
 #include "ua_util.h"

+ 4 - 0
src/client/ua_client_internal.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef UA_CLIENT_INTERNAL_H_
 #define UA_CLIENT_INTERNAL_H_
 

+ 4 - 0
src/server/ua_nodes.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_server_internal.h"
 #include "ua_nodes.h"
 #include "ua_nodestore.h"

+ 4 - 0
src/server/ua_nodes.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef UA_NODES_H_
 #define UA_NODES_H_
 

+ 4 - 0
src/server/ua_nodestore.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_nodestore.h"
 #include "ua_server_internal.h"
 #include "ua_util.h"

+ 4 - 0
src/server/ua_nodestore.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef UA_NODESTORE_H_
 #define UA_NODESTORE_H_
 

+ 4 - 0
src/server/ua_nodestore_concurrent.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_util.h"
 #include "ua_nodestore.h"
 #include "ua_server_internal.h"

+ 4 - 0
src/server/ua_securechannel_manager.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_securechannel_manager.h"
 #include "ua_session.h"
 #include "ua_server_internal.h"

+ 4 - 0
src/server/ua_securechannel_manager.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef UA_CHANNEL_MANAGER_H_
 #define UA_CHANNEL_MANAGER_H_
 

+ 4 - 0
src/server/ua_server.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_types.h"
 #include "ua_server_internal.h"
 #include "ua_securechannel_manager.h"

+ 4 - 0
src/server/ua_server_binary.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_util.h"
 #include "ua_server_internal.h"
 #include "ua_services.h"

+ 4 - 0
src/server/ua_server_internal.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef UA_SERVER_INTERNAL_H_
 #define UA_SERVER_INTERNAL_H_
 

+ 4 - 0
src/server/ua_server_utils.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_server_internal.h"
 
 /**********************/

+ 4 - 0
src/server/ua_server_worker.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_util.h"
 #include "ua_server_internal.h"
 

+ 4 - 0
src/server/ua_services.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef UA_SERVICES_H_
 #define UA_SERVICES_H_
 

+ 4 - 0
src/server/ua_services_attribute.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_server_internal.h"
 #include "ua_services.h"
 #ifdef UA_ENABLE_NONSTANDARD_STATELESS

+ 4 - 0
src/server/ua_services_call.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_services.h"
 #include "ua_server_internal.h"
 

+ 4 - 0
src/server/ua_services_discovery.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_server_internal.h"
 #include "ua_services.h"
 

+ 4 - 0
src/server/ua_services_nodemanagement.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_server_internal.h"
 #include "ua_services.h"
 

+ 4 - 0
src/server/ua_services_securechannel.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_server_internal.h"
 #include "ua_services.h"
 #include "ua_securechannel_manager.h"

+ 4 - 0
src/server/ua_services_session.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_services.h"
 #include "ua_server_internal.h"
 #include "ua_session_manager.h"

+ 4 - 0
src/server/ua_services_subscription.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_server_internal.h"
 #include "ua_services.h"
 #include "ua_subscription.h"

+ 4 - 0
src/server/ua_services_view.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_server_internal.h"
 #include "ua_services.h"
 

+ 4 - 0
src/server/ua_session_manager.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_session_manager.h"
 #include "ua_server_internal.h"
 

+ 4 - 0
src/server/ua_session_manager.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef UA_SESSION_MANAGER_H_
 #define UA_SESSION_MANAGER_H_
 

+ 4 - 0
src/server/ua_subscription.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_subscription.h"
 #include "ua_server_internal.h"
 #include "ua_types_encoding_binary.h"

+ 4 - 0
src/server/ua_subscription.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef UA_SUBSCRIPTION_H_
 #define UA_SUBSCRIPTION_H_
 

+ 4 - 0
src/ua_connection.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_util.h"
 #include "ua_connection_internal.h"
 #include "ua_types_encoding_binary.h"

+ 4 - 0
src/ua_connection_internal.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef UA_CONNECTION_INTERNAL_H_
 #define UA_CONNECTION_INTERNAL_H_
 

+ 4 - 0
src/ua_securechannel.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_util.h"
 #include "ua_securechannel.h"
 #include "ua_session.h"

+ 4 - 0
src/ua_securechannel.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef UA_SECURECHANNEL_H_
 #define UA_SECURECHANNEL_H_
 

+ 4 - 0
src/ua_session.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_session.h"
 #include "ua_types_generated_handling.h"
 #include "ua_util.h"

+ 4 - 0
src/ua_session.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef UA_SESSION_H_
 #define UA_SESSION_H_
 

+ 4 - 0
src/ua_types.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_util.h"
 #include "ua_types.h"
 #include "ua_types_generated.h"

+ 4 - 0
src/ua_types_encoding_binary.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_util.h"
 #include "ua_types_encoding_binary.h"
 #include "ua_types_generated.h"

+ 4 - 0
src/ua_types_encoding_binary.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef UA_TYPES_ENCODING_BINARY_H_
 #define UA_TYPES_ENCODING_BINARY_H_
 

+ 4 - 0
src/ua_util.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef UA_UTIL_H_
 #define UA_UTIL_H_
 

+ 4 - 0
tests/check_chunking.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_types.h"
 #include "ua_types_encoding_binary.h"
 #include "ua_types_generated.h"

+ 4 - 0
tests/check_client.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <pthread.h>

+ 4 - 0
tests/check_client_subscriptions.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <pthread.h>

+ 4 - 0
tests/check_discovery.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <pthread.h>

+ 4 - 0
tests/check_nodestore.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <time.h>

+ 4 - 0
tests/check_server_binary_messages.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include <stdlib.h>
 #include <stdio.h>
 #include "check.h"

+ 4 - 0
tests/check_server_jobs.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_server.h"
 #include "server/ua_server_internal.h"
 #include "ua_config_standard.h"

+ 4 - 0
tests/check_server_userspace.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include <stdio.h>
 #include <stdlib.h>
 

+ 4 - 0
tests/check_services_attributes.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <time.h>

+ 4 - 0
tests/check_services_nodemanagement.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <time.h>

+ 4 - 0
tests/check_services_subscriptions.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_server.h"
 #include "server/ua_services.h"
 #include "server/ua_server_internal.h"

+ 4 - 0
tests/check_services_view.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include <stdio.h>
 #include <stdlib.h>
 

+ 4 - 0
tests/check_session.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include <stdio.h>
 #include <stdlib.h>
 

+ 4 - 0
tests/check_types_builtin.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <math.h>

+ 4 - 0
tests/check_types_custom.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_types.h"
 #include "ua_types_generated_handling.h"
 #include "ua_types_encoding_binary.h"

+ 4 - 0
tests/check_types_memory.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #define _XOPEN_SOURCE 500
 #include <stdlib.h>
 #include <stdio.h>

+ 4 - 0
tests/check_types_range.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include "ua_types.h"
 #include "ua_types_generated_handling.h"
 #include "ua_util.h"

+ 4 - 0
tests/check_utils.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include <stdlib.h>
 
 #include "ua_types.h"

+ 4 - 0
tests/testing_networklayers.c

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #include <stdlib.h>
 #include "testing_networklayers.h"
 

+ 4 - 0
tests/testing_networklayers.h

@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public 
+ * License, v. 2.0. If a copy of the MPL was not distributed with this 
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 #ifndef TESTING_NETWORKLAYERS_H_
 #define TESTING_NETWORKLAYERS_H_