ANSI C UA Server SDK  1.5.1.313
 All Data Structures Functions Variables Typedefs Enumerations Enumerator Modules Pages
UaBaseModule

Functions

void OpcUa_ProxyStubConfiguration_InitializeDefault (OpcUa_ProxyStubConfiguration *a_pProxyStubConfiguration)
 Initialize UA stack configuration structure with default values. More...
 
OpcUa_StatusCode UaBase_Module_InitializeUaStack (OpcUa_Handle *a_phProxyStubPlatformLayer, OpcUa_ProxyStubConfiguration *a_pProxyStubConfiguration)
 Initialize UA stack. More...
 
OpcUa_StatusCode UaBase_Module_ClearUaStack (OpcUa_Handle *a_phProxyStubPlatformLayer)
 Clear UA stack. More...
 

Detailed Description

Function Documentation

void OpcUa_ProxyStubConfiguration_InitializeDefault ( OpcUa_ProxyStubConfiguration *  a_pProxyStubConfiguration)

Initialize UA stack configuration structure with default values.

The configuration structure is used to initialize the UA Stack. The default values are set by the stack configuration e.g. in the stack file opcua_config.h

The structure contains the following settings:

Trace settings
bProxyStub_Trace_Enabled - Flag that indicates if the stack trace is activated. This requires that the traces are not disabled with the stack compiler switch. The trace is also used by the Server SDK
uProxyStub_Trace_Level - Tracelevel used if trace is activated. Possible settings are

  • OPCUA_TRACE_OUTPUT_LEVEL_ERROR
  • OPCUA_TRACE_OUTPUT_LEVEL_WARNING
  • OPCUA_TRACE_OUTPUT_LEVEL_SYSTEM
  • OPCUA_TRACE_OUTPUT_LEVEL_INFO
  • OPCUA_TRACE_OUTPUT_LEVEL_DEBUG
  • OPCUA_TRACE_OUTPUT_LEVEL_CONTENT
  • OPCUA_TRACE_OUTPUT_LEVEL_ALL

Serializer settings
This part of the configuration defines the OPC UA Stack serializer settings. These are the security constraints for the serializer. The settings are also relevant for the resource consuption of the UA stack. Set this values carefully.

  • iSerializer_MaxAlloc - The largest size for a memory block the serializer can do when deserializing a message
  • iSerializer_MaxStringLength - The largest string accepted by the serializer
  • iSerializer_MaxByteStringLength - The largest byte string accepted by the serializer
  • iSerializer_MaxArrayLength - Maximum number of elements in an array accepted by the serializer
  • iSerializer_MaxMessageSize - The maximum number of bytes per message in total

The other settings should not be changed since they are set by the SDK and changing them will cause undefined behaviour.

Parameters
a_pProxyStubConfigurationConfiguration structure for the UA Stack.
OpcUa_StatusCode UaBase_Module_ClearUaStack ( OpcUa_Handle *  a_phProxyStubPlatformLayer)

Clear UA stack.

If this function was called, no UA stack functionality can be used any more.

Parameters
a_phProxyStubPlatformLayerUA Stack platform layer handle.
Returns
OPC UA Status code.
OpcUa_StatusCode UaBase_Module_InitializeUaStack ( OpcUa_Handle *  a_phProxyStubPlatformLayer,
OpcUa_ProxyStubConfiguration *  a_pProxyStubConfiguration 
)

Initialize UA stack.

This function must be called before any UA stack functionality is used.

Parameters
a_phProxyStubPlatformLayerUA Stack platfrom layer handle.
a_pProxyStubConfigurationConfiguration structure for the UA Stack.
Returns
OPC UA Status code.