mirror of
https://github.com/open62541/open62541.git
synced 2025-06-03 04:00:21 +00:00
46 lines
1.5 KiB
C++
46 lines
1.5 KiB
C++
/*
|
|
* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
|
|
* See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
|
|
*/
|
|
#include <iostream>
|
|
|
|
#ifdef NOT_AMALGATED
|
|
# include "ua_server.h"
|
|
# include "logger_stdout.h"
|
|
# include "networklayer_tcp.h"
|
|
#else
|
|
# include "open62541.h"
|
|
#endif
|
|
|
|
/**
|
|
* Build Instructions (Linux)
|
|
* - gcc -std=c99 -c open62541.c
|
|
* - g++ server.cpp open62541.o -o server
|
|
*/
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
UA_Server *server = UA_Server_new(UA_ServerConfig_standard);
|
|
UA_Server_addNetworkLayer(server, ServerNetworkLayerTCP_new(UA_ConnectionConfig_standard, 16664));
|
|
|
|
// add a variable node to the adresspace
|
|
UA_Server_addNamespace(server, "myApplicationNamespace");
|
|
UA_Variant *myIntegerVariant = UA_Variant_new();
|
|
UA_Int32 myInteger = 42;
|
|
UA_Variant_setScalarCopy(myIntegerVariant, &myInteger, &UA_TYPES[UA_TYPES_INT32]);
|
|
UA_QualifiedName myIntegerName = UA_QUALIFIEDNAME(1, "the answer");
|
|
UA_NodeId myIntegerNodeId = UA_NODEID_NULL; /* assign a random free nodeid */
|
|
UA_NodeId parentNodeId = UA_NODEID_NUMERIC(0, UA_NS0ID_OBJECTSFOLDER);
|
|
UA_NodeId parentReferenceNodeId = UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES);
|
|
UA_Server_addVariableNode(server, myIntegerVariant, myIntegerName,
|
|
myIntegerNodeId, parentNodeId, parentReferenceNodeId);
|
|
|
|
UA_Boolean running = UA_TRUE;
|
|
UA_StatusCode retval = UA_Server_run(server, 1, &running);
|
|
UA_Server_delete(server);
|
|
|
|
return retval;
|
|
}
|