server_udp.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  3. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
  4. */
  5. #include <time.h>
  6. #include "ua_types.h"
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <signal.h>
  10. // provided by the open62541 lib
  11. #include "ua_server.h"
  12. // provided by the user, implementations available in the /examples folder
  13. #include "logger_stdout.h"
  14. #include "networklayer_udp.h"
  15. UA_Boolean running = 1;
  16. static void stopHandler(int sign) {
  17. printf("Received Ctrl-C\n");
  18. running = 0;
  19. }
  20. int main(int argc, char** argv) {
  21. signal(SIGINT, stopHandler); /* catches ctrl-c */
  22. UA_Server *server = UA_Server_new();
  23. UA_Server_addNetworkLayer(server, ServerNetworkLayerUDP_new(UA_ConnectionConfig_standard, 16664));
  24. // add a variable node to the adresspace
  25. UA_Int32 *myInteger = UA_Int32_new();
  26. *myInteger = 42;
  27. UA_Variant *myIntegerVariant = UA_Variant_new();
  28. UA_Variant_setValue(myIntegerVariant, myInteger, &UA_TYPES[UA_TYPES_INT32]);
  29. UA_QualifiedName myIntegerName;
  30. UA_QUALIFIEDNAME_ASSIGN(myIntegerName, "the answer");
  31. UA_Server_addVariableNode(server, myIntegerVariant, &UA_NODEID_NULL, &myIntegerName,
  32. &UA_NODEID_STATIC(0, UA_NS0ID_OBJECTSFOLDER),
  33. &UA_NODEID_STATIC(0, UA_NS0ID_ORGANIZES));
  34. UA_StatusCode retval = UA_Server_run(server, 1, &running);
  35. UA_Server_delete(server);
  36. return retval;
  37. }