From 86c07e893dc9c9ada4b8e98aefad92f6cb08888b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 25 Jun 2024 19:58:23 +0000 Subject: [PATCH] updated generated documentation on webpage by github-action [ci skip] --- static/doc/master/_sources/pubsub.rst.txt | 49 ++++++++++++---------- static/doc/master/_static/pubsub.rst | 49 ++++++++++++---------- static/doc/master/pubsub.html | 44 ++++++++++--------- static/doc/master/searchindex.js | 2 +- static/doc/open62541-master.pdf | Bin 1299431 -> 1300031 bytes 5 files changed, 79 insertions(+), 65 deletions(-) diff --git a/static/doc/master/_sources/pubsub.rst.txt b/static/doc/master/_sources/pubsub.rst.txt index 89e030ba83..b2a655e86f 100644 --- a/static/doc/master/_sources/pubsub.rst.txt +++ b/static/doc/master/_sources/pubsub.rst.txt @@ -457,35 +457,40 @@ WriterGroup The message publishing can be configured for realtime requirements. The RT-levels go along with different requirements. The below listed levels can be configured: -UA_PUBSUB_RT_NONE - ----> Description: Default "none-RT" Mode ----> Requirements: - ----> Restrictions: - -UA_PUBSUB_RT_DIRECT_VALUE_ACCESS (Preview - not implemented) ----> Description: Normally, the latest value for each DataSetField is read out of the information model. Within this RT-mode, the -value source of each field configured as static pointer to an DataValue. The publish cycle won't use call the server read function. ----> Requirements: All fields must be configured with a 'staticValueSource'. ----> Restrictions: - -UA_PUBSUB_RT_FIXED_LENGTH (Preview - not implemented) ----> Description: All DataSetFields have a known, non-changing length. The server will pre-generate some -buffers and use only memcopy operations to generate requested PubSub packages. ----> Requirements: DataSetFields with variable size cannot be used within this mode. ----> Restrictions: The configuration must be frozen and changes are not allowed while the WriterGroup is 'Operational'. -UA_PUBSUB_RT_DETERMINISTIC (Preview - not implemented) ----> Description: - ----> Requirements: - ----> Restrictions: - - -WARNING! For hard real time requirements the underlying system must be rt-capable. - +UA_PUBSUB_RT_NONE + No realtime-specific configuration. + +UA_PUBSUB_RT_DIRECT_VALUE_ACCESS + All PublishedDataSets need to point to a variable with a + ``UA_VALUEBACKENDTYPE_EXTERNAL`` value backend. The value backend gets + cached when the configuration is frozen. No lookup of the variable from + the information is performed afterwards. This enables also big data + structures to be updated atomically with a compare-and-switch operation on + the ``UA_DataValue`` double-pointer in the backend. + +UA_PUBSUB_RT_FIXED_SIZE + Validate that the message constains only fields with a known size. + Then the message fields have fixed offsets that are known ahead of time. + +UA_PUBSUB_RT_DETERMINISTIC + Both direct-access and fixed-size is being used. The server pre-allocates + buffers when the configuration is frozen and uses only memcpy operations + to update the PubSub network messages for sending. + +WARNING! For hard real time requirements the underlying system must be +RT-capable. Also note that each PubSubConnection can have a dedicated +EventLoop. That way normal client/server operations can run independently +from PubSub. The double-pointer in the ``UA_VALUEBACKENDTYPE_EXTERNAL`` value +backend allows avoid race-condition with non-blocking atomic operations. .. code-block:: c + typedef enum { UA_PUBSUB_RT_NONE = 0, UA_PUBSUB_RT_DIRECT_VALUE_ACCESS = 1, UA_PUBSUB_RT_FIXED_SIZE = 2, - UA_PUBSUB_RT_DETERMINISTIC = 4, + UA_PUBSUB_RT_DETERMINISTIC = 3, } UA_PubSubRTLevel; typedef struct { diff --git a/static/doc/master/_static/pubsub.rst b/static/doc/master/_static/pubsub.rst index 89e030ba83..b2a655e86f 100644 --- a/static/doc/master/_static/pubsub.rst +++ b/static/doc/master/_static/pubsub.rst @@ -457,35 +457,40 @@ WriterGroup The message publishing can be configured for realtime requirements. The RT-levels go along with different requirements. The below listed levels can be configured: -UA_PUBSUB_RT_NONE - ----> Description: Default "none-RT" Mode ----> Requirements: - ----> Restrictions: - -UA_PUBSUB_RT_DIRECT_VALUE_ACCESS (Preview - not implemented) ----> Description: Normally, the latest value for each DataSetField is read out of the information model. Within this RT-mode, the -value source of each field configured as static pointer to an DataValue. The publish cycle won't use call the server read function. ----> Requirements: All fields must be configured with a 'staticValueSource'. ----> Restrictions: - -UA_PUBSUB_RT_FIXED_LENGTH (Preview - not implemented) ----> Description: All DataSetFields have a known, non-changing length. The server will pre-generate some -buffers and use only memcopy operations to generate requested PubSub packages. ----> Requirements: DataSetFields with variable size cannot be used within this mode. ----> Restrictions: The configuration must be frozen and changes are not allowed while the WriterGroup is 'Operational'. -UA_PUBSUB_RT_DETERMINISTIC (Preview - not implemented) ----> Description: - ----> Requirements: - ----> Restrictions: - - -WARNING! For hard real time requirements the underlying system must be rt-capable. - +UA_PUBSUB_RT_NONE + No realtime-specific configuration. + +UA_PUBSUB_RT_DIRECT_VALUE_ACCESS + All PublishedDataSets need to point to a variable with a + ``UA_VALUEBACKENDTYPE_EXTERNAL`` value backend. The value backend gets + cached when the configuration is frozen. No lookup of the variable from + the information is performed afterwards. This enables also big data + structures to be updated atomically with a compare-and-switch operation on + the ``UA_DataValue`` double-pointer in the backend. + +UA_PUBSUB_RT_FIXED_SIZE + Validate that the message constains only fields with a known size. + Then the message fields have fixed offsets that are known ahead of time. + +UA_PUBSUB_RT_DETERMINISTIC + Both direct-access and fixed-size is being used. The server pre-allocates + buffers when the configuration is frozen and uses only memcpy operations + to update the PubSub network messages for sending. + +WARNING! For hard real time requirements the underlying system must be +RT-capable. Also note that each PubSubConnection can have a dedicated +EventLoop. That way normal client/server operations can run independently +from PubSub. The double-pointer in the ``UA_VALUEBACKENDTYPE_EXTERNAL`` value +backend allows avoid race-condition with non-blocking atomic operations. .. code-block:: c + typedef enum { UA_PUBSUB_RT_NONE = 0, UA_PUBSUB_RT_DIRECT_VALUE_ACCESS = 1, UA_PUBSUB_RT_FIXED_SIZE = 2, - UA_PUBSUB_RT_DETERMINISTIC = 4, + UA_PUBSUB_RT_DETERMINISTIC = 3, } UA_PubSubRTLevel; typedef struct { diff --git a/static/doc/master/pubsub.html b/static/doc/master/pubsub.html index a09b3abb3b..c4cd59534e 100644 --- a/static/doc/master/pubsub.html +++ b/static/doc/master/pubsub.html @@ -536,30 +536,34 @@
The message publishing can be configured for realtime requirements. The RT-levels go along with different requirements. The below listed levels can be configured:
-UA_PUBSUB_RT_NONE - -—> Description: Default “none-RT” Mode -—> Requirements: - -—> Restrictions: - -UA_PUBSUB_RT_DIRECT_VALUE_ACCESS (Preview - not implemented) -—> Description: Normally, the latest value for each DataSetField is read out of the information model. Within this RT-mode, the -value source of each field configured as static pointer to an DataValue. The publish cycle won’t use call the server read function. -—> Requirements: All fields must be configured with a ‘staticValueSource’. -—> Restrictions: - -UA_PUBSUB_RT_FIXED_LENGTH (Preview - not implemented) -—> Description: All DataSetFields have a known, non-changing length. The server will pre-generate some -buffers and use only memcopy operations to generate requested PubSub packages. -—> Requirements: DataSetFields with variable size cannot be used within this mode. -—> Restrictions: The configuration must be frozen and changes are not allowed while the WriterGroup is ‘Operational’. -UA_PUBSUB_RT_DETERMINISTIC (Preview - not implemented) -—> Description: - -—> Requirements: - -—> Restrictions: -
-WARNING! For hard real time requirements the underlying system must be rt-capable.
+No realtime-specific configuration.
+All PublishedDataSets need to point to a variable with a
+UA_VALUEBACKENDTYPE_EXTERNAL
value backend. The value backend gets
+cached when the configuration is frozen. No lookup of the variable from
+the information is performed afterwards. This enables also big data
+structures to be updated atomically with a compare-and-switch operation on
+the UA_DataValue
double-pointer in the backend.
Validate that the message constains only fields with a known size. +Then the message fields have fixed offsets that are known ahead of time.
+Both direct-access and fixed-size is being used. The server pre-allocates +buffers when the configuration is frozen and uses only memcpy operations +to update the PubSub network messages for sending.
+WARNING! For hard real time requirements the underlying system must be
+RT-capable. Also note that each PubSubConnection can have a dedicated
+EventLoop. That way normal client/server operations can run independently
+from PubSub. The double-pointer in the UA_VALUEBACKENDTYPE_EXTERNAL
value
+backend allows avoid race-condition with non-blocking atomic operations.
typedef enum {
UA_PUBSUB_RT_NONE = 0,
UA_PUBSUB_RT_DIRECT_VALUE_ACCESS = 1,
UA_PUBSUB_RT_FIXED_SIZE = 2,
- UA_PUBSUB_RT_DETERMINISTIC = 4,
+ UA_PUBSUB_RT_DETERMINISTIC = 3,
} UA_PubSubRTLevel;
typedef struct {
diff --git a/static/doc/master/searchindex.js b/static/doc/master/searchindex.js
index f50b80501a..5ca58a6b84 100644
--- a/static/doc/master/searchindex.js
+++ b/static/doc/master/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"Access Control Plugin API": [[15, "access-control-plugin-api"]], "Access Level Masks": [[5, "access-level-masks"]], "AccessLevelExType": [[39, "accesslevelextype"], [40, "accesslevelextype"]], "AccessLevelType": [[39, "accessleveltype"], [40, "accessleveltype"]], "AccessRestrictionType": [[39, "accessrestrictiontype"], [40, "accessrestrictiontype"]], "ActivateSessionRequest": [[39, "activatesessionrequest"], [40, "activatesessionrequest"]], "ActivateSessionResponse": [[39, "activatesessionresponse"], [40, "activatesessionresponse"]], "AddNodesItem": [[39, "addnodesitem"], [40, "addnodesitem"]], "AddNodesRequest": [[39, "addnodesrequest"], [40, "addnodesrequest"]], "AddNodesResponse": [[39, "addnodesresponse"], [40, "addnodesresponse"]], "AddNodesResult": [[39, "addnodesresult"], [40, "addnodesresult"]], "AddReferencesItem": [[39, "addreferencesitem"], [40, "addreferencesitem"]], "AddReferencesRequest": [[39, "addreferencesrequest"], [40, "addreferencesrequest"]], "AddReferencesResponse": [[39, "addreferencesresponse"], [40, "addreferencesresponse"]], "Adding Methods to Objects": [[33, "adding-methods-to-objects"]], "Adding Variables to a Server": [[36, "adding-variables-to-a-server"]], "AdditionalParametersType": [[39, "additionalparameterstype"], [40, "additionalparameterstype"]], "Advanced Client Configuration": [[1, "advanced-client-configuration"]], "AggregateConfiguration": [[39, "aggregateconfiguration"], [40, "aggregateconfiguration"]], "AggregateFilter": [[39, "aggregatefilter"], [40, "aggregatefilter"]], "AggregateFilterResult": [[39, "aggregatefilterresult"], [40, "aggregatefilterresult"]], "Alarms & Conditions (Experimental)": [[22, "alarms-conditions-experimental"]], "AliasNameDataType": [[39, "aliasnamedatatype"], [40, "aliasnamedatatype"]], "And-Escaping of Strings": [[5, "and-escaping-of-strings"], [41, "and-escaping-of-strings"]], "Annotation": [[39, "annotation"], [40, "annotation"]], "AnonymousIdentityToken": [[39, "anonymousidentitytoken"], [40, "anonymousidentitytoken"]], "ApplicationDescription": [[39, "applicationdescription"], [40, "applicationdescription"]], "ApplicationInstanceCertificate": [[39, "applicationinstancecertificate"], [40, "applicationinstancecertificate"]], "ApplicationType": [[39, "applicationtype"], [40, "applicationtype"]], "Arch": [[0, "arch"]], "Argument": [[39, "argument"], [40, "argument"]], "Array Dimensions": [[6, "array-dimensions"]], "Array handling": [[39, "array-handling"]], "Async Operations": [[22, "async-operations"], [22, "id8"]], "Async Services": [[3, "async-services"]], "Asynchronous Operations": [[3, "asynchronous-operations"]], "Asynchronous Services": [[1, "asynchronous-services"]], "Attribute Id": [[5, "attribute-id"]], "Attribute Service Set": [[6, "attribute-service-set"]], "AttributeOperand": [[39, "attributeoperand"], [40, "attributeoperand"]], "AttributeWriteMask": [[39, "attributewritemask"], [40, "attributewritemask"]], "AudioDataType": [[39, "audiodatatype"], [40, "audiodatatype"]], "Automatic Nodesetinjection": [[13, "automatic-nodesetinjection"]], "AxisInformation": [[39, "axisinformation"], [40, "axisinformation"]], "AxisScaleEnumeration": [[39, "axisscaleenumeration"], [40, "axisscaleenumeration"]], "Base Node Attributes": [[19, "base-node-attributes"]], "Basic Data Handling": [[26, "basic-data-handling"]], "Binary Connection Config Parameters": [[5, "binary-connection-config-parameters"], [41, "binary-connection-config-parameters"]], "Binary Encoding/Decoding": [[39, "binary-encoding-decoding"]], "BitFieldMaskDataType": [[39, "bitfieldmaskdatatype"], [40, "bitfieldmaskdatatype"]], "Boolean": [[39, "boolean"]], "BrokerConnectionTransportDataType": [[39, "brokerconnectiontransportdatatype"], [40, "brokerconnectiontransportdatatype"]], "BrokerDataSetReaderTransportDataType": [[39, "brokerdatasetreadertransportdatatype"], [40, "brokerdatasetreadertransportdatatype"]], "BrokerDataSetWriterTransportDataType": [[39, "brokerdatasetwritertransportdatatype"], [40, "brokerdatasetwritertransportdatatype"]], "BrokerTransportQualityOfService": [[39, "brokertransportqualityofservice"], [40, "brokertransportqualityofservice"]], "BrokerWriterGroupTransportDataType": [[39, "brokerwritergrouptransportdatatype"], [40, "brokerwritergrouptransportdatatype"]], "BrowseDescription": [[39, "browsedescription"], [40, "browsedescription"]], "BrowseDirection": [[39, "browsedirection"], [40, "browsedirection"]], "BrowseNextRequest": [[39, "browsenextrequest"], [40, "browsenextrequest"]], "BrowseNextResponse": [[39, "browsenextresponse"], [40, "browsenextresponse"]], "BrowsePath": [[39, "browsepath"], [40, "browsepath"]], "BrowsePathResult": [[39, "browsepathresult"], [40, "browsepathresult"]], "BrowsePathTarget": [[39, "browsepathtarget"], [40, "browsepathtarget"]], "BrowseRequest": [[39, "browserequest"], [40, "browserequest"]], "BrowseResponse": [[39, "browseresponse"], [40, "browseresponse"]], "BrowseResult": [[39, "browseresult"], [40, "browseresult"]], "BrowseResultMask": [[39, "browseresultmask"], [40, "browseresultmask"]], "Browsing": [[22, "browsing"]], "Build Options": [[0, "build-options"]], "BuildInfo": [[39, "buildinfo"], [40, "buildinfo"]], "Building Debian Packages inside Docker Container with CMake on Ubuntu or Debian": [[0, "building-debian-packages-inside-docker-container-with-cmake-on-ubuntu-or-debian"]], "Building a Simple Client": [[25, "building-a-simple-client"]], "Building a Simple Server": [[32, "building-a-simple-server"]], "Building on OS X": [[0, "building-on-os-x"]], "Building on OpenBSD": [[0, "building-on-openbsd"]], "Building open62541": [[0, "building-open62541"]], "Building the Examples": [[0, "building-the-examples"]], "Building the Library": [[0, "building-the-library"]], "Building with CMake on Ubuntu or Debian": [[0, "building-with-cmake-on-ubuntu-or-debian"]], "Building with CMake on Windows": [[0, "building-with-cmake-on-windows"]], "Builtin Types": [[39, "builtin-types"]], "Byte": [[39, "byte"]], "ByteString": [[39, "bytestring"]], "CallMethodRequest": [[39, "callmethodrequest"], [40, "callmethodrequest"]], "CallMethodResult": [[39, "callmethodresult"], [40, "callmethodresult"]], "CallRequest": [[39, "callrequest"], [40, "callrequest"]], "CallResponse": [[39, "callresponse"], [40, "callresponse"]], "CancelRequest": [[39, "cancelrequest"], [40, "cancelrequest"]], "CancelResponse": [[39, "cancelresponse"], [40, "cancelresponse"]], "Case 0": [[7, "case-0"]], "Case 1": [[8, "case-1"]], "Case 2": [[9, "case-2"]], "Case 3": [[10, "case-3"]], "Case 4": [[11, "case-4"]], "Certificate Password Callback": [[22, "certificate-password-callback"]], "ChannelSecurityToken": [[39, "channelsecuritytoken"], [40, "channelsecuritytoken"]], "Client": [[1, "client"]], "Client Configuration": [[1, "client-configuration"]], "Client Lifecycle": [[1, "client-lifecycle"]], "Client Utility Functions": [[1, "client-utility-functions"]], "CloseSecureChannelRequest": [[39, "closesecurechannelrequest"], [40, "closesecurechannelrequest"]], "CloseSecureChannelResponse": [[39, "closesecurechannelresponse"], [40, "closesecurechannelresponse"]], "CloseSessionRequest": [[39, "closesessionrequest"], [40, "closesessionrequest"]], "CloseSessionResponse": [[39, "closesessionresponse"], [40, "closesessionresponse"]], "Combination of multiple nodesets": [[13, "combination-of-multiple-nodesets"]], "Common Definitions": [[5, "common-definitions"]], "ComplexNumberType": [[39, "complexnumbertype"], [40, "complexnumbertype"]], "ConfigurationVersionDataType": [[39, "configurationversiondatatype"], [40, "configurationversiondatatype"]], "Connect to a Server": [[1, "connect-to-a-server"]], "Connecting a Variable with a Physical Process": [[30, "connecting-a-variable-with-a-physical-process"]], "Connection Attrbiutes": [[1, "connection-attrbiutes"]], "Connection Manager": [[17, "connection-manager"]], "Connection State": [[5, "connection-state"]], "Connection configuration": [[1, "connection-configuration"]], "Connections": [[21, "connections"]], "ContentFilter": [[39, "contentfilter"], [40, "contentfilter"]], "ContentFilterElement": [[39, "contentfilterelement"], [40, "contentfilterelement"]], "ContentFilterElementResult": [[39, "contentfilterelementresult"], [40, "contentfilterelementresult"]], "ContentFilterResult": [[39, "contentfilterresult"], [40, "contentfilterresult"]], "ContinuationPoint": [[39, "continuationpoint"], [40, "continuationpoint"]], "Contributing": [[12, "contributing"]], "Convenience macros for complex types": [[5, "convenience-macros-for-complex-types"], [41, "convenience-macros-for-complex-types"]], "Core Concepts of OPC UA": [[6, "core-concepts-of-opc-ua"]], "Counter": [[39, "counter"], [40, "counter"]], "CreateMonitoredItemsRequest": [[39, "createmonitoreditemsrequest"], [40, "createmonitoreditemsrequest"]], "CreateMonitoredItemsResponse": [[39, "createmonitoreditemsresponse"], [40, "createmonitoreditemsresponse"]], "CreateSessionRequest": [[39, "createsessionrequest"], [40, "createsessionrequest"]], "CreateSessionResponse": [[39, "createsessionresponse"], [40, "createsessionresponse"]], "CreateSubscriptionRequest": [[39, "createsubscriptionrequest"], [40, "createsubscriptionrequest"]], "CreateSubscriptionResponse": [[39, "createsubscriptionresponse"], [40, "createsubscriptionresponse"]], "Creates a PKCS #10 DER encoded certificate request signed with the server\u2019s private key": [[22, "creates-a-pkcs-10-der-encoded-certificate-request-signed-with-the-server-s-private-key"]], "Creating object instances": [[13, "creating-object-instances"]], "Cryptography Helpers": [[5, "cryptography-helpers"], [41, "cryptography-helpers"]], "CurrencyUnitType": [[39, "currencyunittype"], [40, "currencyunittype"]], "Custom Callback Implementation": [[21, "custom-callback-implementation"]], "Custom Data Types": [[1, "custom-data-types"], [22, "custom-data-types"]], "Data Source Callback": [[22, "data-source-callback"]], "Data Type": [[6, "data-type"]], "Data Types": [[39, "data-types"]], "DataChangeFilter": [[39, "datachangefilter"], [40, "datachangefilter"]], "DataChangeNotification": [[39, "datachangenotification"], [40, "datachangenotification"]], "DataChangeTrigger": [[39, "datachangetrigger"], [40, "datachangetrigger"]], "DataSetFieldContentMask": [[39, "datasetfieldcontentmask"], [40, "datasetfieldcontentmask"]], "DataSetFieldFlags": [[39, "datasetfieldflags"], [40, "datasetfieldflags"]], "DataSetFields": [[21, "datasetfields"]], "DataSetMetaDataType": [[39, "datasetmetadatatype"], [40, "datasetmetadatatype"]], "DataSetOrderingType": [[39, "datasetorderingtype"], [40, "datasetorderingtype"]], "DataSetReader": [[21, "datasetreader"]], "DataSetReaderDataType": [[39, "datasetreaderdatatype"], [40, "datasetreaderdatatype"]], "DataSetWriter": [[21, "datasetwriter"]], "DataSetWriterDataType": [[39, "datasetwriterdatatype"], [40, "datasetwriterdatatype"]], "DataTypeAttributes": [[39, "datatypeattributes"], [40, "datatypeattributes"]], "DataTypeDescription": [[39, "datatypedescription"], [40, "datatypedescription"]], "DataTypeNode": [[6, "datatypenode"], [19, "datatypenode"]], "DataTypeSchemaHeader": [[39, "datatypeschemaheader"], [40, "datatypeschemaheader"]], "DataValue": [[39, "datavalue"]], "DatagramConnectionTransport2DataType": [[39, "datagramconnectiontransport2datatype"], [40, "datagramconnectiontransport2datatype"]], "DatagramConnectionTransportDataType": [[39, "datagramconnectiontransportdatatype"], [40, "datagramconnectiontransportdatatype"]], "DatagramDataSetReaderTransportDataType": [[39, "datagramdatasetreadertransportdatatype"], [40, "datagramdatasetreadertransportdatatype"]], "DatagramWriterGroupTransport2DataType": [[39, "datagramwritergrouptransport2datatype"], [40, "datagramwritergrouptransport2datatype"]], "DatagramWriterGroupTransportDataType": [[39, "datagramwritergrouptransportdatatype"], [40, "datagramwritergrouptransportdatatype"]], "DateString": [[39, "datestring"], [40, "datestring"]], "DateTime": [[39, "datetime"]], "DeadbandType": [[39, "deadbandtype"], [40, "deadbandtype"]], "Debian": [[0, "debian"]], "Debug Build Options": [[0, "debug-build-options"]], "DecimalDataType": [[39, "decimaldatatype"], [40, "decimaldatatype"]], "DecimalString": [[39, "decimalstring"], [40, "decimalstring"]], "Default Node Attributes": [[5, "default-node-attributes"], [41, "default-node-attributes"]], "DeleteAtTimeDetails": [[39, "deleteattimedetails"], [40, "deleteattimedetails"]], "DeleteEventDetails": [[39, "deleteeventdetails"], [40, "deleteeventdetails"]], "DeleteMonitoredItemsRequest": [[39, "deletemonitoreditemsrequest"], [40, "deletemonitoreditemsrequest"]], "DeleteMonitoredItemsResponse": [[39, "deletemonitoreditemsresponse"], [40, "deletemonitoreditemsresponse"]], "DeleteNodesItem": [[39, "deletenodesitem"], [40, "deletenodesitem"]], "DeleteNodesRequest": [[39, "deletenodesrequest"], [40, "deletenodesrequest"]], "DeleteNodesResponse": [[39, "deletenodesresponse"], [40, "deletenodesresponse"]], "DeleteRawModifiedDetails": [[39, "deleterawmodifieddetails"], [40, "deleterawmodifieddetails"]], "DeleteReferencesItem": [[39, "deletereferencesitem"], [40, "deletereferencesitem"]], "DeleteReferencesRequest": [[39, "deletereferencesrequest"], [40, "deletereferencesrequest"]], "DeleteReferencesResponse": [[39, "deletereferencesresponse"], [40, "deletereferencesresponse"]], "DeleteSubscriptionsRequest": [[39, "deletesubscriptionsrequest"], [40, "deletesubscriptionsrequest"]], "DeleteSubscriptionsResponse": [[39, "deletesubscriptionsresponse"], [40, "deletesubscriptionsresponse"]], "Detailed SDK Features": [[0, "detailed-sdk-features"]], "DiagnosticInfo": [[39, "diagnosticinfo"]], "DiagnosticsLevel": [[39, "diagnosticslevel"], [40, "diagnosticslevel"]], "Discovery": [[1, "discovery"], [22, "discovery"], [22, "id5"]], "Discovery Service Set": [[6, "discovery-service-set"]], "Double": [[39, "double"]], "DoubleComplexNumberType": [[39, "doublecomplexnumbertype"], [40, "doublecomplexnumbertype"]], "Duplex": [[39, "duplex"], [40, "duplex"]], "Duration": [[39, "duration"], [40, "duration"]], "DurationString": [[39, "durationstring"], [40, "durationstring"]], "EUInformation": [[39, "euinformation"], [40, "euinformation"]], "EccEncryptedSecret": [[39, "eccencryptedsecret"], [40, "eccencryptedsecret"]], "ElementOperand": [[39, "elementoperand"], [40, "elementoperand"]], "Emitting events by calling methods": [[31, "emitting-events-by-calling-methods"]], "Endpoint URL Parser": [[5, "endpoint-url-parser"], [41, "endpoint-url-parser"]], "EndpointConfiguration": [[39, "endpointconfiguration"], [40, "endpointconfiguration"]], "EndpointDescription": [[39, "endpointdescription"], [40, "endpointdescription"]], "EndpointType": [[39, "endpointtype"], [40, "endpointtype"]], "EndpointUrlListDataType": [[39, "endpointurllistdatatype"], [40, "endpointurllistdatatype"]], "EnumDefinition": [[39, "enumdefinition"], [40, "enumdefinition"]], "EnumDescription": [[39, "enumdescription"], [40, "enumdescription"]], "EnumField": [[39, "enumfield"], [40, "enumfield"]], "EnumValueType": [[39, "enumvaluetype"], [40, "enumvaluetype"]], "Enumeration": [[39, "enumeration"], [40, "enumeration"]], "EphemeralKeyType": [[39, "ephemeralkeytype"], [40, "ephemeralkeytype"]], "Ethernet Connection Manager": [[17, "ethernet-connection-manager"]], "Event Loop": [[17, "event-loop"]], "Event Loop Subsystem": [[17, "event-loop-subsystem"]], "Event Source": [[17, "event-source"]], "EventFieldList": [[39, "eventfieldlist"], [40, "eventfieldlist"]], "EventFilter": [[39, "eventfilter"], [40, "eventfilter"]], "EventFilterResult": [[39, "eventfilterresult"], [40, "eventfilterresult"]], "EventLoop": [[22, "eventloop"]], "EventNotificationList": [[39, "eventnotificationlist"], [40, "eventnotificationlist"]], "EventNotifier": [[5, "eventnotifier"]], "EventNotifierType": [[39, "eventnotifiertype"], [40, "eventnotifiertype"]], "Events": [[22, "events"]], "Example RelativePaths": [[5, "example-relativepaths"], [41, "example-relativepaths"]], "Example SimpleAttributeOperands": [[5, "example-simpleattributeoperands"], [41, "example-simpleattributeoperands"]], "Example: Hello World Method": [[33, "example-hello-world-method"]], "ExceptionDeviationFormat": [[39, "exceptiondeviationformat"], [40, "exceptiondeviationformat"]], "ExpandedNodeId": [[39, "expandednodeid"]], "ExtensionObject": [[39, "extensionobject"]], "FieldMetaData": [[39, "fieldmetadata"], [40, "fieldmetadata"]], "FieldTargetDataType": [[39, "fieldtargetdatatype"], [40, "fieldtargetdatatype"]], "FilterOperator": [[39, "filteroperator"], [40, "filteroperator"]], "FindServersOnNetworkRequest": [[39, "findserversonnetworkrequest"], [40, "findserversonnetworkrequest"]], "FindServersOnNetworkResponse": [[39, "findserversonnetworkresponse"], [40, "findserversonnetworkresponse"]], "FindServersRequest": [[39, "findserversrequest"], [40, "findserversrequest"]], "FindServersResponse": [[39, "findserversresponse"], [40, "findserversresponse"]], "Float": [[39, "float"]], "Forward Declarations": [[5, "forward-declarations"]], "Further tasks": [[25, "further-tasks"]], "Generated Data Type Definitions": [[39, "generated-data-type-definitions"]], "Generating events": [[31, "generating-events"]], "Generic Type Handling": [[39, "generic-type-handling"]], "GenericAttributeValue": [[39, "genericattributevalue"], [40, "genericattributevalue"]], "GenericAttributes": [[39, "genericattributes"], [40, "genericattributes"]], "GetEndpointsRequest": [[39, "getendpointsrequest"], [40, "getendpointsrequest"]], "GetEndpointsResponse": [[39, "getendpointsresponse"], [40, "getendpointsresponse"]], "Getting Help": [[12, "getting-help"]], "Getting started": [[13, "getting-started"]], "Global Node Lifecycle": [[19, "global-node-lifecycle"]], "Guid": [[39, "guid"]], "Highlevel Client Functionality": [[2, "highlevel-client-functionality"]], "Historical Access": [[2, "historical-access"], [22, "historical-access"]], "HistoryData": [[39, "historydata"], [40, "historydata"]], "HistoryEvent": [[39, "historyevent"], [40, "historyevent"]], "HistoryEventFieldList": [[39, "historyeventfieldlist"], [40, "historyeventfieldlist"]], "HistoryModifiedData": [[39, "historymodifieddata"], [40, "historymodifieddata"]], "HistoryReadRequest": [[39, "historyreadrequest"], [40, "historyreadrequest"]], "HistoryReadResponse": [[39, "historyreadresponse"], [40, "historyreadresponse"]], "HistoryReadResult": [[39, "historyreadresult"], [40, "historyreadresult"]], "HistoryReadValueId": [[39, "historyreadvalueid"], [40, "historyreadvalueid"]], "HistoryUpdateDetails": [[39, "historyupdatedetails"], [40, "historyupdatedetails"]], "HistoryUpdateRequest": [[39, "historyupdaterequest"], [40, "historyupdaterequest"]], "HistoryUpdateResponse": [[39, "historyupdateresponse"], [40, "historyupdateresponse"]], "HistoryUpdateResult": [[39, "historyupdateresult"], [40, "historyupdateresult"]], "HistoryUpdateType": [[39, "historyupdatetype"], [40, "historyupdatetype"]], "IdType": [[39, "idtype"], [40, "idtype"]], "IdentityCriteriaType": [[39, "identitycriteriatype"], [40, "identitycriteriatype"]], "IdentityMappingRuleType": [[39, "identitymappingruletype"], [40, "identitymappingruletype"]], "ImageBMP": [[39, "imagebmp"], [40, "imagebmp"]], "ImageGIF": [[39, "imagegif"], [40, "imagegif"]], "ImageJPG": [[39, "imagejpg"], [40, "imagejpg"]], "ImagePNG": [[39, "imagepng"], [40, "imagepng"]], "Increase Array Values Method": [[33, "increase-array-values-method"]], "Index": [[39, "index"], [40, "index"]], "Information Model Callbacks": [[22, "information-model-callbacks"]], "Information Modelling": [[6, "information-modelling"]], "Int16": [[39, "int16"]], "Int32": [[39, "int32"]], "Int64": [[39, "int64"]], "IntegerId": [[39, "integerid"], [40, "integerid"]], "Interacting with Objects": [[22, "interacting-with-objects"]], "InterfaceAdminStatus": [[39, "interfaceadminstatus"], [40, "interfaceadminstatus"]], "InterfaceOperStatus": [[39, "interfaceoperstatus"], [40, "interfaceoperstatus"]], "Interrupt Manager": [[17, "interrupt-manager"]], "Introduction": [[12, "introduction"]], "IssuedIdentityToken": [[39, "issuedidentitytoken"], [40, "issuedidentitytoken"]], "JSON En/Decoding": [[39, "json-en-decoding"]], "JsonDataSetMessageContentMask": [[39, "jsondatasetmessagecontentmask"], [40, "jsondatasetmessagecontentmask"]], "JsonDataSetReaderMessageDataType": [[39, "jsondatasetreadermessagedatatype"], [40, "jsondatasetreadermessagedatatype"]], "JsonDataSetWriterMessageDataType": [[39, "jsondatasetwritermessagedatatype"], [40, "jsondatasetwritermessagedatatype"]], "JsonNetworkMessageContentMask": [[39, "jsonnetworkmessagecontentmask"], [40, "jsonnetworkmessagecontentmask"]], "JsonWriterGroupMessageDataType": [[39, "jsonwritergroupmessagedatatype"], [40, "jsonwritergroupmessagedatatype"]], "Key Value Map": [[5, "key-value-map"], [41, "key-value-map"]], "KeyValuePair": [[39, "keyvaluepair"], [40, "keyvaluepair"]], "Lifecycle States": [[5, "lifecycle-states"]], "Limits": [[22, "limits"]], "LiteralOperand": [[39, "literaloperand"], [40, "literaloperand"]], "Local MonitoredItems": [[22, "local-monitoreditems"]], "LocaleId": [[39, "localeid"], [40, "localeid"]], "LocalizedText": [[39, "localizedtext"]], "Logging Plugin API": [[18, "logging-plugin-api"]], "MQTT Connection Manager": [[17, "mqtt-connection-manager"]], "Main Build Options": [[0, "main-build-options"]], "MdnsDiscoveryConfiguration": [[39, "mdnsdiscoveryconfiguration"], [40, "mdnsdiscoveryconfiguration"]], "MessageSecurityMode": [[39, "messagesecuritymode"], [40, "messagesecuritymode"]], "Method Callbacks": [[22, "method-callbacks"]], "Method Calling": [[2, "method-calling"], [3, "method-calling"]], "Method Service Set": [[6, "method-service-set"]], "MethodAttributes": [[39, "methodattributes"], [40, "methodattributes"]], "MethodNode": [[6, "methodnode"], [19, "methodnode"]], "Minimizing the binary size": [[0, "minimizing-the-binary-size"]], "Misc Highlevel Functionality": [[2, "misc-highlevel-functionality"]], "ModelChangeStructureDataType": [[39, "modelchangestructuredatatype"], [40, "modelchangestructuredatatype"]], "ModelChangeStructureVerbMask": [[39, "modelchangestructureverbmask"], [40, "modelchangestructureverbmask"]], "ModificationInfo": [[39, "modificationinfo"], [40, "modificationinfo"]], "ModifyMonitoredItemsRequest": [[39, "modifymonitoreditemsrequest"], [40, "modifymonitoreditemsrequest"]], "ModifyMonitoredItemsResponse": [[39, "modifymonitoreditemsresponse"], [40, "modifymonitoreditemsresponse"]], "ModifySubscriptionRequest": [[39, "modifysubscriptionrequest"], [40, "modifysubscriptionrequest"]], "ModifySubscriptionResponse": [[39, "modifysubscriptionresponse"], [40, "modifysubscriptionresponse"]], "MonitoredItem Service Set": [[6, "monitoreditem-service-set"]], "MonitoredItemCreateRequest": [[39, "monitoreditemcreaterequest"], [40, "monitoreditemcreaterequest"]], "MonitoredItemCreateResult": [[39, "monitoreditemcreateresult"], [40, "monitoreditemcreateresult"]], "MonitoredItemModifyRequest": [[39, "monitoreditemmodifyrequest"], [40, "monitoreditemmodifyrequest"]], "MonitoredItemModifyResult": [[39, "monitoreditemmodifyresult"], [40, "monitoreditemmodifyresult"]], "MonitoredItemNotification": [[39, "monitoreditemnotification"], [40, "monitoreditemnotification"]], "MonitoredItems": [[4, "monitoreditems"]], "MonitoringMode": [[39, "monitoringmode"], [40, "monitoringmode"]], "MonitoringParameters": [[39, "monitoringparameters"], [40, "monitoringparameters"]], "NamingRuleType": [[39, "namingruletype"], [40, "namingruletype"]], "NegotiationStatus": [[39, "negotiationstatus"], [40, "negotiationstatus"]], "NetworkAddressDataType": [[39, "networkaddressdatatype"], [40, "networkaddressdatatype"]], "NetworkAddressUrlDataType": [[39, "networkaddressurldatatype"], [40, "networkaddressurldatatype"]], "NetworkGroupDataType": [[39, "networkgroupdatatype"], [40, "networkgroupdatatype"]], "Networking": [[22, "networking"]], "Node Addition and Deletion": [[22, "node-addition-and-deletion"]], "Node Lifecycle: Constructors, Destructors and Node Contexts": [[19, "node-lifecycle-constructors-destructors-and-node-contexts"]], "Node Management": [[2, "node-management"], [3, "node-management"]], "Node Pointer": [[19, "node-pointer"]], "Node Store Plugin API": [[19, "node-store-plugin-api"]], "Node Type Lifecycle": [[19, "node-type-lifecycle"]], "Node Union": [[19, "node-union"]], "Node attributes for the different NodeClasses": [[6, "id11"]], "NodeAttributes": [[39, "nodeattributes"], [40, "nodeattributes"]], "NodeAttributesMask": [[39, "nodeattributesmask"], [40, "nodeattributesmask"]], "NodeClass": [[39, "nodeclass"], [40, "nodeclass"]], "NodeId": [[39, "nodeid"]], "NodeIds": [[26, "nodeids"]], "NodeManagement Service Set": [[6, "nodemanagement-service-set"]], "NodeReference": [[39, "nodereference"], [40, "nodereference"]], "NodeTypeDescription": [[39, "nodetypedescription"], [40, "nodetypedescription"]], "Nodes and Node Lifecycle": [[22, "nodes-and-node-lifecycle"]], "Nodestore": [[19, "nodestore"]], "NormalizedString": [[39, "normalizedstring"], [40, "normalizedstring"]], "NotificationMessage": [[39, "notificationmessage"], [40, "notificationmessage"]], "NumericRange": [[39, "numericrange"]], "OPC Unified Architecture": [[12, "opc-unified-architecture"]], "Object types, type hierarchies and instantiation": [[35, "object-types-type-hierarchies-and-instantiation"]], "ObjectAttributes": [[39, "objectattributes"], [40, "objectattributes"]], "ObjectNode": [[6, "objectnode"], [19, "objectnode"]], "ObjectTypeAttributes": [[39, "objecttypeattributes"], [40, "objecttypeattributes"]], "ObjectTypeNode": [[6, "objecttypenode"], [19, "objecttypenode"]], "Observing Attributes with Local MonitoredItems": [[34, "observing-attributes-with-local-monitoreditems"]], "OpaqueNumericRange": [[39, "opaquenumericrange"], [40, "opaquenumericrange"]], "OpenBSD": [[0, "openbsd"]], "OpenFileMode": [[39, "openfilemode"], [40, "openfilemode"]], "OpenSecureChannelRequest": [[39, "opensecurechannelrequest"], [40, "opensecurechannelrequest"]], "OpenSecureChannelResponse": [[39, "opensecurechannelresponse"], [40, "opensecurechannelresponse"]], "Operating a Discovery Server": [[22, "operating-a-discovery-server"]], "OptionSet": [[39, "optionset"], [40, "optionset"]], "Order": [[5, "order"]], "Outstanding Companion Spec Issues": [[13, "outstanding-companion-spec-issues"]], "OverrideValueHandling": [[39, "overridevaluehandling"], [40, "overridevaluehandling"]], "POSIX EventLop Implementation": [[17, "posix-eventlop-implementation"]], "ParsingResult": [[39, "parsingresult"], [40, "parsingresult"]], "PasswordOptionsMask": [[39, "passwordoptionsmask"], [40, "passwordoptionsmask"]], "PerformUpdateType": [[39, "performupdatetype"], [40, "performupdatetype"]], "PermissionType": [[39, "permissiontype"], [40, "permissiontype"]], "Plugin API": [[14, "plugin-api"]], "PortableNodeId": [[39, "portablenodeid"], [40, "portablenodeid"]], "PortableQualifiedName": [[39, "portablequalifiedname"], [40, "portablequalifiedname"]], "Prebuilt packages": [[0, "prebuilt-packages"]], "Print and Parse RelativePath Expressions": [[5, "print-and-parse-relativepath-expressions"], [41, "print-and-parse-relativepath-expressions"]], "Print and Parse SimpleAttributeOperand Expression": [[5, "print-and-parse-simpleattributeoperand-expression"], [41, "print-and-parse-simpleattributeoperand-expression"]], "PriorityMappingEntryType": [[39, "prioritymappingentrytype"], [40, "prioritymappingentrytype"]], "ProgramDiagnostic2DataType": [[39, "programdiagnostic2datatype"], [40, "programdiagnostic2datatype"]], "ProgramDiagnosticDataType": [[39, "programdiagnosticdatatype"], [40, "programdiagnosticdatatype"]], "Protocol": [[6, "protocol"]], "PubSub": [[21, "pubsub"], [22, "pubsub"]], "PubSub Build Options": [[0, "pubsub-build-options"]], "PubSub Information Model Representation": [[21, "pubsub-information-model-representation"]], "PubSub SecurityPolicy": [[20, "pubsub-securitypolicy"]], "PubSubConfiguration2DataType": [[39, "pubsubconfiguration2datatype"], [40, "pubsubconfiguration2datatype"]], "PubSubConfigurationDataType": [[39, "pubsubconfigurationdatatype"], [40, "pubsubconfigurationdatatype"]], "PubSubConfigurationRefDataType": [[39, "pubsubconfigurationrefdatatype"], [40, "pubsubconfigurationrefdatatype"]], "PubSubConfigurationRefMask": [[39, "pubsubconfigurationrefmask"], [40, "pubsubconfigurationrefmask"]], "PubSubConfigurationValueDataType": [[39, "pubsubconfigurationvaluedatatype"], [40, "pubsubconfigurationvaluedatatype"]], "PubSubConnectionDataType": [[39, "pubsubconnectiondatatype"], [40, "pubsubconnectiondatatype"]], "PubSubDiagnosticsCounterClassification": [[39, "pubsubdiagnosticscounterclassification"], [40, "pubsubdiagnosticscounterclassification"]], "PubSubGroupDataType": [[39, "pubsubgroupdatatype"], [40, "pubsubgroupdatatype"]], "PubSubKeyPushTargetDataType": [[39, "pubsubkeypushtargetdatatype"], [40, "pubsubkeypushtargetdatatype"]], "PubSubState": [[39, "pubsubstate"], [40, "pubsubstate"]], "PublishRequest": [[39, "publishrequest"], [40, "publishrequest"]], "PublishResponse": [[39, "publishresponse"], [40, "publishresponse"]], "PublishedDataItemsDataType": [[39, "publisheddataitemsdatatype"], [40, "publisheddataitemsdatatype"]], "PublishedDataSetCustomSourceDataType": [[39, "publisheddatasetcustomsourcedatatype"], [40, "publisheddatasetcustomsourcedatatype"]], "PublishedDataSetDataType": [[39, "publisheddatasetdatatype"], [40, "publisheddatasetdatatype"]], "PublishedDataSets": [[21, "publisheddatasets"]], "PublishedEventsDataType": [[39, "publishedeventsdatatype"], [40, "publishedeventsdatatype"]], "PublishedVariableDataType": [[39, "publishedvariabledatatype"], [40, "publishedvariabledatatype"]], "Publishing Fields": [[27, "publishing-fields"]], "QualifiedName": [[39, "qualifiedname"]], "Query Service Set": [[6, "query-service-set"]], "QueryDataDescription": [[39, "querydatadescription"], [40, "querydatadescription"]], "QueryDataSet": [[39, "querydataset"], [40, "querydataset"]], "QueryFirstRequest": [[39, "queryfirstrequest"], [40, "queryfirstrequest"]], "QueryFirstResponse": [[39, "queryfirstresponse"], [40, "queryfirstresponse"]], "QueryNextRequest": [[39, "querynextrequest"], [40, "querynextrequest"]], "QueryNextResponse": [[39, "querynextresponse"], [40, "querynextresponse"]], "Random Number Generator": [[5, "random-number-generator"], [41, "random-number-generator"]], "Range": [[39, "range"], [40, "range"]], "Range Definition": [[5, "range-definition"], [41, "range-definition"]], "RationalNumber": [[39, "rationalnumber"], [40, "rationalnumber"]], "Read Attribute": [[3, "read-attribute"]], "Read Attributes": [[2, "read-attributes"]], "ReadAnnotationDataDetails": [[39, "readannotationdatadetails"], [40, "readannotationdatadetails"]], "ReadAtTimeDetails": [[39, "readattimedetails"], [40, "readattimedetails"]], "ReadEventDetails": [[39, "readeventdetails"], [40, "readeventdetails"]], "ReadProcessedDetails": [[39, "readprocesseddetails"], [40, "readprocesseddetails"]], "ReadRawModifiedDetails": [[39, "readrawmodifieddetails"], [40, "readrawmodifieddetails"]], "ReadRequest": [[39, "readrequest"], [40, "readrequest"]], "ReadResponse": [[39, "readresponse"], [40, "readresponse"]], "ReadValueId": [[39, "readvalueid"], [40, "readvalueid"]], "ReaderGroup": [[21, "readergroup"]], "ReaderGroupDataType": [[39, "readergroupdatatype"], [40, "readergroupdatatype"]], "Reading and Writing Node Attributes": [[22, "reading-and-writing-node-attributes"]], "ReceiveQosPriorityDataType": [[39, "receiveqosprioritydatatype"], [40, "receiveqosprioritydatatype"]], "RedundancySupport": [[39, "redundancysupport"], [40, "redundancysupport"]], "RedundantServerDataType": [[39, "redundantserverdatatype"], [40, "redundantserverdatatype"]], "Reference Management": [[22, "reference-management"]], "ReferenceDescription": [[39, "referencedescription"], [40, "referencedescription"]], "ReferenceNode": [[39, "referencenode"], [40, "referencenode"]], "ReferenceType Bitfield Representation": [[19, "referencetype-bitfield-representation"]], "ReferenceTypeAttributes": [[39, "referencetypeattributes"], [40, "referencetypeattributes"]], "ReferenceTypeNode": [[6, "referencetypenode"], [19, "referencetypenode"]], "RegisterNodesRequest": [[39, "registernodesrequest"], [40, "registernodesrequest"]], "RegisterNodesResponse": [[39, "registernodesresponse"], [40, "registernodesresponse"]], "RegisterServer2Request": [[39, "registerserver2request"], [40, "registerserver2request"]], "RegisterServer2Response": [[39, "registerserver2response"], [40, "registerserver2response"]], "RegisterServerRequest": [[39, "registerserverrequest"], [40, "registerserverrequest"]], "RegisterServerResponse": [[39, "registerserverresponse"], [40, "registerserverresponse"]], "RegisteredServer": [[39, "registeredserver"], [40, "registeredserver"]], "Registering at a Discovery Server": [[22, "registering-at-a-discovery-server"]], "RelativePath": [[39, "relativepath"], [40, "relativepath"]], "RelativePathElement": [[39, "relativepathelement"], [40, "relativepathelement"]], "RepublishRequest": [[39, "republishrequest"], [40, "republishrequest"]], "RepublishResponse": [[39, "republishresponse"], [40, "republishresponse"]], "RequestHeader": [[39, "requestheader"], [40, "requestheader"]], "ResponseHeader": [[39, "responseheader"], [40, "responseheader"]], "Reverse Connect": [[22, "reverse-connect"], [22, "id10"]], "RolePermissionType": [[39, "rolepermissiontype"], [40, "rolepermissiontype"]], "RsaEncryptedSecret": [[39, "rsaencryptedsecret"], [40, "rsaencryptedsecret"]], "Rule Handling": [[5, "rule-handling"], [22, "rule-handling"]], "SByte": [[39, "sbyte"]], "SamplingIntervalDiagnosticsDataType": [[39, "samplingintervaldiagnosticsdatatype"], [40, "samplingintervaldiagnosticsdatatype"]], "SecureChannel Service Set": [[6, "securechannel-service-set"]], "Security and Encryption": [[22, "security-and-encryption"]], "SecurityGroup": [[21, "securitygroup"]], "SecurityGroupDataType": [[39, "securitygroupdatatype"], [40, "securitygroupdatatype"]], "SecurityPolicy": [[20, "securitypolicy"]], "SecurityTokenRequestType": [[39, "securitytokenrequesttype"], [40, "securitytokenrequesttype"]], "Select build artefacts": [[0, "select-build-artefacts"]], "SemanticChangeStructureDataType": [[39, "semanticchangestructuredatatype"], [40, "semanticchangestructuredatatype"]], "SemanticVersionString": [[39, "semanticversionstring"], [40, "semanticversionstring"]], "Server": [[22, "server"]], "Server Configuration": [[22, "server-configuration"]], "Server Configuration and Plugins": [[32, "server-configuration-and-plugins"]], "Server Description": [[22, "server-description"]], "Server Lifecycle": [[22, "server-lifecycle"], [22, "id3"], [32, "server-lifecycle"]], "ServerDiagnosticsSummaryDataType": [[39, "serverdiagnosticssummarydatatype"], [40, "serverdiagnosticssummarydatatype"]], "ServerOnNetwork": [[39, "serveronnetwork"], [40, "serveronnetwork"]], "ServerState": [[39, "serverstate"], [40, "serverstate"]], "ServerStatusDataType": [[39, "serverstatusdatatype"], [40, "serverstatusdatatype"]], "ServiceCounterDataType": [[39, "servicecounterdatatype"], [40, "servicecounterdatatype"]], "ServiceFault": [[39, "servicefault"], [40, "servicefault"]], "Services": [[1, "services"], [6, "services"]], "Session Handling": [[22, "session-handling"]], "SessionAuthenticationToken": [[39, "sessionauthenticationtoken"], [40, "sessionauthenticationtoken"]], "SessionDiagnosticsDataType": [[39, "sessiondiagnosticsdatatype"], [40, "sessiondiagnosticsdatatype"]], "SessionSecurityDiagnosticsDataType": [[39, "sessionsecuritydiagnosticsdatatype"], [40, "sessionsecuritydiagnosticsdatatype"]], "SessionlessInvokeRequestType": [[39, "sessionlessinvokerequesttype"], [40, "sessionlessinvokerequesttype"]], "SessionlessInvokeResponseType": [[39, "sessionlessinvokeresponsetype"], [40, "sessionlessinvokeresponsetype"]], "SetMonitoringModeRequest": [[39, "setmonitoringmoderequest"], [40, "setmonitoringmoderequest"]], "SetMonitoringModeResponse": [[39, "setmonitoringmoderesponse"], [40, "setmonitoringmoderesponse"]], "SetPublishingModeRequest": [[39, "setpublishingmoderequest"], [40, "setpublishingmoderequest"]], "SetPublishingModeResponse": [[39, "setpublishingmoderesponse"], [40, "setpublishingmoderesponse"]], "SetTriggeringRequest": [[39, "settriggeringrequest"], [40, "settriggeringrequest"]], "SetTriggeringResponse": [[39, "settriggeringresponse"], [40, "settriggeringresponse"]], "Setting up an event": [[31, "setting-up-an-event"]], "Signal Interrupt Manager": [[17, "signal-interrupt-manager"]], "SignatureData": [[39, "signaturedata"], [40, "signaturedata"]], "SignedSoftwareCertificate": [[39, "signedsoftwarecertificate"], [40, "signedsoftwarecertificate"]], "SimpleAttributeOperand": [[39, "simpleattributeoperand"], [40, "simpleattributeoperand"]], "SimpleTypeDescription": [[39, "simpletypedescription"], [40, "simpletypedescription"]], "StandaloneSubscribedDataSetDataType": [[39, "standalonesubscribeddatasetdatatype"], [40, "standalonesubscribeddatasetdatatype"]], "StandaloneSubscribedDataSetRefDataType": [[39, "standalonesubscribeddatasetrefdatatype"], [40, "standalonesubscribeddatasetrefdatatype"]], "Statistic Counters": [[5, "statistic-counters"]], "Statistics": [[22, "statistics"]], "StatusChangeNotification": [[39, "statuschangenotification"], [40, "statuschangenotification"]], "StatusCode": [[39, "statuscode"]], "StatusCodes": [[23, "statuscodes"]], "StatusResult": [[39, "statusresult"], [40, "statusresult"]], "String": [[39, "string"]], "Structure of a protocol message": [[6, "structure-of-a-protocol-message"]], "StructureDefinition": [[39, "structuredefinition"], [40, "structuredefinition"]], "StructureDescription": [[39, "structuredescription"], [40, "structuredescription"]], "StructureField": [[39, "structurefield"], [40, "structurefield"]], "StructureType": [[39, "structuretype"], [40, "structuretype"]], "SubscribedDataSet": [[21, "subscribeddataset"]], "SubscribedDataSetMirrorDataType": [[39, "subscribeddatasetmirrordatatype"], [40, "subscribeddatasetmirrordatatype"]], "Subscribing Fields": [[28, "subscribing-fields"]], "Subscription Service Set": [[6, "subscription-service-set"]], "SubscriptionAcknowledgement": [[39, "subscriptionacknowledgement"], [40, "subscriptionacknowledgement"]], "SubscriptionDiagnosticsDataType": [[39, "subscriptiondiagnosticsdatatype"], [40, "subscriptiondiagnosticsdatatype"]], "Subscriptions": [[4, "subscriptions"], [22, "subscriptions"]], "TCP Connection Manager": [[17, "tcp-connection-manager"]], "TargetVariablesDataType": [[39, "targetvariablesdatatype"], [40, "targetvariablesdatatype"]], "ThreeDCartesianCoordinates": [[39, "threedcartesiancoordinates"], [40, "threedcartesiancoordinates"]], "ThreeDFrame": [[39, "threedframe"], [40, "threedframe"]], "ThreeDOrientation": [[39, "threedorientation"], [40, "threedorientation"]], "ThreeDVector": [[39, "threedvector"], [40, "threedvector"]], "TimeString": [[39, "timestring"], [40, "timestring"]], "TimeZoneDataType": [[39, "timezonedatatype"], [40, "timezonedatatype"]], "Timed Callbacks": [[1, "timed-callbacks"], [22, "timed-callbacks"]], "Timer Policies": [[17, "timer-policies"]], "TimestampsToReturn": [[39, "timestampstoreturn"], [40, "timestampstoreturn"]], "TransferResult": [[39, "transferresult"], [40, "transferresult"]], "TransferSubscriptionsRequest": [[39, "transfersubscriptionsrequest"], [40, "transfersubscriptionsrequest"]], "TransferSubscriptionsResponse": [[39, "transfersubscriptionsresponse"], [40, "transfersubscriptionsresponse"]], "TranslateBrowsePathsToNodeIdsRequest": [[39, "translatebrowsepathstonodeidsrequest"], [40, "translatebrowsepathstonodeidsrequest"]], "TranslateBrowsePathsToNodeIdsResponse": [[39, "translatebrowsepathstonodeidsresponse"], [40, "translatebrowsepathstonodeidsresponse"]], "TransmitQosPriorityDataType": [[39, "transmitqosprioritydatatype"], [40, "transmitqosprioritydatatype"]], "Trigger Alarm events by changing States": [[29, "trigger-alarm-events-by-changing-states"]], "Triggering an event": [[31, "triggering-an-event"]], "TrustListDataType": [[39, "trustlistdatatype"], [40, "trustlistdatatype"]], "TrustListMasks": [[39, "trustlistmasks"], [40, "trustlistmasks"]], "Trustlist Helpers": [[5, "trustlist-helpers"], [41, "trustlist-helpers"]], "TsnFailureCode": [[39, "tsnfailurecode"], [40, "tsnfailurecode"]], "TsnListenerStatus": [[39, "tsnlistenerstatus"], [40, "tsnlistenerstatus"]], "TsnStreamState": [[39, "tsnstreamstate"], [40, "tsnstreamstate"]], "TsnTalkerStatus": [[39, "tsntalkerstatus"], [40, "tsntalkerstatus"]], "Tutorials": [[38, "tutorials"]], "UABinaryFileDataType": [[39, "uabinaryfiledatatype"], [40, "uabinaryfiledatatype"]], "UDP Connection Manager": [[17, "udp-connection-manager"]], "UInt16": [[39, "uint16"]], "UInt32": [[39, "uint32"]], "UInt64": [[39, "uint64"]], "UadpDataSetMessageContentMask": [[39, "uadpdatasetmessagecontentmask"], [40, "uadpdatasetmessagecontentmask"]], "UadpDataSetReaderMessageDataType": [[39, "uadpdatasetreadermessagedatatype"], [40, "uadpdatasetreadermessagedatatype"]], "UadpDataSetWriterMessageDataType": [[39, "uadpdatasetwritermessagedatatype"], [40, "uadpdatasetwritermessagedatatype"]], "UadpNetworkMessageContentMask": [[39, "uadpnetworkmessagecontentmask"], [40, "uadpnetworkmessagecontentmask"]], "UadpWriterGroupMessageDataType": [[39, "uadpwritergroupmessagedatatype"], [40, "uadpwritergroupmessagedatatype"]], "UnregisterNodesRequest": [[39, "unregisternodesrequest"], [40, "unregisternodesrequest"]], "UnregisterNodesResponse": [[39, "unregisternodesresponse"], [40, "unregisternodesresponse"]], "UnsignedRationalNumber": [[39, "unsignedrationalnumber"], [40, "unsignedrationalnumber"]], "Update the Server Certificate at Runtime": [[22, "update-the-server-certificate-at-runtime"]], "UpdateDataDetails": [[39, "updatedatadetails"], [40, "updatedatadetails"]], "UpdateEventDetails": [[39, "updateeventdetails"], [40, "updateeventdetails"]], "UpdateStructureDataDetails": [[39, "updatestructuredatadetails"], [40, "updatestructuredatadetails"]], "Updating variables manually": [[30, "updating-variables-manually"]], "UriString": [[39, "uristring"], [40, "uristring"]], "UserConfigurationMask": [[39, "userconfigurationmask"], [40, "userconfigurationmask"]], "UserIdentityToken": [[39, "useridentitytoken"], [40, "useridentitytoken"]], "UserManagementDataType": [[39, "usermanagementdatatype"], [40, "usermanagementdatatype"]], "UserNameIdentityToken": [[39, "usernameidentitytoken"], [40, "usernameidentitytoken"]], "UserTokenPolicy": [[39, "usertokenpolicy"], [40, "usertokenpolicy"]], "UserTokenType": [[39, "usertokentype"], [40, "usertokentype"]], "Using Alarms and Conditions Server": [[29, "using-alarms-and-conditions-server"]], "Using objects to structure information models": [[35, "using-objects-to-structure-information-models"]], "UtcTime": [[39, "utctime"], [40, "utctime"]], "Utility Functions": [[22, "utility-functions"]], "Value Callback": [[19, "value-callback"]], "ValueRank": [[5, "valuerank"], [6, "valuerank"]], "Variable Data Sources": [[30, "variable-data-sources"]], "Variable Value Callback": [[30, "variable-value-callback"]], "VariableAttributes": [[39, "variableattributes"], [40, "variableattributes"]], "VariableNode": [[6, "variablenode"], [19, "variablenode"]], "VariableTypeAttributes": [[39, "variabletypeattributes"], [40, "variabletypeattributes"]], "VariableTypeNode": [[6, "variabletypenode"], [19, "variabletypenode"]], "Variant": [[39, "variant"]], "Variants": [[26, "variants"]], "VersionTime": [[39, "versiontime"], [40, "versiontime"]], "View Service Set": [[6, "view-service-set"]], "ViewAttributes": [[39, "viewattributes"], [40, "viewattributes"]], "ViewDescription": [[39, "viewdescription"], [40, "viewdescription"]], "ViewNode": [[6, "viewnode"], [19, "viewnode"]], "Working with Data Types": [[26, "working-with-data-types"]], "Working with Objects and Object Types": [[35, "working-with-objects-and-object-types"]], "Working with Publish/Subscribe": [[27, "working-with-publish-subscribe"]], "Working with Variable Types": [[37, "working-with-variable-types"]], "Write Attribute": [[3, "write-attribute"]], "Write Attributes": [[2, "write-attributes"]], "Write Masks": [[5, "write-masks"]], "WriteRequest": [[39, "writerequest"], [40, "writerequest"]], "WriteResponse": [[39, "writeresponse"], [40, "writeresponse"]], "WriteValue": [[39, "writevalue"], [40, "writevalue"]], "WriterGroup": [[21, "writergroup"], [21, "id2"]], "WriterGroupDataType": [[39, "writergroupdatatype"], [40, "writergroupdatatype"]], "X509IdentityToken": [[39, "x509identitytoken"], [40, "x509identitytoken"]], "XML En/Decoding": [[39, "xml-en-decoding"]], "XML Nodeset Compiler": [[13, "xml-nodeset-compiler"]], "XVType": [[39, "xvtype"], [40, "xvtype"]], "XmlElement": [[39, "xmlelement"]], "open62541 Documentation": [[24, "open62541-documentation"]], "open62541 Features": [[12, "open62541-features"]]}, "docnames": ["building", "client", "client_highlevel", "client_highlevel_async", "client_subscriptions", "common", "core_concepts", "eventfilter_query/case_0", "eventfilter_query/case_1", "eventfilter_query/case_2", "eventfilter_query/case_3", "eventfilter_query/case_4", "index", "nodeset_compiler", "plugin", "plugin_accesscontrol", "plugin_certificategroup", "plugin_eventloop", "plugin_log", "plugin_nodestore", "plugin_securitypolicy", "pubsub", "server", "statuscodes", "toc", "tutorial_client_firststeps", "tutorial_datatypes", "tutorial_pubsub_publish", "tutorial_pubsub_subscribe", "tutorial_server_alarms_conditions", "tutorial_server_datasource", "tutorial_server_events", "tutorial_server_firststeps", "tutorial_server_method", "tutorial_server_monitoreditems", "tutorial_server_object", "tutorial_server_variable", "tutorial_server_variabletype", "tutorials", "types", "types_generated", "util"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["building.rst", "client.rst", "client_highlevel.rst", "client_highlevel_async.rst", "client_subscriptions.rst", "common.rst", "core_concepts.rst", "eventfilter_query/case_0.rst", "eventfilter_query/case_1.rst", "eventfilter_query/case_2.rst", "eventfilter_query/case_3.rst", "eventfilter_query/case_4.rst", "index.rst", "nodeset_compiler.rst", "plugin.rst", "plugin_accesscontrol.rst", "plugin_certificategroup.rst", "plugin_eventloop.rst", "plugin_log.rst", "plugin_nodestore.rst", "plugin_securitypolicy.rst", "pubsub.rst", "server.rst", "statuscodes.rst", "toc.rst", "tutorial_client_firststeps.rst", "tutorial_datatypes.rst", "tutorial_pubsub_publish.rst", "tutorial_pubsub_subscribe.rst", "tutorial_server_alarms_conditions.rst", "tutorial_server_datasource.rst", "tutorial_server_events.rst", "tutorial_server_firststeps.rst", "tutorial_server_method.rst", "tutorial_server_monitoreditems.rst", "tutorial_server_object.rst", "tutorial_server_variable.rst", "tutorial_server_variabletype.rst", "tutorials.rst", "types.rst", "types_generated.rst", "util.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 5, 6, 13, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35, 36, 37, 39, 41], "0": [0, 1, 4, 5, 6, 10, 11, 12, 13, 16, 17, 18, 19, 20, 21, 22, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41], "00": [19, 39], "000": [1, 21], "001": 21, "01": [5, 17, 19, 41], "010": 21, "011": 21, "02": [5, 13, 41], "03": [13, 20], "036": 39, "0370": [5, 41], "03u": 25, "04": [5, 41], "073": 39, "08": [5, 41], "09087e75": 39, "0db8": [5, 41], "0dfe": 39, "0u": 5, "0x00": 39, "0x00000000": 23, "0x00000080": 23, "0x00000400": 23, "0x002d0000": 23, "0x002e0000": 23, "0x002f0000": 23, "0x00300000": 23, "0x00960000": 23, "0x00a20000": 23, "0x00a30000": 23, "0x00a50000": 23, "0x00a60000": 23, "0x00a70000": 23, "0x00a80000": 23, "0x00a90000": 23, "0x00aa0000": 23, "0x00ba0000": 23, "0x00d90000": 23, "0x00dc0000": 23, "0x00dd0000": 23, "0x00df0000": 23, "0x00e00000": 23, "0x01": 39, "0x01160000": 23, "0x01170000": 23, "0x01180000": 23, "0x01u": 5, "0x02": 39, "0x40000000": 23, "0x406c0000": 23, "0x408f0000": 23, "0x40900000": 23, "0x40910000": 23, "0x40920000": 23, "0x40930000": 23, "0x40940000": 23, "0x40950000": 23, "0x40a40000": 23, "0x40bc0000": 23, "0x40c00000": 23, "0x40de0000": 23, "0x40e20000": 23, "0x80000000": 23, "0x80010000": 23, "0x80020000": 23, "0x80030000": 23, "0x80040000": 23, "0x80050000": 23, "0x80060000": 23, "0x80070000": 23, "0x80080000": 23, "0x80090000": 23, "0x800a0000": 23, "0x800b0000": 23, "0x800c0000": 23, "0x800d0000": 23, "0x800e0000": 23, "0x800f0000": 23, "0x80100000": 23, "0x80110000": 23, "0x80120000": 23, "0x80130000": 23, "0x80140000": 23, "0x80150000": 23, "0x80160000": 23, "0x80170000": 23, "0x80180000": 23, "0x80190000": 23, "0x801a0000": 23, "0x801b0000": 23, "0x801c0000": 23, "0x801d0000": 23, "0x801e0000": 23, "0x801f0000": 23, "0x80200000": 23, "0x80210000": 23, "0x80220000": 23, "0x80230000": 23, "0x80240000": 23, "0x80250000": 23, "0x80260000": 23, "0x80270000": 23, "0x80280000": 23, "0x802a0000": 23, "0x802b0000": 23, "0x802c0000": 23, "0x80310000": 23, "0x80320000": 23, "0x80330000": 23, "0x80340000": 23, "0x80350000": 23, "0x80360000": 23, "0x80370000": 23, "0x80380000": 23, "0x80390000": 23, "0x803a0000": 23, "0x803b0000": 23, "0x803c0000": 23, "0x803d0000": 23, "0x803e0000": 23, "0x803f0000": 23, "0x80400000": 23, "0x80410000": 23, "0x80420000": 23, "0x80430000": 23, "0x80440000": 23, "0x80450000": 23, "0x80460000": 23, "0x80470000": 23, "0x80480000": 23, "0x80490000": 23, "0x804a0000": 23, "0x804b0000": 23, "0x804c0000": 23, "0x804d0000": 23, "0x804e0000": 23, "0x804f0000": 23, "0x80500000": 23, "0x80510000": 23, "0x80520000": 23, "0x80530000": 23, "0x80540000": 23, "0x80550000": 23, "0x80560000": 23, "0x80570000": 23, "0x80580000": 23, "0x80590000": 23, "0x805a0000": 23, "0x805b0000": 23, "0x805c0000": 23, "0x805d0000": 23, "0x805e0000": 23, "0x805f0000": 23, "0x80600000": 23, "0x80610000": 23, "0x80620000": 23, "0x80630000": 23, "0x80640000": 23, "0x80650000": 23, "0x80660000": 23, "0x80670000": 23, "0x80680000": 23, "0x80690000": 23, "0x806a0000": 23, "0x806b0000": 23, "0x806d0000": 23, "0x806e0000": 23, "0x806f0000": 23, "0x80700000": 23, "0x80710000": 23, "0x80720000": 23, "0x80730000": 23, "0x80740000": 23, "0x80750000": 23, "0x80760000": 23, "0x80770000": 23, "0x80780000": 23, "0x80790000": 23, "0x807a0000": 23, "0x807b0000": 23, "0x807c0000": 23, "0x807d0000": 23, "0x807e0000": 23, "0x807f0000": 23, "0x80800000": 23, "0x80810000": 23, "0x80820000": 23, "0x80830000": 23, "0x80840000": 23, "0x80850000": 23, "0x80860000": 23, "0x80870000": 23, "0x80880000": 23, "0x80890000": 23, "0x808a0000": 23, "0x808b0000": 23, "0x808c0000": 23, "0x808d0000": 23, "0x808e0000": 23, "0x80970000": 23, "0x80980000": 23, "0x80990000": 23, "0x809a0000": 23, "0x809b0000": 23, "0x809d0000": 23, "0x809e0000": 23, "0x809f0000": 23, "0x80a00000": 23, "0x80a10000": 23, "0x80ab0000": 23, "0x80ac0000": 23, "0x80ad0000": 23, "0x80ae0000": 23, "0x80af0000": 23, "0x80b00000": 23, "0x80b10000": 23, "0x80b20000": 23, "0x80b30000": 23, "0x80b40000": 23, "0x80b50000": 23, "0x80b60000": 23, "0x80b70000": 23, "0x80b80000": 23, "0x80b90000": 23, "0x80bb0000": 23, "0x80bd0000": 23, "0x80be0000": 23, "0x80bf0000": 23, "0x80c10000": 23, "0x80c20000": 23, "0x80c30000": 23, "0x80c40000": 23, "0x80c50000": 23, "0x80c60000": 23, "0x80c80000": 23, "0x80c90000": 23, "0x80ca0000": 23, "0x80cb0000": 23, "0x80cc0000": 23, "0x80cd0000": 23, "0x80ce0000": 23, "0x80cf0000": 23, "0x80d00000": 23, "0x80d10000": 23, "0x80d20000": 23, "0x80d30000": 23, "0x80d40000": 23, "0x80d50000": 23, "0x80d60000": 23, "0x80d70000": 23, "0x80d80000": 23, "0x80da0000": 23, "0x80db0000": 23, "0x80e10000": 23, "0x80e30000": 23, "0x80e40000": 23, "0x80e50000": 23, "0x80e60000": 23, "0x810d0000": 23, "0x810e0000": 23, "0x810f0000": 23, "0x81100000": 23, "0x81110000": 23, "0x81120000": 23, "0x81130000": 23, "0x81140000": 23, "0x81150000": 23, "0x81190000": 23, "0x811a0000": 23, "0x811b0000": 23, "0x811c0000": 23, "0x811d0000": 23, "0x811e0000": 23, "0x811f0000": 23, "0x81200000": 23, "0xffff0000": 39, "1": [0, 4, 5, 6, 7, 9, 10, 11, 13, 17, 19, 20, 21, 25, 26, 27, 28, 29, 30, 31, 33, 35, 36, 37, 39, 40, 41], "10": [0, 4, 5, 9, 10, 11, 18, 19, 20, 24, 27, 28, 39, 40], "100": [0, 1, 18, 19, 21, 22, 27, 28, 29, 31, 34, 39], "1000": 22, "10000": 4, "10001": 6, "1000ll": 39, "1001": [13, 35], "1002": 13, "100kb": [0, 12], "100n": 17, "1024": [39, 40], "1048576": [39, 40], "10ll": 39, "10u": 5, "11": [5, 7, 9, 19, 39, 40], "11644473600ll": 39, "11u": 5, "12": [0, 5, 13, 17, 19, 39, 40], "1234": 26, "127": 39, "128": [19, 39, 40], "12u": 5, "13": [5, 7, 8, 9, 10, 11, 19, 39, 40], "131072": [39, 40], "13u": 5, "14": [0, 5, 6, 7, 8, 9, 10, 11, 19, 21, 39, 40], "147": 39, "14u": 5, "15": [5, 19, 39, 40], "15000": 22, "15u": 5, "16": [5, 19, 39, 40], "1601": 39, "16384": [39, 40], "16777216": [39, 40], "16u": 5, "17": [5, 19, 39, 40], "17u": 5, "18": [5, 39, 40], "18446744073709551615ull": 39, "1883": 17, "18u": 5, "19": [5, 39, 40], "1970": 39, "19u": 5, "1e9a461f5b58": 13, "1ll": 39, "1u": 5, "2": [0, 5, 6, 7, 10, 11, 13, 16, 19, 21, 26, 27, 28, 29, 33, 36, 37, 39, 40, 41], "20": [5, 10, 39, 40], "200": [0, 18], "2001": [5, 13, 41], "2008": 13, "200m": 22, "2011": 13, "2013": 0, "2015": [0, 32], "2018": 16, "2019": 39, "2024": 16, "2041": [7, 8, 9, 10, 11], "2048": [39, 40], "2097152": [39, 40], "20u": 5, "21": [5, 39, 40], "2147483647l": 39, "2147483648ll": 39, "21u": 5, "22": [5, 27, 28, 39, 40], "223": 39, "2234": [27, 28], "224": [27, 28], "2253": 22, "22u": 5, "23": [5, 17, 39, 40, 41], "23u": 5, "24": [5, 39, 40], "24u": 5, "25": [5, 39, 40], "250": 4, "255": 39, "256": [39, 40], "25u": 5, "26": [5, 39], "262144": [39, 40], "26501220": [39, 40], "26501348": [39, 40], "26501356": [39, 40], "26503268": [39, 40], "26537060": [39, 40], "26571383": [39, 40], "26632548": [39, 40], "27": [5, 39], "28": 39, "28600438": [39, 40], "29": 39, "294": 39, "295": 39, "296": 13, "297": 13, "2d": 37, "2dpoint": 37, "2u": 5, "2x3": 26, "3": [0, 5, 6, 9, 12, 13, 17, 18, 19, 21, 22, 26, 27, 28, 29, 39, 40, 41], "30": [10, 39], "300": [0, 18], "3000": 35, "3035": [7, 9], "31": 39, "32": [19, 39, 40], "32767": 39, "32768": [39, 40], "33": [13, 20], "33554431": [39, 40], "33554432": [39, 40], "34": 39, "345": [5, 41], "36": 39, "37": [12, 13, 39], "372": 39, "3u": 5, "4": [0, 5, 6, 9, 10, 13, 18, 19, 21, 22, 26, 28, 36, 39, 40, 41], "40": 13, "400": [0, 17, 18], "4001": 13, "4096": [39, 40], "4194304": [39, 40], "42": [26, 36, 39], "4294967295ul": 39, "43": 36, "443": 22, "446": 39, "45": [5, 13, 17, 41], "46": 13, "47": 13, "483": 39, "4840": [1, 22, 25, 27, 28, 32], "49": 6, "499b": 39, "4b8f": 39, "4u": 5, "5": [0, 5, 9, 19, 21, 22, 26, 33, 39, 40, 41], "50": 35, "500": [0, 4, 18], "5000": [9, 10, 11], "50000": 28, "5001": [8, 9, 10], "5002": 9, "5003": [7, 9], "5004": 9, "50831": 22, "512": [39, 40], "524288": [39, 40], "535": 39, "551": 39, "56": 6, "58": 13, "592": [7, 9, 10, 11], "595": [7, 8, 9, 10, 11], "5u": 5, "6": [0, 5, 6, 9, 17, 19, 22, 26, 39, 40, 41], "60": [22, 39, 40], "600": [0, 18], "6001": 13, "6002": 13, "6003": 13, "6004": 13, "6005": 13, "6006": 13, "601": [10, 11], "615": 39, "62541": [6, 12, 27, 28, 31, 33], "63": [6, 13, 39, 40], "64": [39, 40], "647": 39, "648": 39, "64kb": [17, 22], "65": 39, "65535": 39, "65536": [39, 40], "67": [5, 17, 41], "68": 13, "6u": 5, "7": [0, 5, 6, 9, 13, 19, 21, 22, 26, 39, 40, 41], "7001": 13, "7002": 13, "709": 39, "7334": [5, 41], "744": 39, "745238c6aeae": 39, "75": 1, "767": 39, "768": 39, "775": 39, "78": 13, "7u": 5, "8": [0, 5, 9, 19, 26, 39, 40], "807": 39, "808": 39, "8192": [39, 40], "8388608": [39, 40], "854": 39, "85a3": [5, 41], "870a": 39, "89": [5, 17, 41], "8a2e": [5, 41], "8e5e": 39, "8u": 5, "9": [5, 6, 9, 19, 26, 39, 40, 41], "9223372036854775807ll": 39, "954f": 39, "967": 39, "98": 12, "99": [0, 10, 11], "9u": 5, "A": [0, 1, 5, 6, 13, 17, 18, 19, 21, 22, 23, 26, 27, 29, 33, 34, 39, 41], "AND": [10, 11], "ANDed": 5, "And": [4, 6, 13, 17, 24, 35], "As": [5, 6, 12, 13, 30, 39, 41], "At": [1, 6, 12, 21, 35], "But": [0, 1, 4, 5, 6, 17, 19, 21, 32, 35, 39], "By": [0, 19, 29], "FOR": [7, 9, 10, 11], "For": [0, 1, 3, 5, 6, 12, 13, 15, 17, 19, 20, 21, 22, 28, 30, 32, 35, 39, 41], "If": [1, 2, 3, 5, 6, 13, 16, 17, 19, 20, 21, 22, 27, 29, 37, 39, 41], "In": [0, 5, 6, 13, 17, 19, 21, 22, 25, 29, 30, 31, 32, 35, 37, 39, 41], "It": [0, 1, 5, 6, 12, 13, 17, 19, 20, 21, 22, 23, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "NOT": [5, 17, 41], "No": [0, 5, 17, 23, 29, 39, 41], "Not": [0, 22, 23, 39], "ON": [0, 13], "OR": [7, 9], "ORed": 19, "Of": 35, "On": [6, 22, 39], "One": [13, 23, 33], "Or": 1, "Such": 1, "That": [4, 13, 17, 19, 22, 27, 32, 39], "The": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "Their": 39, "Then": [0, 5, 6, 17, 19, 20, 22, 39, 41], "There": [6, 13, 19, 22, 23], "These": [6, 21, 22, 23, 27, 35, 39], "To": [0, 5, 13, 17, 19, 21, 22, 29, 31, 32, 39, 41], "With": [0, 6, 30, 32], "__main__": 13, "__ua_client_addnod": 2, "__ua_client_addnode_async": 3, "__ua_client_asyncservic": [1, 3, 4], "__ua_client_call_async": 3, "__ua_client_connect": 1, "__ua_client_readattribut": 2, "__ua_client_servic": [1, 4], "__ua_client_writeattribut": 2, "__ua_client_writeattribute_async": 3, "__ua_server_addnod": 22, "__ua_server_read": 22, "__ua_server_writ": 22, "_begin": 22, "_clear": [1, 22], "_copi": 1, "_delet": [1, 22], "_finish": 22, "_free": 17, "_init": [26, 39], "_start": 17, "_ua_begin_decl": 16, "_unregisterdiscoveri": 22, "a2": [5, 41], "a_pubsubdatasetreader_createdatasetmirror": 21, "ab": [5, 17, 41], "abandon": 23, "abl": [6, 13, 21, 22, 23], "abort": [1, 5, 17, 19], "about": [1, 4, 20, 21, 22, 27, 34, 39], "abov": [0, 5, 13, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41], "absolut": [5, 19, 39], "abstract": [1, 6, 13, 21, 31], "ac": 15, "accept": [5, 17, 22, 23, 41], "access": [0, 1, 6, 12, 14, 17, 19, 20, 21, 23, 24, 36, 39], "accesscontrol": [1, 22], "accesshistorydatacap": 22, "accesshistoryeventscap": 22, "accesslevel": [3, 5, 6, 13, 19, 22, 29, 30, 36, 37, 39, 40, 41], "accesslevelex": [3, 6, 22], "accesslevelextyp": 24, "accessleveltyp": 24, "accessrestrict": 6, "accessrestrictiontyp": 24, "accommod": 32, "accompani": 6, "accord": [5, 6, 13, 18, 19, 22, 32, 41], "accordingli": [1, 15, 17, 21], "account": [1, 18, 22], "achiev": 2, "ack": [6, 17, 29], "ackedst": [22, 29], "ackedstatefield": 29, "acknowledg": [6, 23, 29], "acquir": 20, "act": [5, 17, 41], "action": [1, 6, 23], "activ": [0, 1, 6, 15, 17, 22, 23, 29], "activatesess": [6, 15, 23], "activatesessionrequest": 24, "activatesessionrespons": 24, "activest": [22, 29], "activestatefield": 29, "activestateid": 29, "activestateidfield": 29, "actual": [0, 6, 17, 19, 22, 29, 39], "actualsessiontimeout": [39, 40], "ad": [1, 6, 12, 13, 15, 17, 19, 21, 22, 24, 25, 29, 31, 32, 34, 37, 38, 39], "adapt": [6, 32], "add": [0, 1, 5, 6, 13, 19, 21, 22, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "add_execut": 0, "addcondition_1": 29, "addcondition_2": 29, "addconditionsourceobject": 29, "addcurrenttimedatasourcevari": 30, "addcurrenttimeexternaldatasourc": 30, "addcurrenttimevari": 30, "addcustomcallback": 21, "addcycliccallback": 17, "adddatasetfield": 27, "adddatasetread": 28, "adddatasetwrit": 27, "adddelayedcallback": 17, "adddiagnosticinfo": [39, 40], "adddiagnosticinfoss": [39, 40], "addednodeid": [19, 39, 40], "addgenerateeventmethod": 31, "addhelloworldmethod": 33, "addincint32arraymethod": 33, "addit": [0, 1, 5, 12, 13, 15, 17, 19, 20, 21, 24, 26, 27, 31, 39, 41], "addition": [1, 5, 6, 13, 22, 26, 41], "additionalhead": [39, 40], "additionali": [5, 41], "additionalinfo": 39, "additionalparameterstyp": 24, "addmatrixvari": 36, "addmonitoreditemtocurrenttimevari": 34, "addneweventtyp": 31, "addnod": [5, 6, 19, 22, 35, 41], "addnodescount": [39, 40], "addnodesitem": 24, "addnodesrequest": 24, "addnodesrespons": 24, "addnodesresult": 24, "addpublisheddataset": 27, "addpubsubconnect": [27, 28], "addpumpobjectinst": 35, "addpumptypeconstructor": 35, "addreadergroup": 28, "addrefer": 6, "addreferencescount": [39, 40], "addreferencesitem": 24, "addreferencesrequest": 24, "addreferencesrespons": 24, "address": [5, 6, 17, 21, 22, 23, 25, 27, 28, 29, 39, 40, 41], "addressspac": [6, 21, 28], "addresult": [21, 39, 40], "addresultss": [39, 40], "addsubscribedvari": 28, "addtimedcallback": 17, "addtotrustlist": 16, "addvaluecallbacktocurrenttimevari": 30, "addvari": [36, 37], "addvariable_1_triggeralarmofcondition_1": 29, "addvariable_2_changeseverityofcondition_2": 29, "addvariable_3_returncondition_1_tonormalst": 29, "addvariablefail": 37, "addvariabletype2dpoint": 37, "addwritergroup": 27, "adjust": [0, 1, 4, 5, 22, 32, 39, 41], "admin": 22, "advanc": [0, 24], "advantag": [6, 19], "aes256": 6, "affect": [13, 17, 23, 39, 40], "affectedtyp": [39, 40], "after": [0, 1, 5, 6, 13, 17, 19, 21, 22, 30, 39, 41], "afterward": [19, 39], "afterwrit": 21, "afterwritecallbackvariable_1": 29, "afterwritecallbackvariable_2": 29, "afterwritecallbackvariable_3": 29, "afterwritetim": 30, "ag": 23, "again": [17, 23, 29, 39], "against": [6, 37], "aggreg": [5, 23, 41], "aggregateconfigur": 24, "aggregatefilt": 24, "aggregatefilterresult": 24, "aggregatetyp": [39, 40], "aggregatetypes": [39, 40], "agnost": [17, 21], "ahead": [3, 22, 32], "alarm": [24, 38], "algorithm": [6, 20, 39, 40], "alia": [13, 39, 40], "alias": 13, "aliasnam": [39, 40], "aliasnamedatatyp": 24, "aliv": [6, 17], "all": [0, 1, 2, 3, 5, 6, 12, 13, 15, 17, 19, 21, 22, 23, 27, 28, 29, 31, 32, 33, 35, 36, 37, 39, 41], "alloc": [1, 5, 16, 17, 19, 20, 21, 22, 23, 26, 39, 41], "allocnetworkbuff": 17, "allow": [0, 1, 5, 6, 12, 13, 15, 17, 19, 21, 22, 23, 30, 37, 39, 41], "allowaddnod": 15, "allowaddrefer": 15, "allowallcertificateuri": 22, "allowbrowsenod": 15, "allowdeletenod": 15, "allowdeleterefer": 15, "allowemptyvari": 22, "allowhistoryupdatedeleterawmodifi": 15, "allowhistoryupdateupdatedata": 15, "allownonepolicypassword": 22, "allowtransfersubscript": 15, "alon": 27, "along": [13, 21], "alphabeticcod": [39, 40], "alreadi": [1, 5, 13, 16, 17, 19, 21, 22, 23, 25, 27, 35, 39, 41], "also": [0, 1, 5, 6, 12, 13, 16, 17, 19, 21, 22, 29, 32, 36, 39, 41], "altern": [0, 1, 19, 32], "although": [6, 13, 29], "alwai": [0, 1, 2, 5, 6, 13, 19, 20, 22, 33, 39, 41], "amalgam": [13, 32], "amb": 13, "amend": 6, "among": 23, "amqp": [17, 21], "an": [0, 1, 2, 3, 5, 6, 12, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41], "angl": [5, 41], "ani": [1, 4, 5, 6, 12, 13, 17, 19, 21, 22, 23, 25, 26, 31, 32, 33, 39, 41], "annot": 24, "annotationtim": [39, 40], "announc": [17, 22], "anonym": 6, "anonymousidentitytoken": 24, "anoth": [1, 6, 15, 22, 23, 29], "answer": [1, 25, 36], "anyth": 6, "anywai": 19, "apart": 39, "api": [0, 1, 3, 6, 12, 13, 17, 21, 22, 23, 24, 25, 27, 28], "app": 0, "appear": [13, 17, 23], "append": 39, "appl": 0, "appli": [6, 13, 19, 21, 22, 23], "applic": [0, 1, 2, 6, 12, 13, 17, 19, 21, 22, 23, 29, 30, 32, 37], "applicationdescript": [1, 22, 23, 24], "applicationdescripton": 1, "applicationinstancecertif": [20, 24], "applicationnam": [39, 40], "applicationtyp": [22, 24], "applicationuri": [1, 16, 22, 39, 40], "appropri": [1, 6, 22, 23, 25], "approxim": 22, "apt": 0, "ar": [0, 1, 2, 3, 4, 5, 6, 12, 13, 15, 17, 18, 19, 20, 21, 22, 23, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "arch": 24, "architectur": [17, 19, 24, 30, 39], "archiv": 0, "archlinux": 0, "arg": [0, 18], "argc": [13, 27, 28], "argument": [1, 3, 5, 6, 13, 17, 21, 22, 23, 24, 31, 33, 41], "argv": [13, 27, 28], "around": 39, "arp": [5, 41], "arrai": [1, 3, 5, 13, 17, 19, 22, 24, 25, 26, 36, 37, 38, 41], "arraydim": [36, 37], "arraydimens": [3, 6, 13, 19, 22, 26, 33, 36, 37, 39, 40], "arraydimensionss": [19, 26, 33, 36, 37, 39, 40], "arraylength": [33, 39], "arrays": 39, "arriv": [1, 22, 30], "arrow": 6, "artefact": 24, "artifact": 0, "ascend": 13, "ask": 22, "assert": 0, "assign": [19, 21, 22, 23, 35], "associ": [6, 16, 17, 21, 22, 39], "associatedserv": 13, "assum": [0, 13, 19, 30, 32, 35, 39], "assumpt": 19, "asymmetr": [6, 20], "asymmetricmodul": 20, "async": [1, 19, 21, 24], "asynchron": [0, 4, 5, 6, 12, 17, 22, 23, 24], "asyncoperationnotifycallback": 22, "asyncoperationtimeout": 22, "atom": [0, 39], "attach": [1, 4, 13, 15, 17, 19, 21, 22, 30, 33], "attack": [5, 41], "attempt": [1, 6, 13, 22, 39], "attent": [6, 22, 39], "attibuteid": 22, "attr": [2, 3, 22, 29, 30, 31, 36], "attr_id": 3, "attr_typ": [3, 22], "attr_typedesc": 3, "attrbiut": 24, "attribut": [1, 4, 13, 14, 20, 23, 24, 25, 31, 36, 37, 38], "attributeid": [2, 3, 4, 7, 8, 9, 10, 11, 22, 27, 28, 34, 36, 39, 40], "attributemask": 19, "attributeoperand": 24, "attributetyp": [2, 3, 19, 22], "attributevalu": [39, 40], "attributevaluess": [39, 40], "attributewritemask": 24, "attrid": 5, "audiodatatyp": 24, "audit": 6, "auditentryid": [39, 40], "aur": 0, "authent": [1, 6, 15], "authenticationmechan": [39, 40], "authenticationprofileuri": [39, 40], "authenticationtoken": [1, 6, 39, 40], "author": [6, 16], "authorit": 6, "authsecuritypolici": 1, "authsecuritypoliciess": 1, "authsecuritypolicyuri": 1, "auto": [1, 6, 17, 22, 39], "autogener": [21, 23], "autoid": 13, "autom": 32, "automat": [0, 1, 4, 6, 16, 17, 19, 21, 22, 24, 28, 29, 31, 35], "avail": [0, 1, 5, 6, 17, 21, 22, 23, 25, 26, 28, 39], "availabl": 23, "availablesequencenumb": [39, 40], "availablesequencenumberss": [39, 40], "avoid": [1, 22], "awai": 22, "axisinform": 24, "axisscaleenumer": 24, "axisscaletyp": [39, 40], "axisstep": [39, 40], "axisstepss": [39, 40], "b": [5, 13, 39, 40, 41], "b3blbjyyntqxiq": 39, "back": [4, 17, 22], "backend": [0, 19, 21, 30], "backendtyp": [19, 30], "background": [1, 2, 4, 12, 17, 19, 22], "backward": 22, "bacnet": 13, "bad": [22, 23, 39], "bad_requestcancelledbycli": 6, "badconnectionclos": 17, "badtypemismatch": 13, "balanc": 22, "band": 20, "barebon": 0, "base": [0, 1, 5, 6, 12, 13, 14, 15, 17, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 37, 41], "base64": 39, "basedatatyp": [5, 22, 39, 40, 41], "basedatavari": 6, "baseeventtyp": [5, 31, 41], "basenam": 13, "basetim": [17, 21], "basic": [0, 1, 6, 24, 25, 31, 32, 35, 38], "basic128rsa15": 12, "basic256": 12, "basic256sha256": [6, 12], "batch": [17, 27], "bc": 39, "bd": 22, "becaus": [2, 13, 21, 22, 23, 37, 39], "becom": [5, 17, 39, 41], "been": [1, 4, 5, 6, 12, 13, 19, 22, 23, 30, 31], "befor": [1, 4, 6, 13, 17, 19, 20, 21, 22, 23, 29, 30, 39], "beforehand": 13, "beforereadtim": 30, "beforewrit": 21, "begin": [6, 19, 39], "behalf": 15, "behav": 29, "behavior": 22, "behaviour": [6, 22, 23], "behind": 19, "being": [5, 6, 13, 19, 23, 28, 30], "belong": [6, 13, 17, 20, 26], "below": [0, 1, 5, 6, 13, 17, 18, 21, 22, 36, 41], "benefit": 13, "besid": [1, 12, 22, 29], "best": [6, 13], "better": 1, "between": [4, 5, 6, 13, 17, 19, 21, 22, 23, 26, 27, 28, 32, 39], "beyond": 23, "bigger": 22, "binari": [6, 12, 13, 16, 19, 24], "binaryencodingid": 39, "bit": [17, 19, 20, 21, 39], "bitfield": [6, 14, 24, 39], "bitfieldmaskdatatyp": 24, "blacklist": 13, "blacklistfil": 13, "blob": 13, "block": [1, 5, 17, 20, 22, 23, 41], "blog": 13, "blue": 6, "bnf": [5, 41], "bodi": [6, 7, 8, 9, 10, 11, 12, 13, 39, 40], "boiler": [5, 41], "bool": [15, 17, 39], "boolean": [3, 6, 13, 17, 24, 28, 31], "booltoggl": 28, "bootstrap": 19, "borrow": 39, "both": [1, 5, 6, 15, 17, 19, 22, 25, 39, 41], "bottom": 6, "bound": [17, 19, 23], "box": [6, 32], "bp": 35, "bpr": 35, "br": 26, "bracket": [5, 41], "branch": [0, 23], "break": 22, "brew": 0, "brief": [1, 21], "broke": 6, "broken": [1, 5], "broker": [6, 17, 21], "brokerconnectiontransportdatatyp": 24, "brokerdatasetreadertransportdatatyp": 24, "brokerdatasetwritertransportdatatyp": 24, "brokerless": 21, "brokertransportqualityofservic": 24, "brokerwritergrouptransportdatatyp": 24, "brows": [5, 6, 15, 19, 23, 24, 32, 41], "browsecallback": 3, "browsecount": [39, 40], "browsedescript": [22, 24], "browsedirect": 24, "browsenam": [2, 3, 5, 6, 13, 19, 22, 33, 39, 40, 41], "browsenext": 6, "browsenextcallback": 3, "browsenextcount": [39, 40], "browsenextrequest": 24, "browsenextrespons": 24, "browsepath": [5, 7, 8, 9, 10, 11, 22, 24, 41], "browsepathresult": 24, "browsepaths": [22, 39, 40], "browsepathss": [39, 40], "browsepathtarget": 24, "browserequest": 24, "browserespons": 24, "browseresult": 24, "browseresultmask": 24, "bsd": [13, 17, 39], "bubbl": 22, "buf": [5, 17, 41], "buffer": [17, 19, 20, 21, 39], "buflen": [5, 41], "bufsiz": 17, "bug": 12, "bugfix": 12, "bugtrack": 12, "build": [13, 22, 24, 35, 38, 39], "build_opt": 0, "build_shared_lib": 0, "builddat": [39, 40], "buildinfo": 24, "buildnumb": [39, 40], "buildopen62541": 0, "built": [0, 12, 25, 26, 39], "builtin": [0, 24], "builtintyp": [28, 39, 40], "busi": 23, "byte": [1, 3, 5, 6, 17, 20, 21, 22, 24, 41], "bytestr": [0, 7, 8, 9, 10, 11, 17, 24, 26], "c": [0, 12, 13, 16, 21, 22, 25, 27, 28, 29, 32, 39, 40], "c496578a": 39, "c99": [0, 12, 25, 32, 39], "ca": 13, "calcul": 21, "call": [0, 1, 4, 5, 6, 12, 13, 15, 17, 19, 20, 21, 22, 23, 24, 27, 28, 29, 30, 32, 33, 34, 38, 39, 41], "callabl": 6, "callback": [0, 2, 3, 4, 6, 13, 14, 15, 17, 24, 29, 31, 33, 34, 38], "callbackcontext": [2, 22], "callbackid": [1, 17, 21, 22], "callbacktestvariablenam": 29, "callbacktyp": 22, "callcount": [39, 40], "caller": [19, 20, 23], "callmethodrequest": [22, 24], "callmethodresult": [22, 24], "callrequest": [22, 24], "callrespons": 24, "can": [0, 1, 2, 3, 4, 5, 6, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 39, 41], "cancel": [1, 3, 6, 17, 22, 23], "cancelcount": [1, 39, 40], "cancelrequest": 24, "cancelrespons": 24, "cannot": [1, 4, 6, 13, 17, 19, 21, 22, 23, 29, 35, 39], "cap": 22, "cap_net_admin": 17, "capabl": [1, 6, 17, 21, 22], "car": 6, "care": [0, 13, 21, 22], "carri": [3, 6, 19, 22], "cartesiancoordin": [39, 40], "case": [0, 2, 5, 13, 15, 17, 19, 20, 21, 22, 29, 31, 32, 39], "case_0": 7, "case_1": 8, "case_2": 9, "case_3": 10, "case_4": 11, "cast": [17, 19], "categori": 18, "caus": [0, 6, 13, 22, 39], "cb": [17, 22], "cc": [0, 1, 22], "cc0": [1, 12, 22], "ccmake": 0, "cczero": 13, "cd": 0, "central": [13, 17], "cert": 22, "certain": [6, 22], "certgroup": 16, "certif": [1, 5, 6, 12, 16, 20, 23, 24, 41], "certifc": 22, "certificatedata": [39, 40], "certificategroupid": [16, 20, 22], "certificatesigningalgorithm": 20, "certificatethumbprint": 20, "certificatetypeid": [20, 22], "certificateverif": 1, "cf": [5, 17, 22, 41], "cfg": 21, "chain": 23, "chanc": 22, "chang": [0, 1, 4, 6, 12, 16, 19, 21, 22, 23, 24, 25, 27, 30, 31, 34, 36, 38, 39], "changecustomcallback": 21, "channel": [1, 6, 12, 20, 21, 22, 23], "channelabortcount": 5, "channelcontext": 20, "channelid": [39, 40], "channellifetim": [39, 40], "channelmodul": 20, "channelpurgecount": 5, "channelsecuritytoken": 24, "channelst": 1, "channeltimeoutcount": 5, "char": [1, 5, 7, 8, 9, 10, 11, 13, 18, 21, 22, 26, 27, 28, 35, 39, 41], "charact": [5, 17, 39, 41], "cheap": 17, "check": [0, 1, 4, 5, 6, 13, 17, 19, 21, 22, 33, 36, 39, 41], "checkout": 0, "child": [2, 6, 12, 19, 22, 33, 35], "childid": [2, 22], "children": [6, 13, 22, 29, 35], "choic": 1, "choos": 6, "chunk": [6, 12, 22, 23], "ciphertext": 20, "clamp": 23, "clang": [22, 32], "clash": 1, "class": 23, "classif": 39, "claus": 22, "clean": [1, 17, 18, 19, 22, 25, 35, 39], "cleanup": [15, 17, 22, 39], "clear": [1, 15, 16, 17, 18, 19, 20, 22, 39], "cleartext": 6, "client": [0, 3, 4, 5, 6, 12, 15, 16, 17, 18, 19, 21, 22, 23, 24, 29, 30, 31, 32, 34, 35, 36, 38, 39, 41], "client_config_default": [1, 25, 33], "client_highlevel": 25, "client_subscript": 34, "clientcertif": [39, 40], "clientconfig": [1, 21], "clientconnectiontim": [39, 40], "clientcontext": 1, "clientdescript": [1, 22, 39, 40], "clienthandl": [4, 39, 40], "clientlastcontacttim": [39, 40], "clientnonc": [39, 40], "clientprotocolvers": [39, 40], "clientsid": 25, "clientsignatur": [39, 40], "clientsoftwarecertif": [39, 40], "clientsoftwarecertificatess": [39, 40], "clientuserid": 22, "clientuseridhistori": [39, 40], "clientuseridhistorys": [39, 40], "clientuseridofsess": [39, 40], "clock": [17, 30, 39], "clock_gettim": 17, "clock_monotonic_raw": 17, "clock_realtim": 17, "clock_t": 39, "clone": 13, "close": [1, 5, 6, 17, 22, 23], "closeconnect": 17, "closesecurechannel": [6, 22], "closesecurechannelrequest": 24, "closesecurechannelrespons": 24, "closesess": [6, 15, 22], "closesessionrequest": 24, "closesessionrespons": 24, "cm": 17, "cmake": [13, 24], "cmake_build_typ": 0, "cmake_minimum_requir": 0, "cmakelist": 13, "cmd": 0, "cnc": 13, "code": [0, 1, 2, 5, 12, 13, 16, 17, 19, 20, 21, 22, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "collect": [22, 23, 27], "colon": [5, 39, 41], "com": [0, 13], "combin": [6, 12, 17, 19, 22, 23, 24, 39], "come": [1, 6, 17, 22, 23, 39], "comfort": 13, "comma": [5, 39, 41], "command": [0, 13, 18, 32], "comment": [29, 39], "commentfield": 29, "commentvalu": 29, "commercialkitchenequip": 13, "common": [3, 6, 12, 13, 19, 24, 35], "commonli": 21, "commun": [0, 6, 12, 21, 22, 23], "companion": [6, 12, 24], "compar": [5, 20, 22, 26, 39, 41], "comparecertif": 20, "comparecertificatethumbprint": 20, "comparison": 19, "compat": [0, 17, 22, 23, 39], "compil": [0, 5, 12, 24, 25, 30, 32, 39, 41], "complain": 19, "complet": [1, 21, 23], "complex": 24, "complexnumbertyp": 24, "complianc": 12, "compliant": 31, "compon": [0, 5, 6, 12, 21, 29, 41], "composit": 6, "compress": 19, "concept": [12, 24], "concern": 30, "concis": 22, "concret": 21, "condit": [0, 23, 24, 34, 38, 39], "conditionid": 22, "conditioninstance_1": 29, "conditioninstance_2": 29, "conditionnam": 22, "conditionrefresh": 29, "conditionsourc": [22, 29], "conditionsourceobject": 29, "conditiontyp": 22, "conditionvariabletyp": 29, "confidenti": 6, "config": [0, 1, 19, 21, 22, 24], "configur": [0, 5, 6, 16, 17, 18, 21, 23, 24, 27, 28, 38, 39, 41], "configurationel": [39, 40], "configurationmask": [39, 40], "configurationproperti": [39, 40], "configurationpropertiess": [39, 40], "configurationresult": [39, 40], "configurationresultss": [39, 40], "configurationvers": [21, 39, 40], "configurationversiondatatyp": 24, "configureds": [39, 40], "confirm": [23, 29], "confirmedst": [22, 29], "confirmedstatefield": 29, "confiugr": [1, 22], "conform": [0, 6, 12, 17, 22], "congest": 17, "connect": [0, 2, 6, 12, 14, 20, 23, 24, 25, 27, 28, 38, 39, 40], "connectedto": 6, "connectioncallback": 17, "connectionconfig": [21, 27, 28], "connectioncontext": 17, "connectionid": [17, 21, 27], "connectionidentifi": [21, 28], "connectionindex": [39, 40], "connectionmanag": 17, "connectionproperti": [21, 39, 40], "connectionpropertiess": [39, 40], "connectionss": [39, 40], "connectiontransportset": 21, "connectivitycheckinterv": 1, "connectstatu": 1, "conserv": [19, 22], "consid": [1, 2, 6, 13, 19, 21, 22, 39], "consider": 0, "consist": [0, 1, 5, 6, 13, 17, 18, 19, 22, 23, 36, 41], "const": [1, 2, 3, 4, 5, 15, 16, 17, 18, 19, 20, 21, 22, 25, 29, 30, 31, 33, 34, 35, 39, 41], "constant": [5, 21, 41], "constrain": [1, 6, 37], "constraint": [19, 23, 33, 35, 36, 37], "construct": [6, 19], "constructor": [6, 12, 14, 22, 24, 35], "consum": [21, 30], "consumpt": 12, "contain": [1, 3, 4, 5, 6, 12, 13, 17, 19, 20, 21, 22, 24, 25, 26, 27, 28, 33, 35, 39, 41], "containsnoloop": [3, 6, 19, 22, 39, 40], "content": [1, 5, 18, 19, 20, 21, 22, 23, 26, 27, 28, 32, 39, 41], "contentfilt": 24, "contentfilterel": 24, "contentfilterelementresult": 24, "contentfilterresult": 24, "context": [1, 4, 5, 6, 14, 15, 16, 17, 18, 20, 21, 22, 24, 30, 33, 34, 35, 41], "continu": [4, 5, 6, 12, 15, 23, 27, 30], "continuationpoint": [22, 24], "continuationpointss": [39, 40], "contradict": 22, "contrast": [13, 22], "contribut": 24, "contributor": 12, "control": [1, 12, 14, 17, 19, 21, 22, 24], "convei": 31, "conveni": [1, 2, 3, 13, 18, 22, 24, 39], "convent": [17, 35, 39], "convers": [6, 39], "convert": [5, 39, 41], "copi": [0, 1, 5, 12, 13, 16, 17, 19, 21, 22, 25, 26, 30, 33, 35, 37, 39, 41], "copyright": 16, "core": [12, 19, 21, 24, 32], "correct": [13, 19, 23, 39], "correctli": 19, "correspond": [3, 6, 13, 19, 20, 22, 27, 37, 39], "could": [1, 6, 13, 19, 22, 23, 35, 39], "council": 12, "count": [21, 39], "counter": [22, 24], "coupl": 21, "cours": 35, "cover": [6, 17, 35], "coverag": 0, "cp": 0, "cpu": 39, "cr": 3, "crankshaft": 6, "crash": 19, "creat": [0, 1, 5, 6, 7, 8, 9, 10, 11, 12, 15, 17, 18, 19, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 34, 35, 37, 39, 41], "createcallback": 4, "createclientnam": [39, 40], "createdat": [39, 40], "creatednodeid": 13, "createev": 31, "createmonitor": 21, "createmonitoreditem": 6, "createmonitoreditemscount": [39, 40], "createmonitoreditemsrequest": 24, "createmonitoreditemsrespons": 24, "createoptionalchild": 19, "createsess": 6, "createsessionid": [39, 40], "createsessionrequest": 24, "createsessionrespons": 24, "createsigningrequest": 20, "createsubscript": 6, "createsubscriptioncount": [39, 40], "createsubscriptionrequest": 24, "createsubscriptionrespons": 24, "creation": [4, 6, 21, 27, 28, 37], "creativ": 13, "creativecommon": 13, "credenti": 6, "criteria": [6, 22, 23, 39, 40], "criteriatyp": [39, 40], "critic": [1, 23], "crypto": [1, 20], "cryptograph": [5, 39, 41], "cryptographi": [6, 24], "cryptomodul": 20, "csr": [20, 22], "csv": [13, 23], "ctrl": [13, 22, 32], "ctt": 0, "cumulatedchannelcount": 5, "cumulatedsessioncount": [5, 39, 40], "cumulatedsubscriptioncount": [39, 40], "currenc": [39, 40], "currencyunittyp": 24, "current": [0, 1, 4, 5, 6, 12, 13, 17, 19, 21, 22, 23, 25, 28, 30, 32, 34, 39, 41], "currentchannelcount": 5, "currentkeepalivecount": [39, 40], "currentlifetimecount": [39, 40], "currentmonitoreditemscount": [39, 40], "currentnam": 30, "currentnodeid": 30, "currentpublishrequestsinqueu": [39, 40], "currentsessioncount": [5, 39, 40], "currentsubscriptioncount": [39, 40], "currentsubscriptionscount": [39, 40], "currenttim": [39, 40], "currenttimenodeid": 34, "curs": 0, "custom": [0, 6, 12, 13, 18, 19, 24, 33, 39], "custom_datatyp": [1, 22], "customdatatyp": [1, 22], "customtyp": 39, "cxx": 0, "cycl": [17, 21], "cyclic": [1, 17, 22], "cyclicdataset": [39, 40], "cypher": 20, "d": [17, 26], "dai": [25, 39], "daili": 0, "data": [0, 2, 5, 12, 13, 15, 17, 18, 19, 20, 21, 23, 24, 25, 27, 28, 29, 31, 33, 36, 37, 38, 41], "data1": [5, 39, 41], "data2": [5, 39, 41], "data3": [5, 39, 41], "data4": [5, 39, 41], "dataarrai": 39, "dataarrays": 39, "databas": 23, "datachang": [4, 19, 22], "datachangefilt": 24, "datachangenotif": 24, "datachangenotificationcallback": 34, "datachangenotificationscount": [39, 40], "datachangetrigg": 24, "datadiagnosticinfo": [39, 40], "datadiagnosticinfoss": [39, 40], "dataencod": [39, 40], "datagram": [21, 27], "datagramconnectiontransport2datatyp": 24, "datagramconnectiontransportdatatyp": 24, "datagramdatasetreadertransportdatatyp": 24, "datagramqo": [39, 40], "datagramqoss": [39, 40], "datagramwritergrouptransport2datatyp": 24, "datagramwritergrouptransportdatatyp": 24, "dataset": [21, 28], "datasetclass": [39, 40], "datasetclassess": [39, 40], "datasetclassid": [39, 40], "datasetfield": [24, 27], "datasetfieldconfig": [21, 27], "datasetfieldcontentmask": [21, 24], "datasetfieldflag": 24, "datasetfieldid": [27, 39, 40], "datasetfieldtyp": [21, 27], "datasetfold": [39, 40], "datasetfolders": [39, 40], "datasetmessag": [21, 28], "datasetmessagecontentmask": [39, 40], "datasetmetadata": [21, 28, 39, 40], "datasetmetadatatyp": 24, "datasetmirror": 21, "datasetnam": [21, 39, 40], "datasetoffset": [39, 40], "datasetord": [39, 40], "datasetorderingtyp": 24, "datasetread": [0, 24, 28, 39, 40], "datasetreaderconfig": 21, "datasetreaderdatatyp": 24, "datasetreaderid": 28, "datasetreaderidentifi": 21, "datasetreaderproperti": [39, 40], "datasetreaderpropertiess": [39, 40], "datasetreaderss": [39, 40], "datasetsourc": [39, 40], "datasetwrit": [24, 27, 39, 40], "datasetwriterconfig": [21, 27], "datasetwriterdatatyp": 24, "datasetwriterid": [21, 27, 28, 39, 40], "datasetwriterproperti": [21, 39, 40], "datasetwriterpropertiess": [39, 40], "datasetwriterss": [39, 40], "datasetwritertyp": 21, "datasourc": [13, 19, 22, 30], "datastatuscod": [39, 40], "datastatuscodess": [39, 40], "datatoreturn": [39, 40], "datatoreturns": [39, 40], "datatyp": [1, 3, 5, 6, 13, 19, 22, 26, 28, 33, 36, 37, 39, 40, 41], "datatypeattribut": 24, "datatypedefinit": 6, "datatypedescript": 24, "datatypeid": [39, 40], "datatypenod": [14, 24], "datatypeschemahead": 24, "datavalu": [2, 6, 19, 21, 22, 24, 30, 40], "datavaluess": [39, 40], "datavari": 6, "date": [1, 16, 17, 22, 25, 39], "datestr": 24, "datetim": [17, 24, 28, 30], "datetime_localtimeutcoffset": 17, "datetime_now": 17, "datetime_nowmonoton": 17, "daylightsavinginoffset": [39, 40], "dbl_max": 39, "dbl_min": 39, "dc": 17, "dcmake_build_typ": 13, "dcmake_install_prefix": 0, "de": [20, 23], "deactiv": 29, "deadband": 23, "deadbandtyp": 24, "deadbandvalu": [39, 40], "deal": 22, "dealloc": 39, "deauthent": 15, "debian": 24, "debug": [13, 24], "debuild": 0, "decid": 21, "decimaldatatyp": 24, "decimalstr": 24, "declar": [19, 24, 39], "decod": [1, 13, 21, 22, 23, 24, 27, 28], "decodedlength": 39, "decreas": 39, "decrypt": [1, 16, 20, 21, 22], "dedic": [1, 12, 21], "deep": [1, 5, 19, 21, 22, 39, 41], "default": [0, 1, 2, 4, 6, 13, 17, 18, 19, 21, 22, 24, 32, 36, 37, 39], "defaultencodingid": [39, 40], "defaultsecuritykeyservic": [39, 40], "defaultsecuritykeyservicess": [39, 40], "defin": [0, 1, 2, 3, 4, 5, 6, 12, 13, 16, 17, 18, 19, 20, 21, 22, 23, 26, 27, 28, 30, 31, 33, 34, 35, 36, 39, 40, 41], "defineobjecttyp": 35, "definit": [0, 2, 6, 12, 13, 19, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "degre": 1, "dei": 17, "delai": [1, 6, 17, 21, 22], "delet": [1, 4, 5, 6, 15, 19, 20, 21, 23, 24, 27, 28, 31, 32, 39, 41], "deleteattimedatacap": 22, "deleteattimedetail": 24, "deletebidirect": [2, 22, 39, 40], "deletecallback": 4, "deletecontext": 20, "deleteeventcap": 22, "deleteeventdetail": 24, "deleteeventnod": 22, "deletemonitor": 21, "deletemonitoreditem": 6, "deletemonitoreditemscount": [39, 40], "deletemonitoreditemsrequest": 24, "deletemonitoreditemsrespons": 24, "deletenod": [6, 19], "deletenodescount": [39, 40], "deletenodesitem": 24, "deletenodesrequest": 24, "deletenodesrespons": 24, "deleterawcap": 22, "deleterawmodifieddetail": 24, "deleterefer": [6, 22], "deletereferencescount": [39, 40], "deletereferencesitem": 24, "deletereferencesrequest": 24, "deletereferencesrespons": 24, "deletesubscript": [6, 39, 40], "deletesubscriptionscount": [39, 40], "deletesubscriptionsrequest": 24, "deletesubscriptionsrespons": 24, "deletetargetrefer": [2, 39, 40], "deliv": [22, 23], "delta": 33, "demo": 27, "demonstr": [27, 28], "denomin": [39, 40], "denot": 26, "dep": 13, "depend": [0, 1, 5, 6, 12, 13, 17, 19, 20, 22, 23, 29], "depends_n": 13, "depends_target": 13, "depends_typ": 13, "deprec": [13, 17, 20], "der": [16, 20, 24], "deref": 13, "deregist": [17, 22], "deregistereventsourc": 17, "deregisterinterrupt": 17, "deregistr": 17, "deriv": [23, 35, 39], "describ": [0, 5, 6, 13, 17, 21, 27, 28, 39, 41], "descript": [1, 3, 6, 13, 19, 21, 24, 28, 31, 33, 36, 39, 40], "design": [1, 17], "destin": [1, 19, 39], "destroi": [19, 21, 22], "destructor": [6, 12, 14, 22, 24, 35], "detach": 15, "detail": [1, 2, 6, 12, 13, 17, 20, 22, 23, 24, 27, 32, 39], "detect": [6, 22, 35], "determin": [13, 22, 23, 39], "dev": [0, 17], "develop": [0, 6, 12, 17, 19, 32], "devic": [6, 12, 17, 23, 27, 28, 35], "devicetyp": 35, "devicetypeid": 35, "dexpi": 13, "di": 13, "diagnost": [17, 39], "diagnosticinfo": [24, 40], "diagnosticinfoss": [39, 40], "diagnosticslevel": 24, "dialog": 23, "did": 23, "differ": [0, 1, 3, 4, 13, 17, 19, 21, 22, 28, 30, 36, 39], "different": 1, "differenti": [6, 39], "digit": [5, 17, 41], "dimens": [24, 26, 33, 36, 37, 39], "dimension": [6, 26, 33, 39], "dimensionss": 39, "direct": [6, 17, 19, 23], "directli": [1, 4, 22, 27, 39], "directori": 0, "disabl": [0, 1, 6, 17, 21, 22, 23, 29, 39], "disablecount": [39, 40], "disabledmonitoreditemcount": [39, 40], "discard": [6, 19], "discardedmessagecount": [39, 40], "discardoldest": [4, 39, 40], "disciplin": 17, "disconnect": [1, 6, 23, 25], "discourag": 13, "discov": 6, "discoveri": [0, 24], "discoveryaddress": [39, 40], "discoveryannouncer": [39, 40], "discoverycleanuptimeout": 22, "discoveryconfigur": [39, 40], "discoveryconfigurations": [39, 40], "discoverymaxmessages": [39, 40], "discoveryprofileuri": [39, 40], "discoveryserv": 22, "discoveryserverurl": 22, "discoveryurl": [6, 23, 39, 40], "discoveryurlss": [39, 40], "discrep": 17, "discuss": [6, 12], "dispatch": [1, 39], "displai": [0, 6], "displaynam": [3, 6, 13, 19, 22, 28, 29, 30, 31, 33, 35, 36, 37, 39, 40], "disregard": [5, 39], "dissemin": 12, "distinct": 28, "distinguish": 17, "distribut": [0, 12, 16, 21], "dive": 39, "dll": 0, "dn": [5, 41], "do": [1, 6, 12, 13, 19, 21, 22, 23, 31, 34], "doc": [0, 39], "doc_pdf": 0, "docker": 24, "document": [0, 5, 12, 17, 32, 39, 41], "doe": [0, 1, 4, 5, 6, 13, 16, 17, 19, 22, 23, 31, 32, 34, 37, 39, 41], "doesn": [1, 13, 22], "domain": [6, 12, 17], "domin": 23, "don": [1, 2, 4, 5, 19, 20, 22, 32, 33, 39, 41], "done": [0, 1, 13, 19, 20, 21], "doubl": [3, 6, 17, 24, 36, 37], "doublecomplexnumbertyp": 24, "down": [1, 5, 6, 22, 23, 41], "downdload": 32, "download": [0, 12, 13], "downtim": 1, "drive": [12, 32], "driven": 1, "drop": 17, "dry": 17, "dsf": 27, "dsfid": 21, "dsrid": 21, "dst": [1, 5, 19, 21, 39, 41], "dsw": 27, "dswid": 21, "dt": 25, "dtattr": 35, "dua_build_exampl": 13, "dua_information_model_autoload": 13, "dua_namespace_zero": 13, "due": [0, 23, 39], "dump": 0, "duplex": 24, "duplic": 19, "durat": 24, "durationstr": 24, "dure": [1, 4, 6, 13, 17, 19, 22, 27, 37], "dv": 26, "dynam": [0, 19, 20, 22, 26, 39], "e": [1, 5, 6, 12, 13, 17, 19, 21, 22, 23, 25, 26, 27, 39, 41], "each": [1, 2, 3, 5, 6, 12, 13, 17, 19, 20, 21, 22, 23, 28, 30, 33, 34, 35, 39, 41], "earli": [1, 22], "easi": [13, 25], "easiest": 2, "easili": 13, "easy_instal": 0, "eccencryptedsecret": 24, "ecomponenttyp": 21, "ed": [19, 39], "edit": [0, 19, 23], "effect": [6, 13, 17], "effici": [6, 21], "eg": 0, "egcc": 0, "eight": 6, "either": [1, 6, 17, 19, 22, 23, 39], "el": 17, "elaps": [1, 17], "electr": 6, "element": [1, 5, 6, 7, 8, 9, 10, 11, 23, 27, 33, 35, 39, 40], "elementdiagnosticinfo": [39, 40], "elementdiagnosticinfoss": [39, 40], "elementindex": [39, 40], "elementoperand": 24, "elementresult": [39, 40], "elementresultss": [39, 40], "elementss": [35, 39, 40], "elig": 17, "els": [13, 18, 22, 25, 27, 28, 29, 31], "email": 12, "embed": [0, 12, 21, 39], "emit": [12, 22, 24, 38], "emonitoringtyp": 21, "empti": [1, 5, 13, 17, 19, 21, 22, 37, 39, 41], "en": [13, 20, 22, 24, 28, 29, 30, 31, 33, 35, 36, 37], "enabl": [0, 6, 17, 21, 22, 23, 27, 28, 29, 32, 37, 39, 40], "enablecount": [39, 40], "enabledeltafram": 21, "enabledst": [22, 29], "enabledstatefield": 29, "enabledstateid": 29, "enabledstateidfield": 29, "enableinformationmodelmethod": 21, "enableretransmissionqueu": 22, "encapsul": [21, 27], "encod": [6, 12, 13, 19, 20, 23, 24, 26, 27, 40], "encodingmimetyp": [21, 27], "encount": [13, 22], "encrypt": [0, 6, 12, 20, 21, 24], "encryptingkei": [20, 21], "encryptionalgorithm": [20, 39, 40], "end": [5, 6, 21, 22, 23, 39, 41], "endif": [1, 2, 5, 15, 16, 17, 18, 19, 20, 21, 22, 23, 26, 39, 41], "endpoint": [1, 6, 15, 20, 22, 24, 39, 40], "endpointconfigur": 24, "endpointdescript": [1, 15, 24], "endpointdescriptionss": 1, "endpointss": [22, 39, 40], "endpointtyp": 24, "endpointurl": [1, 5, 21, 39, 40, 41], "endpointurllist": [39, 40], "endpointurllistdatatyp": 24, "endpointurllists": [39, 40], "endtim": [2, 39, 40], "endtimestamp": [2, 15], "enforc": 37, "engineeringunit": [23, 39, 40], "enough": [4, 17, 23, 31], "enqueu": 22, "ensur": [1, 5, 6, 19, 22, 39, 41], "entail": 6, "enter": 29, "enteringackedstatecallback": 29, "enteringconfirmedstatecallback": 29, "enteringenabledstatecallback": 29, "entir": [5, 6, 17, 26, 39, 41], "entiti": 27, "entri": [5, 19, 21, 23, 33, 39, 41], "entropi": [5, 41], "enum": [5, 17, 18, 19, 21, 22, 39, 40], "enumdatatyp": [39, 40], "enumdatatypess": [39, 40], "enumdefinit": 24, "enumdescript": 24, "enumer": 24, "enumfield": 24, "enumvaluetyp": 24, "environ": [0, 17, 25, 32], "eo": 39, "ephemeralkeytyp": 24, "epilogu": 22, "epoch": 39, "epol": 17, "eq": 26, "equal": [1, 5, 6, 39, 41], "equival": [17, 22, 23], "error": [0, 1, 2, 5, 6, 13, 17, 19, 20, 21, 22, 23, 27, 28, 36, 39, 41], "errorcount": [39, 40], "errror": 20, "escap": 24, "especi": [1, 6, 13, 22, 35], "essenti": 0, "establish": [1, 5, 6, 12, 17, 22, 23], "etc": [0, 17, 22], "eth": [5, 27, 28, 41], "eth0": 17, "ethernet": [6, 14, 24, 28], "ethertyp": 17, "euinform": 24, "eurang": [39, 40], "evalu": 22, "even": [6, 13, 32, 39], "event": [0, 1, 4, 5, 6, 12, 14, 19, 21, 23, 24, 34, 38, 39, 40, 41], "eventdata": [39, 40], "eventdatas": [39, 40], "eventfield": [4, 22, 39, 40], "eventfieldlist": 24, "eventfieldss": [39, 40], "eventfilt": [5, 7, 8, 9, 10, 11, 22, 24, 41], "eventfilterresult": 24, "eventid": [22, 31, 39, 40], "eventidss": [39, 40], "eventloop": [1, 17, 21, 24], "eventlop": [14, 24], "eventmessag": 31, "eventnodeid": [22, 31], "eventnotfi": 21, "eventnotifi": [3, 4, 6, 19, 22, 24, 29, 39, 40], "eventnotificationlist": 24, "eventnotificationscount": [39, 40], "eventnotifiertyp": 24, "eventqueueoverflowcount": [39, 40], "eventsever": 31, "eventsourc": 17, "eventsourcenam": [17, 31], "eventsourcetyp": 17, "eventss": [39, 40], "eventtempl": 21, "eventtim": 31, "eventtyp": [7, 8, 9, 10, 11, 22, 23, 31], "eventu": [19, 22], "everi": [0, 1, 4, 5, 6, 17, 18, 19, 21, 22, 26, 30, 33, 35, 36, 39, 41], "everywher": 17, "ex": [0, 25, 32], "exact": [6, 19, 39], "exactli": [4, 27, 35], "examin": [13, 32], "exampl": [1, 3, 6, 12, 13, 15, 17, 18, 19, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 35, 37, 38, 39], "example_nodeset": 13, "exce": [6, 23], "exceed": 23, "except": [1, 19, 26], "exceptiondeviationformat": 24, "exchang": [6, 12, 21, 32], "exclud": [5, 41], "execut": [0, 1, 3, 5, 6, 17, 19, 22, 23, 30, 31, 32, 33, 39, 40, 41], "exist": [1, 5, 6, 12, 13, 19, 21, 22, 23, 27, 39, 41], "existingnodesetxml": 13, "exit": 13, "exit_failur": [27, 28], "exit_success": [27, 28], "expandedid": 19, "expandednodeid": [6, 19, 24], "expect": [17, 19, 22, 23], "expectedencod": 21, "experiment": [0, 24], "expert": 13, "expir": [16, 21, 22, 23], "expirydatetim": 16, "explain": [0, 1], "explicitli": [1, 22, 33], "expon": [39, 40], "export": [0, 13], "expos": [1, 6, 19, 22, 29], "express": [21, 24, 39], "extend": [5, 6, 21, 22, 27, 39, 41], "extendedflags1": 21, "extens": [5, 6, 13, 21, 23, 27, 39, 41], "extensionfield": [39, 40], "extensionfieldss": [39, 40], "extensionobject": [13, 24], "extern": [0, 1, 5, 6, 13, 17, 19, 21, 22, 30, 39, 41], "externaldatavalu": 21, "externaleventloop": [1, 22], "externalnodeid": 19, "externalvalu": 30, "extract": [17, 39], "f": [5, 41], "f2a9603db28a": 39, "facet": 12, "factori": 17, "fail": [1, 5, 13, 17, 19, 22, 23, 25, 29, 31, 37, 39, 41], "failur": [6, 20, 23, 39], "fairli": 13, "fals": [1, 13, 17, 22, 29, 35, 36, 39], "far": 6, "fast": [13, 19, 21], "faster": 6, "fatal": 0, "fdi": 13, "fdt": 13, "featur": [6, 21, 22, 24, 39], "few": 17, "field": [1, 13, 19, 21, 22, 23, 24, 29, 31, 38, 39, 40], "fieldaddresult": 21, "fieldaddresultss": 21, "fieldconfig": 21, "fielddevic": 13, "fieldflag": [39, 40], "fieldid": 21, "fieldmetadata": 24, "fieldnam": 22, "fieldnamealia": [21, 27], "fieldssiz": [28, 39, 40], "fieldtargetdatatyp": [21, 24], "fig": [6, 13], "figur": [6, 21, 27], "file": [0, 13, 16, 18, 22, 23, 25, 30, 32, 39], "file_bsd": 13, "file_csv": 13, "file_n": 13, "filehead": [39, 40], "fileheaders": [39, 40], "files_bsd": 13, "fill": [4, 20, 22], "filltestdatasetmetadata": 28, "filter": [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 17, 21, 22, 23, 28, 31, 39, 40, 41], "filteroper": [7, 8, 9, 10, 11, 24], "filteroperand": [7, 8, 9, 10, 11, 39, 40], "filteroperandss": [39, 40], "filterresult": [39, 40], "final": [13, 19], "find": [0, 5, 13, 22, 35, 41], "find_packag": 0, "findserv": [1, 6], "findserversonnetwork": 6, "findserversonnetworkrequest": [22, 24], "findserversonnetworkrespons": 24, "findserversrequest": [22, 24], "findserversrespons": 24, "finish": [1, 17, 22, 23], "first": [0, 1, 5, 6, 12, 13, 17, 19, 20, 22, 31, 32, 36, 39, 41], "fit": [19, 32, 39], "five": 21, "fix": [13, 19, 39], "flag": [0, 13, 17, 21, 22, 27, 39], "flavour": 6, "flexibl": [2, 32], "float": [6, 24], "flow": [1, 17, 22], "flt_max": 39, "flt_min": 39, "focu": [6, 35], "focus": 13, "folder": [0, 1, 13, 22, 32], "folderbrowsenam": 28, "folderid": 28, "foldernam": 28, "follow": [0, 1, 2, 3, 4, 5, 6, 12, 13, 17, 18, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "footprint": 0, "forbid": 36, "forc": 1, "forget": [19, 22], "form": [5, 6, 16, 21, 41], "format": [0, 1, 5, 16, 18, 19, 22, 23, 39, 41], "forward": [1, 4, 17, 19, 22, 24, 39], "found": [0, 1, 5, 13, 19, 20, 22, 23, 25, 27, 39, 41], "foundat": [0, 12], "foundindex": 22, "founduri": 22, "four": [28, 39], "frame": [17, 22], "framework": [0, 6, 32], "fraunhof": 16, "free": [1, 12, 17, 20, 22, 39], "freed": [1, 5, 17, 19, 22, 39, 41], "freedom": 1, "freenetworkbuff": 17, "frequent": 22, "fresh": [0, 17, 19, 39], "freshli": 19, "from": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 35, 37, 39, 41], "frontend": 32, "frozen": 21, "full": [0, 1, 6, 13, 19, 22, 26], "fulli": [1, 5, 17], "function": [0, 5, 6, 12, 13, 17, 19, 20, 21, 24, 25, 26, 27, 29, 30, 35, 36, 37, 39, 41], "functon": 17, "further": [6, 20, 24, 30, 38, 39], "furthermor": [0, 1, 6, 12, 22, 35], "futur": [13, 39], "g": [0, 1, 5, 6, 12, 13, 17, 19, 21, 22, 26, 27, 39, 41], "gatewayserveruri": [39, 40], "gcc": [0, 22, 25, 32], "gear": 6, "gener": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 17, 19, 20, 21, 22, 23, 24, 26, 27, 29, 32, 37, 38], "generate_datatyp": 13, "generateattr": 31, "generatechildnodeid": 19, "generateeventmethodcallback": 31, "generatekei": 20, "generatenonc": 20, "genericattribut": 24, "genericattributevalu": 24, "get": [0, 1, 2, 4, 16, 17, 19, 20, 21, 22, 24, 30, 32, 35], "getendpoint": [1, 6], "getendpointsrequest": [22, 24], "getendpointsrespons": 24, "getlocalkeylength": 20, "getlocalsignatures": 20, "getnod": 19, "getnodecopi": 19, "getnodefromptr": 19, "getreferencetypeid": 19, "getrejectedlist": 16, "getremoteblocks": 20, "getremotekeylength": 20, "getremoteplaintextblocks": 20, "getremotesignatures": 20, "getsecuritykei": [20, 21], "gettrustlist": 16, "getuseraccesslevel": 15, "getuserexecut": 15, "getuserexecutableonobject": 15, "getuserrightsmask": 15, "giraud": 16, "git": [0, 13], "github": [0, 13], "give": [1, 6, 13, 31], "given": [1, 5, 6, 13, 19, 20, 21, 22, 32, 37, 39, 41], "glass": 13, "global": [13, 14, 17, 22, 24, 39], "glue": [21, 27], "go": [2, 4, 21, 30, 31, 32, 34], "goal": [17, 32], "gok3k": 13, "good": [1, 3, 12, 17, 22, 23, 28, 31, 36, 39], "grace": 5, "gracefulli": 17, "graf": 16, "grant": 15, "graph": 6, "graphic": [0, 27, 32, 35], "graphviz": 0, "greater": 1, "greaterthan": 11, "green": 6, "grei": 6, "group": [0, 5, 16, 17, 20, 21, 27, 28, 41], "grouphead": 27, "groupindex": [39, 40], "groupproperti": [21, 39, 40], "grouppropertiess": [39, 40], "groupvers": [39, 40], "gui": [0, 13, 32], "guid": [0, 5, 24, 26, 32, 41], "h": [0, 1, 13, 16, 17, 18, 22, 25, 26, 27, 28, 30, 32, 33, 34, 36, 37], "ha": [1, 4, 5, 6, 12, 13, 16, 17, 19, 20, 21, 22, 23, 26, 28, 30, 31, 35, 39, 41], "had": 23, "half": 0, "halt": 23, "hand": [5, 41], "handl": [0, 1, 2, 6, 13, 17, 19, 21, 24, 27, 38], "handler": 18, "handshak": 6, "happen": [17, 22], "hard": [5, 13, 21, 22, 41], "hardwar": [0, 21], "harmon": 5, "hasadditionalinfo": 39, "haschild": [5, 41], "hascompon": [6, 13, 29], "haseventsourc": [22, 29], "hash": [6, 13, 19, 39], "hasinnerdiagnosticinfo": 39, "hasinnerstatuscod": 39, "hasinterfac": 6, "haslocal": 39, "haslocalizedtext": 39, "hasmodelingrul": 19, "hasmodellingrul": [13, 22, 35], "hasnamespaceuri": 39, "hasproperti": [5, 6, 13, 22, 41], "hasreftre": 19, "hasserverpicosecond": 39, "hasservertimestamp": [26, 39], "hassourcepicosecond": [26, 39], "hassourcetimestamp": 39, "hasstatu": [26, 36, 39], "hassubtyp": [6, 13, 19], "hassymbolicid": 39, "hastypedef": 22, "hastypedefinit": [6, 13, 35], "hasvalu": [19, 26, 30, 36, 39], "have": [0, 1, 2, 3, 5, 6, 12, 13, 17, 19, 20, 21, 22, 23, 25, 31, 32, 33, 34, 35, 36, 37, 39, 41], "have_nodeiter_callback": [2, 22], "head": 19, "header": [0, 1, 6, 13, 22, 23], "headerlayouturi": [39, 40], "healthi": 1, "heap": [26, 39], "heatsensor": [5, 41], "hel": 6, "hello": [24, 38, 39], "helloattr": 33, "helloworldmethodcallback": 33, "help": [13, 24, 32], "helper": [6, 24], "henc": [1, 17, 22], "here": [0, 1, 5, 6, 13, 15, 20, 22, 27, 41], "hexadecim": [5, 17, 41], "hexdump": 0, "hi": [17, 21], "hide": 39, "hierarch": [6, 22], "hierarchi": [5, 6, 19, 22, 24, 37, 38, 41], "hierarchialreferencetyp": 22, "hierarchicalrefer": [5, 22, 41], "high": [1, 22, 39, 40], "higher": [1, 5, 17, 39], "highest": 39, "highlevel": [1, 24], "highli": 13, "highlight": 6, "histor": [1, 3, 5, 6, 15, 19, 23, 24, 39, 40], "histori": 23, "historian": 23, "historizingen": 22, "historydata": 24, "historydatabas": 22, "historyev": 24, "historyeventfieldlist": 24, "historymodifieddata": 24, "historyread": 6, "historyreadcount": [39, 40], "historyreaddetail": [39, 40], "historyreadrequest": 24, "historyreadrespons": 24, "historyreadresult": 24, "historyreadvalueid": 24, "historyupd": 6, "historyupdatecount": [39, 40], "historyupdatedetail": 24, "historyupdatedetailss": [39, 40], "historyupdaterequest": 24, "historyupdaterespons": 24, "historyupdateresult": 24, "historyupdatetyp": 24, "hold": [21, 25, 26, 31], "homebrew": 0, "hook": 22, "hope": 1, "host": [1, 5, 6, 17, 41], "hostnam": [5, 6, 17, 22, 23, 41], "hour": [25, 39], "housekeep": 1, "how": [0, 1, 5, 6, 13, 17, 21, 22, 30, 36, 39], "howev": [1, 6, 13, 21, 22, 29, 39], "html": 0, "http": [0, 6, 12, 13, 16, 27, 28, 32, 39], "human": [0, 22, 39], "humand": 39, "hyphen": [5, 17, 41], "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "i4aa": 13, "ia": 13, "id": [0, 1, 6, 13, 17, 19, 21, 22, 23, 24, 27, 28, 29, 31, 39, 41], "id1": 26, "id2": 26, "id3": 26, "id4": 26, "id497799835": 0, "ident": [1, 6, 13, 20, 22, 23, 39], "identifi": [1, 5, 6, 13, 17, 19, 20, 21, 22, 26, 27, 29, 30, 31, 33, 35, 39, 40, 41], "identifiertyp": 39, "identitycriteriatyp": 24, "identitymappingruletyp": 24, "identitytoken": 1, "idfield": 29, "idroot": 19, "idtreeentri": 19, "idtyp": [21, 24, 27, 28], "idvalu": 29, "iec": 12, "ieee": 39, "ifdef": [1, 5, 15, 19, 20, 21, 22, 26, 39, 41], "ifndef": [2, 5, 16, 22, 23, 41], "ignor": [1, 13], "ignorefil": 13, "ijt": 13, "illeg": 6, "im": 17, "imagebmp": 24, "imagegif": 24, "imagejpg": 24, "imagepng": 24, "imagin": 21, "imaginari": [39, 40], "immedi": [6, 13, 17, 19], "immut": 19, "impact": [5, 17], "implement": [0, 1, 2, 5, 6, 12, 14, 19, 20, 22, 23, 24, 30, 32, 36, 39, 41], "impli": [5, 41], "implicit": 6, "import": [6, 13, 17, 19, 29], "impos": 23, "improv": [5, 12, 41], "inact": 29, "inactivitycallback": 1, "inaddr_ani": 17, "inbuf": 39, "incattr": 33, "incint32arraymethodcallback": 33, "incint32arrayvalu": 33, "includ": [0, 1, 2, 5, 12, 13, 16, 22, 25, 26, 27, 28, 30, 32, 33, 34, 36, 37, 39, 41], "includesourcetimestamp": 19, "includesubtyp": [35, 39, 40], "incom": [1, 6, 17, 32], "incomplet": 23, "increas": [24, 38, 39], "increat": 33, "increment": 33, "incur": 19, "indatatyp": [2, 3], "independ": [6, 12, 17, 21, 22], "index": [2, 5, 6, 7, 9, 10, 11, 13, 19, 22, 23, 24, 41], "indexrang": [2, 5, 7, 8, 9, 10, 11, 39, 40, 41], "indic": [1, 2, 3, 4, 5, 6, 13, 17, 19, 20, 22, 35, 39, 41], "indirect": 19, "indirectli": 27, "individu": [0, 1, 6, 12, 17, 22, 34], "induc": 6, "industri": [12, 30], "infer": 13, "infinit": 13, "influenc": [0, 21], "info": [0, 13], "inform": [0, 1, 5, 12, 13, 17, 19, 20, 24, 26, 27, 28, 30, 31, 32, 33, 36, 38, 39, 41], "informationmodel": 0, "infrastructur": [12, 21], "inherit": [12, 13, 19, 35], "init": 13, "initi": [0, 1, 5, 6, 12, 13, 17, 19, 20, 21, 22, 23, 28, 36, 39, 41], "initialhashvalu": 39, "inlin": [19, 22, 39], "innerdiagnosticinfo": 39, "innerstatuscod": 39, "inp": [7, 8, 9, 10, 11], "input": [2, 3, 6, 7, 8, 9, 10, 11, 19, 21, 22, 23, 31, 33, 39], "inputargu": [6, 22, 33, 39, 40], "inputargumentdiagnosticinfo": [39, 40], "inputargumentdiagnosticinfoss": [39, 40], "inputargumentresult": [39, 40], "inputargumentresultss": [39, 40], "inputargumentsoutnewnodeid": 22, "inputargumentsrequestednewnodeid": 22, "inputargumentss": [22, 39, 40], "inputarrai": 33, "inputprocidedbi": 13, "inputs": [2, 3, 19, 31, 33], "inputstr": 33, "insert": [5, 6, 15, 19, 22, 23, 39, 41], "insertannotationscap": 22, "insertdatacap": 22, "inserteventcap": 22, "insertnod": 19, "insid": [17, 19, 21, 24, 27, 29], "inspect": [13, 27], "instal": [0, 32], "instanc": [1, 5, 6, 17, 20, 21, 22, 24, 29, 35, 37, 39, 41], "instancedeclar": 22, "instanceinfo": 17, "instanti": [1, 6, 12, 13, 17, 19, 22, 24, 33, 37, 38], "instead": [0, 1, 6, 13, 21, 22, 33, 34, 39], "instruct": [0, 32], "int": [5, 13, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41], "int16": 24, "int16_t": 39, "int32": [3, 6, 17, 22, 24, 25, 26, 28, 33, 36], "int32_t": 39, "int64": [10, 11, 24, 28], "int64_t": 39, "int8_t": 39, "intact": 1, "integ": [19, 26, 33, 36, 39], "integerid": 24, "integr": [6, 12, 32, 35], "intend": [0, 19, 21, 39], "interact": [6, 12, 19, 24, 26, 39], "intercept": 17, "interest": [2, 6, 21, 28, 29, 31, 34], "interfac": [0, 6, 17, 21, 22, 27, 28, 37, 39], "interfaceadminstatu": 24, "interfaceoperstatu": 24, "intern": [0, 1, 5, 6, 13, 16, 17, 19, 21, 22, 23, 25, 29, 30, 31, 32, 33, 39, 41], "interoper": 22, "interpret": 37, "interrupt": [0, 14, 22, 23, 24], "interruptcontext": 17, "interrupthandl": 17, "interruptmanag": 17, "interv": [1, 17, 19, 21, 22, 34, 39], "interval_m": [1, 17, 21, 22], "intial": 1, "introduc": [5, 6], "introduct": 24, "introspect": 6, "invalid": [1, 5, 23, 41], "invari": 39, "invers": [5, 41], "inversenam": [3, 6, 13, 19, 22, 39, 40], "invit": 12, "invocationcreationtim": [39, 40], "invok": [6, 22], "iosb": 16, "ip": [5, 17, 26, 41], "ipv4": 17, "ipv6": [5, 17, 41], "irc": 12, "isa95": 13, "isabstract": [3, 6, 13, 19, 22, 39, 40], "isarrai": 39, "isasync": 22, "isconnect": 21, "isdeletemodifi": [15, 39, 40], "isdynam": [19, 22], "isforward": [2, 13, 19, 22, 39, 40], "isinvers": [2, 19, 22, 35, 39, 40], "iso": 6, "ison": 13, "isonlin": [39, 40], "isopt": [39, 40], "isreadmodifi": [39, 40], "isserverannounc": 22, "issu": [1, 6, 12, 19, 24], "issuedidentitytoken": 24, "issuedtokentyp": [39, 40], "issuer": 23, "issuercertif": [39, 40], "issuercertificatess": [39, 40], "issuercrl": [39, 40], "issuercrlss": [39, 40], "issuerendpointurl": [39, 40], "istxtreceiv": 22, "istypeof": 19, "item": [4, 6, 15, 22, 23, 29, 31], "itemstempl": 21, "itemstocr": [39, 40], "itemstocreates": [39, 40], "itemstomodifi": [39, 40], "itemstomodifys": [39, 40], "itemtomonitor": [4, 39, 40], "iter": [1, 2, 17, 19, 21, 22], "its": [1, 5, 6, 12, 13, 15, 17, 19, 20, 21, 22, 23, 30, 32, 35, 37, 39, 41], "itself": [0, 5, 12, 13, 19, 39, 41], "itun": 0, "iv": 20, "j": [19, 26], "jan": 39, "januari": 39, "job": 13, "jobcontrol": 13, "joint": 17, "jointli": [6, 12], "json": 24, "json5": 39, "jsondatasetmessagecontentmask": 24, "jsondatasetreadermessagedatatyp": 24, "jsondatasetwritermessagedatatyp": 24, "jsonnetworkmessagecontentmask": 24, "jsonwritergroupmessagedatatyp": 24, "just": [0, 6, 13, 17, 22, 30, 35, 39], "keep": [1, 4, 6, 17, 18, 22, 39], "keepalivecountlimit": 22, "keepalivetim": [21, 39, 40], "keepset": 19, "kei": [1, 6, 13, 16, 17, 20, 21, 24, 39, 40], "kept": [13, 19, 39], "kerbero": 6, "kernel": 17, "keyframecount": [21, 27, 39, 40], "keylifetim": [21, 39, 40], "keynonc": [20, 21], "keysiz": 16, "keystorag": 21, "keyvaluemap": [5, 41], "keyvaluepair": 24, "keyword": 13, "kind": [19, 39], "king": 35, "know": [6, 17], "knowledg": [6, 21], "known": [0, 1, 3, 6, 17, 19, 20, 21, 26, 32, 39], "kqueue": 17, "l": 0, "languag": [5, 12, 13, 22, 33, 41], "larg": [6, 12, 23], "larger": [5, 6, 41], "largest": 22, "last": [0, 3, 5, 13, 17, 21, 22, 23, 31, 39, 41], "lastcounterresettim": [39, 40], "lastmethodcal": [39, 40], "lastmethodcalltim": [39, 40], "lastmethodinputargu": [39, 40], "lastmethodinputargumentss": [39, 40], "lastmethodinputvalu": [39, 40], "lastmethodinputvaluess": [39, 40], "lastmethodoutputargu": [39, 40], "lastmethodoutputargumentss": [39, 40], "lastmethodoutputvalu": [39, 40], "lastmethodoutputvaluess": [39, 40], "lastmethodreturnstatu": [39, 40], "lastmethodsessionid": [39, 40], "lasttransitiontim": [39, 40], "late": 17, "latepublishrequestcount": [39, 40], "later": [1, 5, 6, 13, 15, 21, 22, 27, 35, 39], "latest": [1, 21, 22], "latex": 0, "latter": 6, "launchpad": 0, "law": 22, "layer": [5, 6, 12, 19, 22, 23, 28, 32, 39, 41], "layout": [6, 21, 35, 39], "ld": [0, 1], "lead": [5, 13, 22, 39, 41], "leak": 39, "leap": 39, "learn": 6, "least": [1, 23], "leav": [5, 41], "left": [5, 6, 19, 31, 37, 39, 41], "legal": 23, "legibl": 39, "length": [5, 6, 13, 20, 21, 22, 23, 26, 28, 33, 39, 41], "less": [0, 2, 5, 6, 19, 21, 22, 23], "let": 13, "level": [0, 1, 6, 17, 18, 21, 23, 24], "lexer": [5, 41], "lh": [5, 41], "li": [1, 22], "lib": [0, 13], "liber": 22, "libmbedtl": 0, "libopen62541": 0, "librari": [1, 12, 24, 25, 32], "libressl": 0, "libsubunit": 0, "licens": [1, 12, 13, 16, 22, 23], "lifecycl": [6, 14, 17, 21, 24, 35, 38, 39], "lifetim": 1, "lifetimecountlimit": 22, "light": 6, "like": [1, 5, 7, 8, 9, 10, 11, 13, 17, 21, 22, 29, 39, 41], "likelihood": 22, "likewis": 13, "limit": [1, 6, 23, 24], "limitalarmtyp": 22, "limitst": 22, "limitvalu": 22, "line": [6, 13, 26], "linear": [5, 19, 41], "link": [0, 1, 6, 13, 17, 19, 21, 22, 27, 28, 39], "linkedstandalonesubscribeddatasetnam": 21, "linkstoadd": [39, 40], "linkstoadds": [39, 40], "linkstoremov": [39, 40], "linkstoremoves": [39, 40], "linux": [0, 17], "list": [0, 1, 5, 6, 12, 13, 17, 19, 21, 22, 23, 28, 36, 39, 41], "listen": [1, 17, 22, 32], "listenhostnam": 1, "listenhostnameslength": 1, "listern": 32, "listofextensionobject": 13, "liter": [13, 23], "literaloperand": 24, "live": [6, 17], "load": [0, 13], "local": [1, 5, 6, 13, 17, 19, 20, 24, 28, 38, 39, 41], "localcertif": 20, "localconnectionconfig": 1, "localeid": [1, 22, 24], "localeidss": [1, 39, 40], "localhost": [1, 22, 25, 32], "localizedtext": [3, 6, 19, 22, 24], "localmaxchunkcount": [5, 41], "localmaxmessages": [5, 41], "localtim": 27, "locat": [1, 5, 21, 22, 27, 39, 41], "lock": 19, "log": [0, 1, 5, 6, 14, 16, 17, 19, 22, 24], "log_stdout": [25, 26, 27, 28, 30, 33, 34, 36, 37], "logcontext": 18, "logger": [1, 5, 16, 17, 18, 20, 41], "logic": [6, 22, 29, 39], "login": [6, 15], "long": [21, 22], "longer": [1, 6, 13, 17, 19, 22, 23, 39], "look": [0, 7, 8, 9, 10, 11, 13, 17, 22, 27, 36, 39], "lookup": [1, 5, 19, 22, 41], "loop": [1, 6, 12, 14, 22, 24, 30], "loopback": 17, "lopen62541": [0, 25, 32], "loss": 22, "lost": [1, 23], "lot": [0, 30, 31, 35], "low": [12, 23, 39, 40], "lower": [23, 39], "lowest": 19, "lowlevel": 32, "lt": 39, "ltd": 35, "lws2_32": [25, 32], "m": [1, 4, 6, 17, 21, 22, 32, 34], "mac": [5, 17, 41], "machin": [6, 23], "machineri": 13, "machinetool": 13, "machinevis": 13, "macro": [0, 3, 6, 18, 24], "made": [1, 19, 21, 26], "mai": [0, 1, 4, 5, 6, 13, 17, 19, 20, 21, 22, 23, 33, 39, 41], "mail": 12, "main": [1, 6, 13, 17, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37], "mainli": [0, 13], "mainloop": 32, "maintain": 6, "major": 12, "majorvers": [39, 40], "make": [0, 1, 2, 6, 13, 19, 20, 21, 22, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39], "makecertificatethumbprint": 20, "makefil": 0, "malloc": [19, 21, 39], "man": 17, "manag": [0, 1, 5, 6, 12, 14, 19, 21, 24, 30, 32], "mandat": [6, 39], "mandatori": [5, 6, 19, 22, 23, 35, 41], "mani": [0, 2, 3, 4, 6, 13, 23, 31, 39], "manifest": 22, "manner": 29, "manual": [0, 1, 13, 19, 20, 22, 23, 24, 29, 32, 35, 38, 39], "manuallydefinepump": 35, "manufactur": 35, "manufacturernam": [13, 35, 39, 40], "manufacturernameid": 35, "map": [1, 13, 17, 19, 21, 22, 24, 28], "mappinguri": [39, 40], "mapsiz": [5, 41], "mark": [0, 12, 16, 22, 35], "mask": [6, 19, 24, 41], "master": [0, 17], "match": [1, 5, 6, 13, 19, 20, 22, 23, 28, 37, 39, 41], "matrix": [26, 36, 39], "matrix_dim": 26, "max": [5, 13, 17, 22, 23, 39, 41], "max_string_length": 13, "maxag": [39, 40], "maxarraylength": [39, 40], "maxasyncoperationqueues": 22, "maxbuffers": [39, 40], "maxbytestringlength": [39, 40], "maxdatasetstoreturn": [39, 40], "maxencapsulateddatasetmessagecount": 21, "maxeventspernod": 22, "maxfuturekeycount": [21, 39, 40], "maximum": [0, 6, 13, 19, 20, 21, 23], "maxkeepalivecount": [1, 39, 40], "maxlifetimecount": [39, 40], "maxmessages": [39, 40], "maxmonitoreditem": 22, "maxmonitoreditemcount": [39, 40], "maxmonitoreditemspercal": 22, "maxmonitoreditemspersubscript": 22, "maxnetworkmessages": [39, 40], "maxnodesperbrows": 22, "maxnodespermethodcal": 22, "maxnodespernodemanag": 22, "maxnodesperread": 22, "maxnodesperregisternod": 22, "maxnodespertranslatebrowsepathstonodeid": 22, "maxnodesperwrit": 22, "maxnotificationsperpublish": [4, 22, 39, 40], "maxpastkeycount": [21, 39, 40], "maxpublishreqpersess": 22, "maxrecordstoreturn": [1, 39, 40], "maxrefer": 22, "maxreferencespernod": 22, "maxreferencestoreturn": [39, 40], "maxrejectedlists": [1, 22], "maxrequestmessages": [39, 40], "maxresponsemessages": [39, 40], "maxretransmissionqueues": 22, "maxreturndatavalu": 22, "maxreturneventvalu": 22, "maxsecurechannel": 22, "maxsecuritytokenlifetim": 22, "maxsess": 22, "maxsessiontimeout": 22, "maxstringlength": [21, 39, 40], "maxsubscript": 22, "maxsubscriptionspersess": 22, "maxtrustlists": [1, 22], "mbed": 0, "mbedtl": 0, "mdn": 22, "mdnsconfig": 22, "mdnsdiscoveryconfigur": 24, "mdnsenabl": 22, "mdnsinterfaceip": 22, "mdnsipaddresslist": 22, "mdnsipaddresslists": 22, "mdnsservernam": [39, 40], "me": 0, "mean": [1, 5, 6, 13, 17, 22, 27, 31, 39, 41], "meaning": 6, "measur": [0, 30, 39], "mechan": [1, 6, 13, 15, 17, 21, 22, 34], "medium": 13, "meet": 23, "mega": 35, "member": [0, 19, 21, 26, 35, 39], "membernam": 39, "memberss": 39, "membertyp": 39, "memcopi": 21, "memcpi": [21, 33], "memori": [1, 5, 16, 17, 19, 20, 22, 23, 26, 30, 39, 41], "memset": [19, 27, 28, 39], "memsiz": 39, "mental": 19, "messag": [0, 1, 5, 7, 8, 9, 10, 11, 12, 13, 17, 18, 20, 21, 22, 23, 24, 26, 27, 28, 29, 31, 32, 39, 40], "messagefield": 29, "messagereceivetimeout": [0, 21, 39, 40], "messagerepeatcount": [39, 40], "messagerepeatdelai": [39, 40], "messagesecuritymod": 24, "messageset": [21, 27, 39, 40], "messagevalu": 29, "meta": [12, 21, 22, 28], "metadata": [6, 13, 21, 28], "metadataproperti": [39, 40], "metadatapropertiess": [39, 40], "metadataqueuenam": [39, 40], "metadataupdatetim": [39, 40], "method": [0, 1, 5, 12, 13, 15, 17, 19, 20, 21, 23, 24, 26, 29, 34, 38, 39, 41], "methodattribut": 24, "methodcallback": [13, 22], "methodcontext": [15, 19, 31, 33], "methodid": [2, 3, 15, 19, 31, 33, 39, 40], "methodnod": [13, 14, 22, 24, 33], "methodnodeid": 22, "methodstocal": [39, 40], "methodstocalls": [39, 40], "micro": 12, "microsec": 39, "microsoft": 0, "middlewar": 21, "might": [0, 5, 6, 17, 23, 35, 39], "millisec": [25, 39], "min": [5, 25, 39, 41], "mind": 39, "mingw": [0, 25, 32], "mingw32": 32, "minim": 24, "minimum": 18, "minimumsamplinginterv": [3, 6, 19, 39, 40], "miniumsamplinginterv": 22, "minorvers": [39, 40], "minsizerel": 0, "minut": 22, "mirror": [0, 21], "misbehav": 5, "misc": [0, 1, 24], "miss": [12, 17, 22, 23], "mitig": [5, 41], "mkdir": 0, "mnattr": 35, "mode": [6, 21, 23], "model": [0, 5, 12, 13, 19, 23, 24, 26, 27, 28, 29, 30, 32, 33, 36, 38, 41], "modelattr": 35, "modelchangestructuredatatyp": 24, "modelchangestructureverbmask": 24, "modelinfo": 13, "modellingrul": 22, "modellingrulesoninst": 22, "modelnam": [13, 35], "modif": [17, 25], "modifi": [0, 1, 5, 6, 19, 22, 41], "modificationinfo": 24, "modificationinfoss": [39, 40], "modificationtim": [39, 40], "modifii": [1, 22], "modifycount": [39, 40], "modifycycliccallback": 17, "modifymonitoreditem": 6, "modifymonitoreditemscount": [39, 40], "modifymonitoreditemsrequest": 24, "modifymonitoreditemsrespons": 24, "modifysubscript": 6, "modifysubscriptioncount": [39, 40], "modifysubscriptionrequest": 24, "modifysubscriptionrespons": 24, "modul": [17, 20], "moment": 13, "moncontext": 4, "monid": 4, "monitor": [0, 4, 6, 12, 21, 22, 23, 29, 31, 34], "monitoreditem": [1, 12, 15, 19, 24, 38, 39, 40], "monitoreditemcontext": [22, 34], "monitoreditemcount": [39, 40], "monitoreditemcreaterequest": 24, "monitoreditemcreateresult": 24, "monitoreditemid": [4, 22, 34, 39, 40], "monitoreditemidss": [39, 40], "monitoreditemmodifyrequest": 24, "monitoreditemmodifyresult": 24, "monitoreditemnotif": 24, "monitoreditemregistercallback": 22, "monitoreditemss": [39, 40], "monitoringinterfac": 21, "monitoringmod": [4, 22, 24], "monitoringparamet": 24, "monitoringqueueoverflowcount": [39, 40], "monoton": 17, "monrequest": 34, "month": [25, 39], "more": [0, 1, 2, 4, 6, 12, 13, 17, 21, 22, 23, 25, 27, 35, 39], "moredataavail": 2, "morenotif": [39, 40], "most": [0, 1, 3, 5, 6, 13, 17, 19, 22, 32, 39], "mostli": [0, 22], "motor": 6, "motorrpm": [13, 35], "motortemperaturevariabletyp": 6, "mount": 23, "move": [1, 22, 23, 39], "mozilla": [12, 16], "mpl": 16, "mplv2": 12, "mqtt": [6, 14, 21, 24], "msg": [17, 18], "mt": 0, "much": [6, 13, 39], "multi": [0, 1, 6, 22, 33], "multicast": [0, 6, 17, 21, 27], "multidimension": 39, "multipl": [0, 17, 19, 21, 22, 23, 24, 39], "multithread": 0, "must": [1, 5, 6, 13, 17, 19, 21, 22, 25, 27, 28, 32, 39, 41], "mutex": [0, 17], "mutlipl": 13, "my": [5, 22, 41], "myclient": 25, "myinput": 33, "myinteg": 36, "myintegernam": 36, "myintegernodeid": 36, "myn": 13, "myoutput": 33, "myserv": 32, "mystr": 36, "myvar": 36, "n": [0, 5, 6, 7, 8, 9, 10, 11, 13, 19, 25, 26, 27, 28, 30, 36, 39, 41], "n1": 39, "n2": 39, "name": [0, 1, 3, 5, 7, 8, 9, 10, 11, 13, 16, 17, 21, 22, 23, 27, 28, 33, 35, 39, 40, 41], "nameroot": 19, "namespac": [0, 2, 5, 13, 19, 22, 26, 39, 40, 41], "namespace0": 0, "namespace_map": 13, "namespaceindex": [2, 5, 22, 26, 28, 29, 39, 41], "namespacess": [39, 40], "namespaceuri": [2, 13, 19, 22, 39, 40], "namespaceuriss": [39, 40], "nametreeentri": 19, "namingruletyp": 24, "nan": 39, "nanosec": 39, "nanosecond": 39, "nativ": 19, "natur": [1, 39], "navig": 6, "necessari": [1, 6, 12, 13, 20, 21, 23, 27, 28, 31], "necessarili": [1, 17, 39], "need": [0, 1, 2, 6, 12, 13, 17, 19, 20, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 34, 36, 39], "neg": 39, "negoti": 22, "negotiationstatu": 24, "neither": 39, "nest": 6, "net": 0, "network": [1, 5, 6, 12, 17, 19, 21, 23, 24, 28, 32, 36, 39, 41], "networkaddressdatatyp": 24, "networkaddressurl": [27, 28], "networkaddressurldatatyp": 24, "networkgroupdatatyp": 24, "networkinterfac": [27, 28, 39, 40], "networklay": 22, "networkmessag": [20, 21, 27, 28], "networkmessagecontentmask": [27, 39, 40], "networkmessagenumb": [39, 40], "networkpath": [39, 40], "networkpathss": [39, 40], "neventfield": 4, "never": [13, 19], "new": [0, 1, 4, 6, 12, 13, 15, 16, 17, 19, 20, 21, 22, 27, 28, 30, 31, 32, 35, 36, 37, 39], "newaccesslevel": 2, "newaccesslevelex": 2, "newarraydimens": 2, "newarraydimensionss": 2, "newbrowsenam": 2, "newcertif": [20, 22], "newcontainsnoloop": 2, "newcontext": 20, "newdatatyp": 2, "newdescript": 2, "newdisplaynam": 2, "newelem": 39, "newer": [0, 32], "neweventnotifi": 2, "newexecut": 2, "newhistor": 2, "newinversenam": 2, "newisabstract": 2, "newli": [13, 17, 21, 22], "newlin": 39, "newmininterv": 2, "newnod": [19, 28], "newnodeclass": 2, "newnodeid": 2, "nework": 17, "newprivatekei": [20, 22], "newsessioncontext": 15, "newsessionid": 15, "newsiz": 39, "newsymmetr": 2, "newuseraccesslevel": 2, "newuserexecut": 2, "newuserwritemask": 2, "newvalu": 2, "newvaluerank": 2, "newwritemask": 2, "next": [1, 6, 13, 17, 19, 21, 22, 27, 39], "nextcyclictim": 17, "nextsequencenumb": [39, 40], "node": [0, 1, 4, 12, 13, 14, 15, 21, 23, 24, 25, 26, 30, 31, 33, 34, 35, 36, 37, 39], "nodeattribut": 24, "nodeattributesmask": 24, "nodeclass": [2, 3, 19, 22, 24, 26], "nodeclassmask": [22, 39, 40], "nodeconstructorcontext": 19, "nodecontext": [15, 19, 22, 29, 30, 34, 35], "nodehead": 19, "nodeid": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 19, 21, 22, 23, 24, 25, 29, 30, 34, 35, 36, 38, 40, 41], "nodeidcontext": 22, "nodelifecycl": 22, "nodemanag": [1, 24], "nodepoint": 19, "noderefer": 24, "nodes": 13, "nodeset": [0, 12, 24], "nodeset2": [0, 13], "nodeset2_v1": 13, "nodeset_compil": 13, "nodesetinject": 24, "nodesetinjector": 13, "nodesetxml": 13, "nodestoadd": [39, 40], "nodestoadds": [39, 40], "nodestobrows": [39, 40], "nodestobrowses": [39, 40], "nodestodelet": [39, 40], "nodestodeletes": [39, 40], "nodestor": [13, 14, 22, 24], "nodestoread": [26, 39, 40], "nodestoreads": [26, 39, 40], "nodestoregist": [39, 40], "nodestoregisters": [39, 40], "nodestounregist": [39, 40], "nodestounregisters": [39, 40], "nodestowrit": [39, 40], "nodestowrites": [39, 40], "nodetyp": [39, 40], "nodetypedescript": 24, "nodetypess": [39, 40], "nodeusercontext": 19, "nodevers": [5, 41], "noel": 16, "non": [0, 1, 3, 5, 13, 17, 19, 21, 22, 23, 39, 41], "nonc": [20, 22, 23], "none": [1, 6, 17, 20, 21, 22], "nonewsess": 1, "nonscalar": 19, "nor": 39, "noreconnect": 1, "normal": [1, 4, 17, 19, 21, 23, 29], "normalizedstr": 24, "nosess": 1, "notabl": [6, 22], "note": [0, 1, 3, 4, 5, 6, 13, 15, 17, 19, 21, 22, 33, 36, 39, 41], "noteset": 13, "noth": [19, 22, 23], "notif": [4, 6, 12, 19, 22, 23, 29, 34], "notifi": [1, 21, 22, 34], "notificationdata": [39, 40], "notificationdatas": [39, 40], "notificationmessag": [6, 24], "notificationread": 19, "notificationscount": [39, 40], "notifylifecyclest": 22, "now": [0, 1, 13, 19, 22, 27, 30, 31, 32, 35, 36, 37], "np": 19, "nr": 39, "ns0": [0, 13, 19], "nsctx": 19, "nsindex": 39, "nsu": 39, "null": [1, 3, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 20, 21, 22, 23, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39, 41], "number": [0, 1, 6, 17, 19, 20, 22, 23, 24, 28, 39], "numer": [6, 17, 19, 22, 23, 29, 39, 40], "numericcod": [39, 40], "numericrang": [5, 22, 24, 41], "numvaluespernod": [2, 39, 40], "o": [6, 24, 25, 32], "o0": 0, "o2": 0, "oattr": [28, 35], "object": [0, 1, 6, 12, 15, 19, 20, 21, 23, 24, 27, 29, 31, 38, 39], "object_attr": [13, 29], "objectattribut": [19, 22, 24], "objectcontext": [15, 19, 31, 33], "objectid": [2, 3, 13, 15, 19, 22, 31, 33, 39, 40], "objectnod": [5, 14, 22, 24, 31, 41], "objecttyp": [6, 13, 19, 22, 31, 35], "objecttypeattribut": 24, "objecttypenod": [14, 24], "observ": [22, 24, 29, 38], "obtain": [6, 16, 23], "occur": [1, 17, 19, 20, 22, 23, 39], "octet": 39, "off": 0, "offici": [0, 13, 19, 39], "offnormalalarmtyp": 29, "offset": [21, 39, 40], "often": [5, 6, 35, 41], "oftyp": [7, 8, 9, 10, 11], "old": 22, "oldcertif": 22, "oldsessioncontext": 15, "oldsessionid": 15, "omit": [5, 13, 19, 21, 35, 39, 41], "onc": [1, 2, 17, 19, 22, 31, 32], "one": [1, 4, 5, 6, 13, 16, 17, 19, 20, 21, 22, 23, 27, 30, 32, 39, 41], "ongo": 6, "onli": [0, 1, 3, 4, 5, 6, 12, 13, 17, 19, 20, 21, 22, 23, 28, 29, 31, 32, 36, 39, 41], "onread": [19, 29, 30], "onto": 31, "onward": 17, "onwrit": [19, 29, 30], "opaqu": [5, 17], "opaquenumericrang": 24, "opc": [0, 1, 2, 3, 4, 5, 13, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 39, 41], "opcfound": [6, 12, 13, 27, 28, 39], "open": [0, 1, 5, 6, 12, 17, 18, 19, 21, 22, 27], "open62541": [6, 13, 16, 17, 19, 23, 25, 26, 27, 28, 30, 32, 33, 34, 36, 37, 39], "open62541_cmake_flag": 0, "open62541sampleappl": 0, "open626541": 19, "openbsd": 24, "openconnect": 17, "openfilemod": 24, "opensc": 13, "opensecurechannel": 6, "opensecurechannelrequest": 24, "opensecurechannelrespons": 24, "openssl": 0, "oper": [0, 1, 2, 4, 5, 6, 12, 15, 17, 19, 20, 21, 23, 24, 30, 39, 41], "operand": 23, "operanddiagnosticinfo": [39, 40], "operanddiagnosticinfoss": [39, 40], "operandstatuscod": [39, 40], "operandstatuscodess": [39, 40], "operatio": 23, "operationresult": [39, 40], "operationresultss": [39, 40], "operationtimeout": [39, 40], "opn": 1, "optim": [0, 5, 31, 41], "option": [1, 3, 5, 6, 13, 17, 19, 21, 22, 24, 28, 32, 39, 41], "optionset": 24, "order": [0, 1, 6, 13, 19, 22, 24, 31, 32, 39], "org": [0, 6, 12, 13, 16, 27, 28, 32, 39], "organ": [12, 19], "orient": [6, 12, 21, 35, 39, 40], "origin": [1, 5, 6, 17, 19, 22, 39, 41], "originid": 22, "other": [1, 6, 13, 15, 17, 19, 21, 22, 23, 25, 26, 27, 39], "otherwis": [1, 13, 17, 19, 20, 21, 22, 39], "our": [0, 12, 13, 30, 31, 39], "out": [0, 2, 5, 6, 13, 17, 19, 20, 21, 22, 23, 26, 27, 29, 32, 39, 41], "outaccesslevel": [2, 22], "outaccesslevelex": [2, 22], "outarraydimens": [2, 22], "outarraydimensionss": 2, "outbrowsenam": [2, 22], "outbuf": 39, "outconditionid": 22, "outcontainsnoloop": [2, 22], "outdat": 22, "outdatatyp": [2, 22], "outderkei": 16, "outdescript": [2, 22], "outdisplaynam": [2, 22], "outev": 22, "outeventid": 22, "outeventnotifi": [2, 22], "outexecut": [2, 22], "outgo": 27, "outhistor": [2, 22], "outhostnam": [5, 41], "outid": 31, "outinversenam": [2, 22], "outisabstract": [2, 22], "outisarrai": 39, "outmembertyp": 39, "outmethodcallback": 22, "outminimumsamplinginterv": 22, "outminsamplinginterv": 2, "outnewnodeid": [2, 3, 22], "outnod": 19, "outnodeclass": [2, 22], "outnodeid": [2, 22, 29], "outoffset": 39, "outoptionalvari": 22, "outpath": [5, 41], "outport": [5, 41], "output": [1, 2, 3, 5, 6, 13, 16, 19, 20, 21, 22, 31, 33, 39, 41], "outputargu": [6, 13, 22, 33, 39, 40], "outputargumentsoutnewnodeid": 22, "outputargumentsrequestednewnodeid": 22, "outputargumentss": [22, 39, 40], "outputarrai": 33, "outputfil": 13, "outputs": [2, 19, 31, 33], "outsid": [16, 17, 19, 23], "outsourc": 22, "outstand": [1, 6, 24], "outstandingpublishrequest": 1, "outsymmetr": [2, 22], "outuseraccesslevel": 2, "outuserexecut": 2, "outuserwritemask": 2, "outvalu": [1, 2, 22], "outvaluerank": [2, 22], "outwritemask": [2, 22], "over": [2, 6, 17, 19, 21, 22, 23, 27, 28, 35, 36, 39], "overal": [3, 5, 19], "overflow": 23, "overhead": 22, "overlay": 39, "overrid": [0, 22], "overridden": [1, 23], "overridevalu": [39, 40], "overridevaluehandl": 24, "overwrit": [1, 20, 22], "overwritten": [5, 21, 22, 23, 39, 41], "own": [0, 1, 13, 17, 19, 21, 30, 31, 32, 39], "p": [5, 21, 39, 41], "p1": [19, 39], "p2": [19, 39], "packag": [17, 21, 24, 27], "packet": [6, 17, 22, 27], "packml": 13, "pad": 39, "page": 17, "pagin": 1, "pair": [6, 22], "paradigm": [13, 35], "parallel": [0, 17], "param": [1, 2, 5, 17, 19, 20, 21, 22, 39, 41], "paramat": 17, "paramet": [1, 4, 6, 13, 17, 20, 21, 22, 23, 24, 27, 28, 39, 40], "parameterss": [39, 40], "parent": [6, 13, 19, 21, 22, 23, 35], "parentnodeid": [2, 3, 13, 22, 29, 30, 36, 39, 40], "parentnodenam": [39, 40], "parentreferencenodeid": [29, 30, 36], "pars": [0, 13, 22, 24, 39], "parser": 24, "parsingresult": 24, "parsingresultss": [39, 40], "part": [1, 3, 5, 6, 13, 17, 20, 21, 22, 23, 27, 32, 39, 41], "part3": 6, "part6": 20, "partial": 1, "particip": 21, "particular": [6, 22], "pass": [0, 1, 13, 15, 17, 19, 20, 21, 22, 23, 31], "passiv": 17, "password": [1, 6, 16, 17, 24, 39, 40], "passwordoptionsmask": 24, "past": [1, 17, 22], "path": [0, 5, 6, 7, 8, 9, 10, 11, 13, 21, 22, 23, 41], "pattern": [6, 26], "payload": 6, "payloadhead": 27, "pcp": [5, 17, 41], "pd": [21, 27], "pdf": 0, "pdsconfig": 21, "pdsid": 21, "pem": [1, 16, 22], "pend": [1, 3], "per": [13, 17, 22, 37], "percentdatabad": [39, 40], "percentdatagood": [39, 40], "perform": [0, 1, 5, 22, 23, 36, 39], "performinsertreplac": [15, 39, 40], "performupdatetyp": 24, "period": [1, 17, 19, 21, 22], "permiss": [21, 23, 39, 40], "permissiontyp": 24, "permit": [6, 22, 23, 39], "perspect": [6, 17], "physic": [6, 24, 38], "pico": 17, "picosecond": 17, "piec": 13, "ping": 17, "pinputdimens": 33, "pip": 0, "pkc": [20, 24], "pkg": 0, "pkg_add": 0, "pkg_check_modul": 0, "pkgconfig": 0, "pki": 16, "place": [2, 13, 19, 20, 22], "plain": 22, "plaintext": 20, "platform": [12, 17, 22, 32], "plc": 13, "plcopen": 13, "pleas": [6, 13, 19, 22, 29], "plu": 12, "plug": 22, "plugin": [0, 1, 5, 12, 16, 17, 21, 22, 24, 25, 26, 27, 28, 30, 33, 34, 36, 37, 38, 41], "pmetadata": 28, "pnem": 13, "pnrio": 13, "point": [1, 5, 6, 12, 13, 17, 18, 19, 20, 21, 22, 23, 30, 35, 37, 39, 41], "pointer": [1, 3, 5, 13, 14, 16, 17, 20, 21, 22, 24, 33, 34, 39, 41], "pointerfre": 39, "pointtypeid": 37, "pointvariableid": 37, "polici": [1, 12, 14, 20, 21, 23, 24], "policycontext": 20, "policyid": [39, 40], "policyuri": 20, "poll": [17, 34], "port": [0, 1, 5, 6, 17, 22, 32, 41], "portablenodeid": 24, "portablequalifiednam": 24, "posit": [1, 5, 6, 13, 22, 41], "posix": [14, 22, 24, 32], "possess": 6, "possibl": [0, 1, 5, 6, 13, 17, 18, 19, 21, 22, 23, 37], "possibli": 23, "post": [13, 23], "postel": 22, "posx": 17, "potenti": 19, "poutputdimens": 33, "powerlink": 13, "ppa": 0, "practic": [6, 13, 19], "pre": [0, 5, 6, 21, 39, 41], "prealloc": 0, "prebuilt": 24, "precis": [17, 39], "preconfigur": 27, "predefin": 35, "prefer": [1, 22], "prefix": [5, 41], "preinstal": 0, "prepar": [22, 37], "prepare_packag": 0, "prepend": 33, "preprocess": 13, "presenc": 19, "present": [5, 13, 19, 22, 41], "presum": 2, "pretti": 39, "prettyprint": [26, 39], "prevent": [19, 39], "preview": 21, "previou": [0, 5, 13, 22, 23, 25, 26, 27, 30, 41], "previous": 20, "primari": [21, 27], "primit": 6, "principl": [6, 29], "print": [13, 24, 39], "printf": [18, 26, 27, 28, 36], "prior": 13, "prioriti": [1, 4, 5, 17, 21, 39, 40, 41], "prioritylabel": [39, 40], "prioritymappingentrytyp": 24, "priorityvalue_dscp": [39, 40], "priorityvalue_pcp": [39, 40], "privat": [1, 6, 16, 17, 20, 24], "privatekei": 16, "privatekeypasswordcallback": [1, 22], "prix16": [5, 41], "prix32": [5, 41], "prix8": [5, 41], "probabl": 13, "problem": 23, "proced": 0, "procedur": 0, "proceed": 29, "process": [0, 1, 4, 6, 13, 17, 19, 21, 23, 24, 27, 28, 35, 38, 39], "processinginterv": [39, 40], "processingoffset": [39, 40], "processor": 19, "processs": 17, "produc": [20, 21, 32], "product": 0, "productnam": [39, 40], "producturi": [39, 40], "profant": 13, "profil": [12, 23, 27, 28], "profileuri": [39, 40], "profileuriss": [39, 40], "profinet": 13, "prognam": [27, 28], "program": [23, 33, 35], "programdiagnostic2datatyp": 24, "programdiagnosticdatatyp": 24, "progress": [17, 27], "project": [0, 12, 13], "project_source_dir": 13, "prologu": 22, "promiscu": 17, "promotedfield": [21, 27], "propabl": 13, "propag": 21, "proper": 17, "properti": [6, 22, 23, 39, 40], "propertiess": [39, 40], "propertynam": 22, "proprietari": 12, "protect": [0, 1, 13, 22], "protocol": [12, 17, 21, 22, 23, 24, 26, 39], "protocolvers": [5, 41], "prototyp": 22, "prove": 6, "provid": [0, 1, 3, 4, 5, 6, 12, 13, 17, 18, 19, 20, 21, 22, 23, 25, 28, 30, 32, 36, 37, 39, 41], "providesinputto": 13, "pseudo": [20, 22], "ptattr": 35, "ptp": 17, "ptp0": 17, "ptr": [19, 39], "ptr1": [5, 41], "ptr2": [5, 41], "public": [1, 6, 12, 13, 16, 19, 20, 22, 27], "publicdomain": 13, "publickei": [39, 40], "publish": [0, 6, 12, 17, 21, 23, 24, 28, 38], "publishcount": [39, 40], "publisheddata": [39, 40], "publisheddataitemsdatatyp": 24, "publisheddatas": [39, 40], "publisheddataset": [24, 27, 39, 40], "publisheddatasetconfig": [21, 27], "publisheddatasetcustomsourcedatatyp": 24, "publisheddatasetdatatyp": 24, "publisheddatasetfield": 28, "publisheddatasetid": 27, "publisheddatasetss": [39, 40], "publisheddatasettyp": [21, 27], "publishedeventsdatatyp": 24, "publishedvari": [27, 39, 40], "publishedvariabledatatyp": 24, "publisherid": [21, 27, 28, 39, 40], "publisheridentifi": 28, "publishingen": [4, 39, 40], "publishinginterv": [1, 21, 27, 39, 40], "publishingintervalcount": [39, 40], "publishingintervallimit": 22, "publishingoffset": [39, 40], "publishingoffsets": [39, 40], "publishparamet": [21, 27], "publishrequest": [4, 22, 24], "publishrequestcount": [39, 40], "publishrespons": [1, 4, 24], "publishsubscrib": 21, "publishtim": [39, 40], "pubsub": [5, 6, 14, 24, 27, 28], "pubsub_config_fastpath_fixed_offset": 21, "pubsubconfig": 22, "pubsubconfiguration2datatyp": 24, "pubsubconfigurationdatatyp": 24, "pubsubconfigurationrefdatatyp": 24, "pubsubconfigurationrefmask": 24, "pubsubconfigurationvaluedatatyp": 24, "pubsubconnect": [21, 27, 28], "pubsubconnectiondatatyp": 24, "pubsubdiagnosticscounterclassif": 24, "pubsuben": 22, "pubsubgroupdatatyp": 24, "pubsubkeypushtarget": [39, 40], "pubsubkeypushtargetdatatyp": 24, "pubsubkeypushtargetss": [39, 40], "pubsubmanagercallback": 21, "pubsubpublisheddataset": 21, "pubsubst": 24, "pull": [13, 21], "pump": [13, 35], "pump1": 13, "pump2": 35, "pump3": 35, "pump4": 35, "pump5": 35, "pumpid": 35, "pumptyp": 35, "pumptypeconstructor": 35, "pumptypeid": 35, "purchas": 12, "pure": [17, 19], "purpos": 6, "push": 6, "pushtargetfold": [39, 40], "pushtargetfolders": [39, 40], "pushtargetproperti": [39, 40], "pushtargetpropertiess": [39, 40], "put": [22, 29], "py": [0, 13], "python": [0, 13], "python3": 0, "q": 39, "qn": 39, "qoscategori": [39, 40], "qualifi": 39, "qualifiednam": [3, 5, 6, 24, 41], "qualiti": [23, 39], "queri": [1, 5, 7, 8, 9, 10, 11, 24, 25, 41], "querydatadescript": 24, "querydataset": 24, "querydatasetss": [39, 40], "queryfirst": 6, "queryfirstcount": [39, 40], "queryfirstrequest": 24, "queryfirstrespons": 24, "querynext": 6, "querynextcount": [39, 40], "querynextrequest": 24, "querynextrespons": 24, "querystr": 23, "question": [22, 39], "queu": [1, 23], "queue": [6, 17, 22, 23, 34], "queuenam": [39, 40], "queuesiz": [4, 39, 40], "queuesizelimit": 22, "quit": [13, 22], "quot": 39, "r": [0, 5, 41], "race": 0, "rais": 23, "ram": 0, "random": [20, 22, 23, 24, 27, 31], "rang": [6, 17, 19, 21, 22, 23, 24, 29, 30], "rank": [6, 33, 37, 39], "rather": [6, 39], "rationalnumb": 24, "raw": [1, 2, 6, 12, 25, 36], "raw_dat": 25, "re": [1, 19, 22, 27], "reach": [12, 22, 23, 36], "read": [1, 5, 6, 17, 19, 21, 23, 24, 25, 30, 36, 39, 41], "readabl": [0, 5, 22, 39], "readannotationdatadetail": 24, "readattimedetail": 24, "readcallback": 3, "readcount": [39, 40], "readcurrenttim": 30, "reader": [21, 28], "readerconfig": 28, "readergroup": [24, 28, 39, 40], "readergroup1": 28, "readergroupconfig": [21, 28], "readergroupdatatyp": 24, "readergroupid": 21, "readergroupidentifi": [21, 28], "readergroupss": [39, 40], "readeridentifi": [21, 28], "readeventdetail": 24, "readi": 22, "readprocesseddetail": 24, "readrawmodifieddetail": 24, "readrequest": [6, 24], "readrespons": 24, "readresult": 22, "readvalueid": [3, 22, 24], "real": [6, 21, 23, 39, 40], "realli": 22, "realloc": [5, 39, 41], "realtim": [0, 21], "reason": [13, 39], "reassembl": 6, "receipt": 6, "receiv": [0, 1, 13, 17, 20, 21, 22, 23, 28, 29, 31, 34, 39], "receiveoffset": [39, 40], "receiveqosprioritydatatyp": 24, "receiverindexrang": [39, 40], "receivetim": 31, "recent": [0, 17], "reciev": 4, "recogn": 23, "recommend": [0, 13, 19], "recompil": [0, 13], "reconnect": 1, "record": [1, 6, 22], "recordid": [39, 40], "recov": [1, 15], "recreat": 1, "recurs": [13, 19, 22], "recv": 17, "recvbuffers": [5, 41], "redescend": 13, "redirect": 30, "reduc": [0, 1, 6], "redundancysupport": 24, "redundantserverdatatyp": 24, "ref": [11, 19, 22], "ref_1": 7, "ref_2": 7, "refarrai": 19, "refer": [5, 6, 12, 13, 15, 19, 20, 23, 24, 26, 29, 33, 35, 39, 40, 41], "referenc": [2, 6, 19, 22, 23, 37], "referencedescript": 24, "referencedirect": 19, "referencednod": [39, 40], "referencednodeid": [39, 40], "referencednodeidss": [39, 40], "referencednodess": [39, 40], "referencenod": 24, "referencess": [19, 39, 40], "referencestoadd": [39, 40], "referencestoadds": [39, 40], "referencestodelet": [39, 40], "referencestodeletes": [39, 40], "referencetyp": [5, 6, 13, 14, 22, 24, 41], "referencetypeattribut": 24, "referencetypeid": [2, 3, 5, 19, 22, 35, 39, 40, 41], "referencetypeindex": 19, "referencetypenod": [14, 24], "referrencetyp": 19, "reflect": 22, "refresh": 23, "reftre": 19, "reftypeid": 22, "reftypeindex": 19, "regeneratekei": 22, "regist": [1, 5, 6, 12, 17, 24, 41], "register": 22, "registerednodeid": [39, 40], "registerednodeidss": [39, 40], "registeredserv": [1, 22, 24], "registeredserverss": 1, "registereventsourc": 17, "registerinterrupt": 17, "registernod": 6, "registernodescount": [39, 40], "registernodesrequest": 24, "registernodesrespons": 24, "registerserv": [6, 22], "registerserver2": 6, "registerserver2request": 24, "registerserver2respons": 24, "registerserverrequest": 24, "registerserverrespons": 24, "registr": 6, "regular": [1, 2, 17, 22, 32], "regularli": [17, 34], "reject": [15, 23], "rejectedchannelcount": 5, "rejectedlist": 16, "rejectedlists": 16, "rejectedrequestscount": [39, 40], "rejectedsessioncount": [5, 39, 40], "rel": [22, 23], "relat": [6, 12, 21, 23, 28, 29, 35], "relationship": 23, "relativepath": [22, 24, 35], "relativepathel": 24, "relax": 39, "releas": [0, 12, 17, 19, 27, 32, 39], "releasecontinuationpoint": [22, 39, 40], "releasenod": 19, "relev": [1, 17, 19, 22], "reli": 13, "relwithdebinfo": 0, "remain": [5, 17, 22, 41], "remainingpathindex": [39, 40], "rememb": 25, "remot": [1, 6, 17, 19, 20, 22, 23], "remotecertif": 20, "remotemaxchunkcount": [5, 41], "remotemaxmessages": [5, 41], "remov": [0, 1, 5, 6, 12, 13, 17, 19, 21, 22, 28, 39, 41], "removebranch": 22, "removecustomcallback": 21, "removecycliccallback": 17, "removedelayedcallback": 17, "removediagnosticinfo": [39, 40], "removediagnosticinfoss": [39, 40], "removefromtrustlist": 16, "removenod": 19, "removeresult": [39, 40], "removeresultss": [39, 40], "renew": [1, 6], "reopen": 6, "repeat": [1, 21, 22], "repeatedli": [1, 6, 22], "repetit": [1, 22], "replac": [0, 4, 6, 15, 17, 19, 22, 23, 35], "replacedatacap": 22, "replaceeventcap": 22, "replacenod": 19, "report": [4, 5, 6, 12, 41], "repositori": [0, 6, 13], "repres": [6, 19, 21, 22, 23, 29, 31, 33, 35, 37, 39], "represent": [0, 13, 14, 22, 24, 30, 31, 35, 39], "republish": 6, "republishcount": [39, 40], "republishmessagecount": [39, 40], "republishmessagerequestcount": [39, 40], "republishrequest": 24, "republishrequestcount": [39, 40], "republishrespons": 24, "reqid": 3, "reqtim": [39, 40], "reqtimess": [39, 40], "request": [1, 3, 4, 6, 12, 13, 19, 20, 21, 23, 24, 25, 30, 39], "requesteddeliveryguarante": [39, 40], "requestedkeycount": [39, 40], "requestedlifetim": [39, 40], "requestedlifetimecount": [4, 39, 40], "requestedmaxkeepalivecount": [4, 39, 40], "requestedmaxreferencespernod": [39, 40], "requestednewnodeid": [2, 3, 22, 39, 40], "requestedparamet": [4, 34, 39, 40], "requestedpublishinginterv": [4, 39, 40], "requestedsessiontimeout": [1, 39, 40], "requesthandl": [1, 39, 40], "requesthead": [1, 24, 26], "requestid": [1, 3, 4], "requesttyp": [1, 39, 40], "requethandl": 1, "requir": [0, 1, 6, 13, 16, 17, 19, 20, 21, 22, 23, 31, 32, 35, 37, 39], "reserv": [5, 41], "reset": [19, 21, 36, 39], "resid": 39, "resiz": 39, "resolv": [5, 22, 41], "resourc": [0, 12, 17, 23, 30], "resourceuri": [39, 40], "resp": 26, "respect": [6, 17, 19, 28, 29, 33], "respond": 6, "respons": [1, 3, 4, 6, 12, 22, 23, 29], "responsehead": 24, "responsetyp": 1, "rest": 13, "restrict": [1, 5, 21, 41], "resuabl": 35, "result": [3, 5, 6, 13, 19, 20, 21, 22, 23, 35, 39, 40, 41], "resultmask": [39, 40], "resultss": [22, 39, 40], "retain": 29, "retainfield": 29, "retainvalu": 29, "retransmiss": [6, 23], "retransmitsequencenumb": [39, 40], "retriev": [1, 2, 6, 19, 20, 22, 23, 39], "retryinterv": [39, 40], "retun": 21, "return": [1, 2, 3, 4, 5, 6, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "returnbound": [2, 39, 40], "returndiagnost": [39, 40], "retval": [13, 25, 27, 28, 29, 31, 33, 36, 37], "reus": [6, 12, 17, 19, 39], "reusabl": 12, "revers": [1, 5, 6, 24, 41], "reversereconnectinterv": 22, "revis": 6, "revisedaggregateconfigur": [39, 40], "revisedcontinuationpoint": [39, 40], "revisedlifetim": [39, 40], "revisedlifetimecount": [39, 40], "revisedmaxkeepalivecount": [39, 40], "revisedprocessinginterv": [39, 40], "revisedpublishinginterv": [39, 40], "revisedqueues": [39, 40], "revisedsamplinginterv": [6, 39, 40], "revisedsessiontimeout": [39, 40], "revisedstarttim": [39, 40], "revok": 23, "rgid": 21, "rh": [5, 41], "right": [1, 5, 6, 13, 15, 19, 22, 34, 41], "rise": 6, "rk": 19, "roadmap": 12, "role": 21, "roleid": [39, 40], "rolepermiss": [6, 39, 40], "rolepermissionss": [39, 40], "rolepermissiontyp": 24, "rollov": 21, "rom": [0, 1, 22, 39], "rout": 21, "routin": 39, "rp": [5, 41], "rpe": 35, "rpm": 35, "rpmattr": 35, "rr": [3, 26], "rr2": 26, "rsa": 6, "rsaencryptedsecret": 24, "rsl": 13, "rt": 21, "rtd": 0, "rtfieldsourceen": 21, "rtinformationmodelnod": 21, "rtlevel": 21, "rtn": 29, "rtvaluesourc": 21, "rule": [18, 23, 24, 35], "rulehand": 5, "rulehandl": 16, "run": [0, 1, 13, 15, 17, 22, 27, 28, 32, 35], "runtim": [0, 1, 6, 12, 13, 20, 21, 24, 27, 30, 35], "rvi": [3, 26], "s1": [13, 39], "s2": [26, 39], "s3": 26, "s4": 26, "safe": 39, "safeti": 13, "sai": [1, 33, 39], "said": 31, "same": [0, 1, 2, 5, 6, 13, 15, 17, 19, 22, 23, 31, 33, 35, 36, 39, 41], "sampl": [12, 19, 21, 22, 23], "samplinginterv": [4, 34, 39, 40], "samplingintervaldiagnosticsdatatyp": 24, "samplingintervalhint": [39, 40], "samplingintervallimit": 22, "samplingoffset": [39, 40], "sao": [5, 41], "satisfi": 0, "save": [13, 19, 23, 31], "saw": 30, "sbyte": 24, "sc": 22, "scada": 35, "scalabl": 21, "scalar": [1, 5, 6, 17, 21, 22, 25, 26, 28, 33, 37, 39, 41], "scale": [13, 39, 40], "scenario": 0, "schedul": [17, 22, 32], "schema": [6, 13, 23, 39], "schemaloc": [39, 40], "scheme": 12, "scope": 39, "script": 13, "sdk": [12, 19, 24, 33, 39], "sdsconfig": 21, "sdsid": 21, "search": [23, 39], "sec": [25, 39], "second": [0, 6, 17, 22, 31, 39], "secondstillshutdown": [39, 40], "secret": [5, 6, 20, 41], "section": [0, 1, 2, 5, 6, 13, 19, 22, 26, 32, 39, 41], "secur": [1, 6, 12, 20, 21, 23, 24], "securechannel": [1, 5, 15, 20, 22, 24], "securechannelid": 23, "securechannellifetim": 1, "securechannelnoncelength": 20, "securechannelpki": 22, "securechannelremotecertif": 15, "securitygroup": [24, 39, 40], "securitygroupconfig": 21, "securitygroupdatatyp": 24, "securitygroupfold": [39, 40], "securitygroupfoldernodeid": 21, "securitygroupfolders": [39, 40], "securitygroupfoldertyp": 21, "securitygroupid": [21, 39, 40], "securitygroupnam": 21, "securitygroupnodeid": 21, "securitygroupss": [39, 40], "securityhead": 20, "securitykei": 21, "securitykeyservic": [39, 40], "securitykeyservicess": [39, 40], "securitylevel": [20, 39, 40], "securitymod": [1, 6, 21, 22, 39, 40], "securitypolici": [1, 6, 14, 21, 22, 24], "securitypoliciess": [1, 21, 22], "securitypolicynon": 22, "securitypolicynonediscoveryonli": 22, "securitypolicyuri": [1, 21, 39, 40], "securityrejectedrequestscount": [39, 40], "securityrejectedsessioncount": [5, 39, 40], "securitytoken": [1, 39, 40], "securitytokenid": 21, "securitytokenlifetim": [39, 40], "securitytokenrequesttyp": 24, "see": [1, 2, 4, 5, 6, 12, 13, 17, 22, 26, 32, 36, 39, 41], "seed": [5, 20, 41], "seen": 13, "select": [1, 5, 6, 7, 8, 9, 10, 11, 17, 19, 21, 22, 24, 27, 41], "selectclaus": [7, 8, 9, 10, 11, 39, 40], "selectclausediagnosticinfo": [39, 40], "selectclausediagnosticinfoss": [39, 40], "selectclauseresult": [39, 40], "selectclauseresultss": [39, 40], "selectclausess": [39, 40], "selectedfield": [21, 39, 40], "selectedfieldss": [21, 39, 40], "self": 23, "semant": [5, 6, 12, 37, 41], "semanticchangestructuredatatyp": 24, "semanticversionstr": 24, "semaphor": [0, 22, 23], "semaphorefilepath": [22, 39, 40], "semicolon": [5, 41], "send": [4, 6, 17, 20, 21, 22, 27, 28, 39], "sendbuffers": [5, 41], "sender": 6, "sendinitialvalu": [39, 40], "sendwithconnect": 17, "sens": [19, 31], "sensibl": [2, 6, 32, 37], "sensit": 17, "sensor": [6, 22, 23], "sent": [1, 6, 17, 21, 22, 23, 28, 34, 39], "sentenc": 6, "separ": [5, 17, 39, 41], "sequenc": [22, 23, 39], "sequencenumb": [39, 40], "seri": [12, 32], "serial": [23, 39], "serv": 17, "server": [0, 2, 4, 5, 6, 12, 13, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 37, 38, 39, 40, 41], "server_config_default": [22, 26], "server_ctt": 12, "server_nodeset": 13, "server_pubsub": [27, 28], "servercap": [39, 40], "servercapabilitiess": [39, 40], "servercapabilityfilt": [1, 39, 40], "servercapabilityfilters": [1, 39, 40], "servercertif": [39, 40], "serverdescript": 1, "serverdiagnosticssummarydatatyp": [5, 24], "serverendpoint": [39, 40], "serverendpointss": [39, 40], "serverid": [39, 40], "serverindex": [19, 39], "servernam": [23, 39, 40], "servernamess": [39, 40], "servernonc": [1, 39, 40], "serveronnetwork": [1, 22, 24], "serveronnetworks": 1, "serverpicosecond": 39, "serverprotocolvers": [39, 40], "serversignatur": [39, 40], "serversoftwarecertif": [39, 40], "serversoftwarecertificatess": [39, 40], "serverss": [39, 40], "serverst": 24, "serverstatusdatatyp": 24, "servertimestamp": [22, 23, 29, 39], "servertyp": [13, 39, 40], "serveruri": [1, 23, 39, 40], "serveruriss": [1, 39, 40], "serverurl": [1, 22], "serverurlss": 22, "serverviewcount": [39, 40], "servic": [0, 2, 4, 5, 12, 19, 20, 21, 22, 23, 24, 25, 35, 36, 41], "servicecounterdatatyp": 24, "servicediagnost": [39, 40], "servicefault": 24, "serviceid": [39, 40], "servicelevel": [39, 40], "serviceresult": [39, 40], "session": [1, 5, 6, 12, 15, 17, 19, 23, 24], "sessionabortcount": [5, 39, 40], "sessionauthenticationtoken": 24, "sessioncontext": [15, 19, 22, 29, 30, 33, 35], "sessiondiagnosticsdatatyp": 24, "sessionhandl": [31, 33], "sessionid": [6, 15, 19, 22, 29, 30, 31, 33, 35, 39, 40], "sessionlessinvokerequesttyp": 24, "sessionlessinvokeresponsetyp": 24, "sessionlocaleid": 1, "sessionlocaleidss": 1, "sessionnam": [1, 22, 39, 40], "sessionpki": 22, "sessionsecuritydiagnosticsdatatyp": 24, "sessionst": 1, "sessiontimeoutcount": [5, 39, 40], "set": [0, 1, 4, 5, 12, 13, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 35, 36, 37, 38, 39, 41], "seta": 19, "setb": 19, "setlocalsymencryptingkei": 20, "setlocalsymiv": 20, "setlocalsymsigningkei": 20, "setmessagenonc": 20, "setmonitoringmod": 6, "setmonitoringmodecount": [39, 40], "setmonitoringmoderequest": 24, "setmonitoringmoderespons": 24, "setpublishingmod": 6, "setpublishingmodecount": [39, 40], "setpublishingmoderequest": 24, "setpublishingmoderespons": 24, "setremotesymencryptingkei": 20, "setremotesymiv": 20, "setremotesymsigningkei": 20, "setsecuritykei": 20, "settrigg": 6, "settriggeringcount": [39, 40], "settriggeringrequest": 24, "settriggeringrespons": 24, "settrustlist": 16, "setup": [1, 17, 22, 31], "setupenviron": 29, "setupev": 31, "sever": [1, 2, 4, 6, 7, 8, 9, 10, 11, 15, 17, 19, 22, 29, 31, 33, 39], "severityfield": 29, "severityvalu": 29, "severurl": 22, "sh": 0, "sha256": 6, "shall": [1, 5, 6, 13, 15, 17, 19, 21, 22, 35], "shallow": [1, 21, 22, 39], "share": [0, 17, 23, 35], "shell": 0, "shelv": 23, "shorter": 39, "shorthand": [26, 39], "shortlex": 39, "should": [0, 1, 13, 17, 19, 20, 21, 22, 23, 25, 29, 31, 32, 35, 39], "show": [6, 13, 21, 26, 28, 30, 31, 32, 36], "shown": [13, 22], "shut": [1, 22, 23], "shutdown": [1, 5, 22], "shutdowndelai": 22, "shutdownreason": [39, 40], "side": [2, 5, 12, 17, 20, 21, 27, 28, 41], "sigint": [13, 22], "sign": [1, 6, 13, 20, 24, 39], "signal": [13, 14, 22, 24], "signandencrypt": [1, 6], "signatur": [6, 12, 20, 23, 39, 40], "signaturealgorithm": 20, "signaturedata": 24, "signatures": 20, "signedsoftwarecertif": 24, "signingkei": [20, 21], "sigterm": 13, "similar": [3, 13, 19, 22, 25, 33, 35], "similarli": [17, 21], "similiar": 22, "simpl": [0, 6, 13, 24, 31, 38, 39], "simpleattributeoperand": [22, 24], "simplebrowsepath": [5, 41], "simpledatatyp": [39, 40], "simpledatatypess": [39, 40], "simpleeventtyp": 31, "simpler": 13, "simplest": [27, 28, 39], "simpletypedescript": 24, "simplfi": 22, "simpli": [19, 32, 35], "simplic": 30, "simplif": 22, "simplifi": [5, 13, 22, 39, 41], "sinc": [6, 13, 19, 20, 22, 31, 39], "singl": [0, 2, 3, 4, 5, 6, 13, 17, 19, 22, 32, 39, 41], "singli": [17, 19], "situat": [20, 30, 35], "six": [5, 17, 41], "size": [1, 5, 6, 12, 17, 20, 21, 22, 23, 24, 26, 28, 39, 41], "size_t": [1, 2, 3, 4, 5, 15, 16, 17, 19, 20, 21, 22, 28, 31, 33, 39, 40, 41], "sizeof": [19, 27, 28, 39], "sk": [20, 21], "skip": 13, "sksclientconfig": 21, "skspullrequeststatu": 21, "slash": [5, 41], "sleep": 17, "sln": 0, "slow": [19, 23], "small": [0, 5, 19, 39, 41], "smaller": 39, "smallest": 39, "snippet": [13, 30], "so": [0, 1, 5, 6, 13, 17, 18, 19, 20, 21, 22, 23, 25, 29, 30, 31, 33, 34, 35, 37, 39, 41], "so_prior": 17, "soap": [6, 12], "socket": [1, 5, 17, 22], "sockprior": 17, "sof_txtime_report_error": 17, "soft": 29, "soften": 5, "softwar": [0, 6, 12, 21, 23], "softwarecertif": 6, "softwarevers": [39, 40], "sole": 17, "solut": [31, 35], "solv": 19, "some": [0, 1, 6, 12, 13, 17, 19, 21, 22, 25, 26, 35, 39], "sometim": 6, "soon": 6, "sourc": [0, 1, 6, 12, 13, 14, 16, 19, 21, 23, 24, 29, 32, 38, 39], "sourceid": 22, "sourcenam": 31, "sourcenod": [22, 31], "sourcenodeid": [2, 19, 22, 39, 40], "sourcepicosecond": 39, "sourcetimestamp": [19, 22, 23, 29, 30, 39], "space": [0, 6, 19, 22, 23, 29, 37, 39], "spec": [5, 24], "special": [6, 19, 22, 39], "specif": [1, 5, 6, 12, 13, 15, 17, 19, 20, 21, 22, 29, 31, 32, 36, 39], "specifi": [0, 1, 5, 6, 13, 19, 20, 21, 22, 23, 31, 39, 41], "specifiedattribut": [39, 40], "specifiedlist": [39, 40], "specifii": 22, "speed": 19, "sphinx": 0, "sphinx_rtd_them": 0, "split": [3, 5, 6, 12, 22, 41], "src": [1, 5, 19, 21, 39, 41], "srv": 22, "ss": 22, "stabl": [0, 19], "stack": [2, 5, 12, 13, 22, 23], "stai": 17, "stand": 17, "standalonesubscribeddataset": 21, "standalonesubscribeddatasetdatatyp": 24, "standalonesubscribeddatasetrefdatatyp": 24, "standard": [0, 1, 2, 5, 6, 12, 13, 19, 20, 21, 22, 23, 27, 29, 39, 41], "start": [0, 1, 5, 6, 12, 17, 19, 22, 23, 24, 30, 32, 39, 41], "startingnod": [35, 39, 40], "startingrecordid": [1, 39, 40], "startmonitor": 21, "startpump": 13, "starttim": [2, 39, 40], "starttimestamp": [2, 15], "state": [1, 6, 17, 18, 21, 22, 23, 24, 31, 33, 35, 38, 39, 40, 41], "statecallback": [1, 21, 22], "statechangecallback": 21, "static": [0, 4, 13, 17, 18, 19, 21, 22, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39], "staticvaluesourc": 21, "statist": 24, "statu": [1, 2, 3, 17, 19, 21, 22, 23, 25, 28, 35, 36, 37, 39, 40], "statusattr": 35, "statuschangecallback": 4, "statuschangenotif": 24, "statuscod": [0, 1, 3, 15, 22, 24, 29, 31, 35, 36, 40], "statusid": 35, "statusresult": 24, "std": [0, 21, 25, 32], "stdio": [13, 26, 27, 28, 36], "stdlib": [26, 27, 28], "stdout": 18, "step": [0, 20, 22, 30, 32], "still": [1, 3, 6, 13, 22, 23, 30, 39], "stop": [5, 13, 17, 22, 23, 32, 39, 41], "stophandl": 13, "stopmonitor": 21, "stoppump": 13, "storag": [0, 5, 6, 19, 41], "storagetyp": [19, 39], "store": [4, 5, 6, 13, 14, 16, 17, 20, 21, 22, 24, 30, 33, 39, 41], "str": [5, 39, 41], "straightforward": 32, "strcmp": [27, 28], "stream": [23, 39], "strength": 20, "strict": [22, 39], "stride": 39, "string": [1, 7, 8, 9, 10, 11, 13, 17, 18, 21, 22, 24, 26, 33, 36, 37], "stringnodeid": 39, "stringtabl": [39, 40], "stringtables": [39, 40], "strip": 0, "strlen": [26, 39], "strncmp": [27, 28], "struct": [1, 2, 5, 15, 16, 17, 18, 19, 20, 21, 22, 39, 40, 41], "structur": [0, 1, 3, 5, 13, 19, 21, 22, 23, 24, 26, 36, 38, 39, 41], "structuredatatyp": [39, 40], "structuredatatypess": [39, 40], "structuredefinit": 24, "structuredescript": 24, "structurefield": 24, "structuretyp": 24, "studio": [0, 32], "style": 0, "sub": [1, 21, 23], "subcod": 39, "subcontext": [1, 4], "subfold": 13, "subid": 4, "subject": 16, "subjectnam": [16, 20, 22], "submit": [6, 22], "submodul": 13, "subnet": 17, "subscib": 21, "subscrib": [0, 5, 6, 17, 21, 23, 24, 38], "subscribeddataset": [24, 28, 39, 40], "subscribeddatasetdatatyp": 21, "subscribeddatasetmirror": 21, "subscribeddatasetmirrordatatyp": [21, 24], "subscribeddatasetmirrortyp": 21, "subscribeddatasetss": [39, 40], "subscribeddatasettarget": 21, "subscribeddatasettyp": 21, "subscribedvari": 28, "subscript": [0, 1, 12, 15, 23, 24, 34], "subscriptionacknowledg": 24, "subscriptionacknowledgementss": [39, 40], "subscriptioncontext": 4, "subscriptiondiagnosticsdatatyp": 24, "subscriptionid": [1, 4, 39, 40], "subscriptionidss": [39, 40], "subscriptioninactivitycallback": 1, "subscriptionsen": 22, "subsequ": 6, "subset": [1, 6, 12, 13, 19, 21, 39], "substanti": 19, "substitutevalu": [39, 40], "subsystem": [6, 14, 24], "subtyp": [5, 6, 19, 22, 41], "succe": [16, 17, 20, 22, 39], "succeed": [1, 2, 23, 39], "success": [1, 3, 22, 23, 39], "successfulli": [6, 13, 21, 22, 23], "sudo": 0, "suffici": 6, "sugar": 36, "suitabl": [19, 21], "supertyp": 6, "suppli": [20, 22, 23], "support": [0, 1, 5, 6, 12, 13, 15, 17, 19, 21, 22, 23, 32, 41], "suppos": 20, "suppress": 21, "sure": [0, 13, 22, 26, 29], "svr": 39, "switch": [1, 5, 6, 19, 41], "switchfield": 39, "symbol": 0, "symbolicid": 39, "symmetr": [3, 6, 19, 20, 21, 22, 39, 40], "symmetricmodul": 20, "synchron": [1, 4, 17, 30], "synonym": 39, "syntact": 36, "syntax": [13, 22, 23], "system": [0, 5, 6, 12, 17, 21, 23, 26, 27, 30, 39, 41], "t": [1, 2, 4, 5, 13, 19, 20, 21, 22, 29, 32, 33, 39, 41], "t_clear": 39, "t_copi": 39, "t_delet": 39, "t_equal": 39, "t_init": 39, "t_new": 39, "tabl": [5, 6, 20], "tag": [17, 19], "tai": 39, "take": [0, 1, 5, 6, 7, 8, 9, 10, 11, 13, 17, 18, 19, 21, 22, 27, 30, 32, 33, 36, 39], "taken": [0, 5, 22, 30, 41], "target": [1, 5, 6, 12, 13, 17, 19, 21, 22, 23, 28, 35, 39, 40, 41], "target_link_librari": 0, "target_suffix": 13, "targetbrowsenamehash": 19, "targetid": [19, 22, 35, 39, 40], "targetidhash": 19, "targetnam": [35, 39, 40], "targetnamehash": 19, "targetnodeclass": [2, 39, 40], "targetnodeid": [2, 19, 22, 28, 39, 40], "targetparentnodeid": 19, "targetserveruri": [2, 39, 40], "targetss": [19, 35, 39, 40], "targetvar": 28, "targetvari": [21, 28, 39, 40], "targetvariablecontext": 21, "targetvariableidentifi": 21, "targetvariablesdatatyp": [21, 24], "targetvariabless": [21, 39, 40], "targetvariablestyp": 21, "task": [1, 12, 24, 32, 38], "tboolvalu": 29, "tcp": [1, 5, 6, 12, 14, 22, 24, 25, 32, 41], "tcpbufsiz": 22, "tcpenabl": 22, "tcpmaxchunk": 22, "tcpmaxmsgsiz": 22, "tcpreuseaddr": [1, 22], "team": 0, "technic": [6, 19], "tell": [0, 13], "templat": 21, "tensor": 39, "term": [16, 33], "termin": [5, 6, 39], "test": [0, 6, 19, 26, 36, 39], "test2": 26, "test_nam": 0, "testid": 26, "text": [19, 22, 28, 39], "textual": [5, 6, 41], "than": [0, 1, 5, 6, 13, 15, 17, 22, 23, 35, 39], "thei": [6, 12, 13, 17, 19, 20, 22, 23, 30, 39], "them": [0, 1, 6, 13, 17, 22, 39], "theme": 0, "themselv": 6, "theori": 22, "therefor": [1, 19, 21, 22, 33], "theven": 17, "thi": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 19, 20, 21, 22, 23, 26, 27, 29, 30, 31, 32, 35, 36, 37, 39, 41], "thing": [22, 31], "third": 0, "those": [6, 13, 17, 19, 22, 39], "though": [6, 31], "thread": [0, 1, 5, 21, 22, 32, 41], "three": [6, 22, 32, 37, 39], "threedcartesiancoordin": 24, "threedfram": 24, "threedorient": 24, "threedvector": 24, "through": [6, 17, 22, 29, 32], "thu": [0, 13, 21, 22, 29], "thumbprint": [16, 20], "thumbprintlength": 20, "ticket": 23, "tight": 30, "time": [0, 2, 3, 5, 6, 13, 15, 17, 19, 21, 23, 24, 25, 29, 30, 31, 39, 41], "time_t": 39, "timedatasourc": 30, "timedcallback": 21, "timeout": [0, 1, 17, 22, 23, 32], "timeouthint": [1, 39, 40], "timer": [14, 21, 24], "timerpolici": [17, 21], "timestamp": [1, 2, 17, 18, 19, 21, 22, 23, 26, 39, 40], "timestampstoreturn": [2, 3, 4, 22, 24], "timestr": 24, "timezonedatatyp": 24, "titl": [39, 40], "tl": 0, "tmc": 13, "tmp": 33, "todo": [21, 22], "togeth": [1, 5, 6, 17, 22, 30, 35, 39, 41], "toggl": 0, "token": [1, 23], "tokendata": [39, 40], "tokenid": [23, 39, 40], "tokentyp": [39, 40], "too": [6, 23, 39], "tool": [0, 6, 12, 13, 21, 27], "toolkit": 32, "top": [6, 12, 39], "topic": [17, 39, 40], "toplevel": 27, "total": 39, "totalcount": [39, 40], "totalrequestcount": [39, 40], "tpm": 0, "trace": [0, 5, 41], "track": [5, 13, 22, 41], "trail": [5, 39, 41], "transfer": [1, 6, 15, 23], "transferredtoaltclientcount": [39, 40], "transferredtosameclientcount": [39, 40], "transferrequestcount": [39, 40], "transferresult": 24, "transfersubscript": 6, "transfersubscriptionscount": [39, 40], "transfersubscriptionsrequest": 24, "transfersubscriptionsrespons": 24, "transform": 13, "transit": [4, 22], "translat": [6, 12, 19, 30], "translatebrowsepathstonodeid": [6, 22], "translatebrowsepathstonodeidscount": [39, 40], "translatebrowsepathstonodeidsrequest": 24, "translatebrowsepathstonodeidsrespons": 24, "transmiss": [6, 20], "transmit": [22, 39], "transmitqosprioritydatatyp": 24, "transpar": 39, "transport": [1, 6, 17, 21, 22, 27, 28], "transportprofil": [27, 28], "transportprofileuri": [21, 27, 28, 39, 40], "transportprotocol": [39, 40], "transportset": [21, 39, 40], "treat": [5, 17, 41], "treatuncertainasbad": [39, 40], "tree": [6, 13, 19], "tri": [17, 39], "trigger": [1, 6, 17, 21, 22, 24, 30, 38, 39, 40], "triggerev": 31, "triggeringitemid": [39, 40], "tripl": [6, 12], "trivial": 32, "truck": [5, 41], "truckeventtyp": [5, 41], "true": [1, 4, 5, 13, 17, 19, 22, 26, 29, 30, 31, 33, 35, 36, 39, 41], "trust": [5, 22, 23, 27, 41], "trustedcertif": [39, 40], "trustedcertificatess": [39, 40], "trustedcrl": [39, 40], "trustedcrlss": [39, 40], "trustlist": [1, 16, 22, 24], "trustlistdatatyp": 24, "trustlistmask": 24, "try": [25, 39], "tsn": 17, "tsnfailurecod": 24, "tsnlistenerstatu": 24, "tsnstreamstat": 24, "tsntalkerstatu": 24, "ttl": 17, "turn": [33, 37], "tutori": [1, 13, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 35, 36, 37, 39], "tutorial_pubsub_connect": 27, "tutorial_pubsub_publish": 28, "tutorial_server_firststep": 0, "tutorial_server_method_async": 22, "twice": 6, "two": [3, 6, 13, 17, 21, 22, 28, 33, 39], "twostatevari": 22, "tx": 17, "txt": [13, 22], "txtime": 17, "type": [0, 2, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 21, 23, 24, 25, 27, 28, 30, 31, 33, 36, 38], "typecontext": 35, "typedef": [1, 2, 3, 4, 5, 16, 17, 18, 19, 20, 21, 22, 39, 40, 41], "typedefinit": [2, 3, 5, 13, 19, 22, 39, 40, 41], "typedefinitionid": [5, 7, 8, 9, 10, 11, 39, 40, 41], "typedefinitionnod": [5, 39, 40, 41], "typeid": [1, 7, 8, 9, 10, 11, 13, 22, 28, 33, 35, 36, 37, 39], "typekind": 39, "typenam": 39, "typenodecontext": 19, "typenodeid": 19, "types_arrai": 13, "typesarrai": 13, "typess": 39, "typic": [6, 17, 30], "u": [0, 13, 22, 25, 28, 30, 31, 33, 35, 36, 37], "ua": [0, 1, 2, 3, 4, 5, 12, 13, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 39], "ua_accesscontrol": [15, 22], "ua_accesslevelextyp": [39, 40], "ua_accesslevelextype_const": [39, 40], "ua_accesslevelextype_currentread": [39, 40], "ua_accesslevelextype_currentwrit": [39, 40], "ua_accesslevelextype_historyread": [39, 40], "ua_accesslevelextype_historywrit": [39, 40], "ua_accesslevelextype_non": [39, 40], "ua_accesslevelextype_nonatomicread": [39, 40], "ua_accesslevelextype_nonatomicwrit": [39, 40], "ua_accesslevelextype_nonvolatil": [39, 40], "ua_accesslevelextype_nosubdatatyp": [39, 40], "ua_accesslevelextype_semanticchang": [39, 40], "ua_accesslevelextype_statuswrit": [39, 40], "ua_accesslevelextype_timestampwrit": [39, 40], "ua_accesslevelextype_writefullarrayonli": [39, 40], "ua_accesslevelmask_currentread": 5, "ua_accesslevelmask_currentwrit": 5, "ua_accesslevelmask_historyread": 5, "ua_accesslevelmask_historywrit": 5, "ua_accesslevelmask_read": [5, 29, 30, 36, 37], "ua_accesslevelmask_semanticchang": 5, "ua_accesslevelmask_statuswrit": 5, "ua_accesslevelmask_timestampwrit": 5, "ua_accesslevelmask_writ": [5, 29, 30, 36, 37], "ua_accessleveltyp": [39, 40], "ua_accessleveltype_currentread": [39, 40], "ua_accessleveltype_currentwrit": [39, 40], "ua_accessleveltype_historyread": [39, 40], "ua_accessleveltype_historywrit": [39, 40], "ua_accessleveltype_non": [39, 40], "ua_accessleveltype_semanticchang": [39, 40], "ua_accessleveltype_statuswrit": [39, 40], "ua_accessleveltype_timestampwrit": [39, 40], "ua_accessrestrictiontyp": [39, 40], "ua_accessrestrictiontype_applyrestrictionstobrows": [39, 40], "ua_accessrestrictiontype_encryptionrequir": [39, 40], "ua_accessrestrictiontype_non": [39, 40], "ua_accessrestrictiontype_sessionrequir": [39, 40], "ua_accessrestrictiontype_signingrequir": [39, 40], "ua_activatesessionrequest": [39, 40], "ua_activatesessionrespons": [39, 40], "ua_additionalparameterstyp": [39, 40], "ua_addnodesitem": [15, 39, 40], "ua_addnodesrequest": [1, 39, 40], "ua_addnodesrespons": [1, 3, 39, 40], "ua_addnodesresult": [39, 40], "ua_addpublisheddatasetresult": 21, "ua_addreferencesitem": [15, 39, 40], "ua_addreferencesrequest": [1, 39, 40], "ua_addreferencesrespons": [1, 39, 40], "ua_aggregateconfigur": [39, 40], "ua_aggregatefilt": [39, 40], "ua_aggregatefilterresult": [39, 40], "ua_aliasnamedatatyp": [39, 40], "ua_annot": [39, 40], "ua_anonymousidentitytoken": [39, 40], "ua_applicationdescript": [1, 22, 39, 40], "ua_applicationinstancecertif": [39, 40], "ua_applicationtyp": [39, 40], "ua_applicationtype_cli": [39, 40], "ua_applicationtype_clientandserv": [39, 40], "ua_applicationtype_discoveryserv": [39, 40], "ua_applicationtype_serv": [39, 40], "ua_architecture_posix": 17, "ua_architecture_win32": 17, "ua_argu": [6, 22, 33, 39, 40], "ua_argument_init": 33, "ua_array_append": 39, "ua_array_appendcopi": 39, "ua_array_copi": 39, "ua_array_delet": 39, "ua_array_new": [26, 28, 39], "ua_array_res": 39, "ua_asyncoperationrequest": 22, "ua_asyncoperationrespons": 22, "ua_asyncoperationtyp": 22, "ua_asyncoperationtype_cal": 22, "ua_asyncoperationtype_invalid": 22, "ua_asyncoperationtype_read": 22, "ua_asyncoperationtype_writ": 22, "ua_attributeid": [2, 3, 5, 22], "ua_attributeid_": 3, "ua_attributeid_accesslevel": [2, 5, 22], "ua_attributeid_accesslevelex": [2, 5, 22], "ua_attributeid_accessrestrict": 5, "ua_attributeid_arraydimens": [5, 22], "ua_attributeid_browsenam": [2, 5, 22], "ua_attributeid_containsnoloop": [2, 5, 22], "ua_attributeid_datatyp": [2, 5, 22], "ua_attributeid_datatypedefinit": 5, "ua_attributeid_descript": [2, 5, 22], "ua_attributeid_displaynam": [2, 5, 22], "ua_attributeid_eventnotifi": [2, 5, 22], "ua_attributeid_execut": [2, 5, 22], "ua_attributeid_histor": [2, 5, 22], "ua_attributeid_invalid": 5, "ua_attributeid_inversenam": [2, 5, 22], "ua_attributeid_isabstract": [2, 5, 22], "ua_attributeid_minimumsamplinginterv": [2, 5, 22], "ua_attributeid_nam": 5, "ua_attributeid_nodeclass": [2, 5, 22], "ua_attributeid_nodeid": [2, 5, 22], "ua_attributeid_rolepermiss": 5, "ua_attributeid_symmetr": [2, 5, 22], "ua_attributeid_useraccesslevel": [2, 5], "ua_attributeid_userexecut": [2, 5], "ua_attributeid_userrolepermiss": 5, "ua_attributeid_userwritemask": [2, 5], "ua_attributeid_valu": [2, 4, 5, 22, 27, 28, 36], "ua_attributeid_valuerank": [2, 5, 22], "ua_attributeid_writemask": [2, 5, 22], "ua_attributeoperand": [39, 40], "ua_attributewritemask": [39, 40], "ua_attributewritemask_accesslevel": [39, 40], "ua_attributewritemask_accesslevelex": [39, 40], "ua_attributewritemask_accessrestrict": [39, 40], "ua_attributewritemask_arraydimens": [39, 40], "ua_attributewritemask_browsenam": [39, 40], "ua_attributewritemask_containsnoloop": [39, 40], "ua_attributewritemask_datatyp": [39, 40], "ua_attributewritemask_datatypedefinit": [39, 40], "ua_attributewritemask_descript": [39, 40], "ua_attributewritemask_displaynam": [39, 40], "ua_attributewritemask_eventnotifi": [39, 40], "ua_attributewritemask_execut": [39, 40], "ua_attributewritemask_histor": [39, 40], "ua_attributewritemask_inversenam": [39, 40], "ua_attributewritemask_isabstract": [39, 40], "ua_attributewritemask_minimumsamplinginterv": [39, 40], "ua_attributewritemask_nodeclass": [39, 40], "ua_attributewritemask_nodeid": [39, 40], "ua_attributewritemask_non": [39, 40], "ua_attributewritemask_rolepermiss": [39, 40], "ua_attributewritemask_symmetr": [39, 40], "ua_attributewritemask_useraccesslevel": [39, 40], "ua_attributewritemask_userexecut": [39, 40], "ua_attributewritemask_userwritemask": [39, 40], "ua_attributewritemask_valueforvariabletyp": [39, 40], "ua_attributewritemask_valuerank": [39, 40], "ua_attributewritemask_writemask": [39, 40], "ua_audiodatatyp": [39, 40], "ua_axisinform": [39, 40], "ua_axisscaleenumer": [39, 40], "ua_axisscaleenumeration_linear": [39, 40], "ua_axisscaleenumeration_ln": [39, 40], "ua_axisscaleenumeration_log": [39, 40], "ua_bitfieldmaskdatatyp": [39, 40], "ua_boolean": [1, 2, 3, 5, 13, 15, 19, 21, 22, 26, 29, 30, 35, 39, 40, 41], "ua_brokerconnectiontransportdatatyp": [39, 40], "ua_brokerdatasetreadertransportdatatyp": [39, 40], "ua_brokerdatasetwritertransportdatatyp": [39, 40], "ua_brokertransportqualityofservic": [39, 40], "ua_brokertransportqualityofservice_atleastonc": [39, 40], "ua_brokertransportqualityofservice_atmostonc": [39, 40], "ua_brokertransportqualityofservice_besteffort": [39, 40], "ua_brokertransportqualityofservice_exactlyonc": [39, 40], "ua_brokertransportqualityofservice_notspecifi": [39, 40], "ua_brokerwritergrouptransportdatatyp": [39, 40], "ua_browsedescript": [22, 39, 40], "ua_browsedirect": [19, 39, 40], "ua_browsedirection_both": [39, 40], "ua_browsedirection_forward": [39, 40], "ua_browsedirection_invalid": [39, 40], "ua_browsedirection_invers": [39, 40], "ua_browsenextrequest": [1, 3, 39, 40], "ua_browsenextrespons": [1, 3, 39, 40], "ua_browsepath": [22, 35, 39, 40], "ua_browsepath_init": 35, "ua_browsepathresult": [22, 35, 39, 40], "ua_browsepathresult_clear": 35, "ua_browsepathtarget": [39, 40], "ua_browserequest": [1, 3, 39, 40], "ua_browserespons": [1, 3, 39, 40], "ua_browseresult": [22, 39, 40], "ua_browseresultmask": [39, 40], "ua_browseresultmask_al": [39, 40], "ua_browseresultmask_browsenam": [39, 40], "ua_browseresultmask_displaynam": [39, 40], "ua_browseresultmask_isforward": [39, 40], "ua_browseresultmask_nodeclass": [39, 40], "ua_browseresultmask_non": [39, 40], "ua_browseresultmask_referencetypeid": [39, 40], "ua_browseresultmask_referencetypeinfo": [39, 40], "ua_browseresultmask_targetinfo": [39, 40], "ua_browseresultmask_typedefinit": [39, 40], "ua_build_exampl": 0, "ua_build_unit_test": 0, "ua_buildinfo": [39, 40], "ua_byt": [2, 3, 5, 15, 19, 20, 21, 22, 26, 33, 39, 40, 41], "ua_byte_max": 39, "ua_byte_min": 39, "ua_bytestr": [1, 5, 7, 8, 9, 10, 11, 15, 16, 17, 20, 21, 22, 39, 40, 41], "ua_bytestring_alloc": 39, "ua_bytestring_allocbuff": 39, "ua_bytestring_clear": [7, 8, 9, 10, 11], "ua_bytestring_frombase64": 39, "ua_bytestring_hash": 39, "ua_bytestring_memzero": [5, 41], "ua_bytestring_nul": 39, "ua_bytestring_tobase64": 39, "ua_calcsizebinari": 39, "ua_calcsizejson": 39, "ua_calcsizexml": 39, "ua_callback": 17, "ua_callmethodrequest": [22, 39, 40], "ua_callmethodresult": [22, 39, 40], "ua_calloc": 28, "ua_callrequest": [1, 39, 40], "ua_callrespons": [1, 3, 39, 40], "ua_cancelrequest": [39, 40], "ua_cancelrespons": [39, 40], "ua_certificategroup": [1, 16, 22], "ua_certificateutils_decryptprivatekei": 16, "ua_certificateutils_getexpirationd": 16, "ua_certificateutils_getkeys": 16, "ua_certificateutils_getsubjectnam": 16, "ua_certificateutils_getthumbprint": 16, "ua_certificateutils_verifyapplicationuri": 16, "ua_channelsecuritytoken": [39, 40], "ua_clear": 39, "ua_client": [1, 2, 3, 4, 5, 25], "ua_client_activatecurrentsess": 1, "ua_client_activatecurrentsessionasync": 1, "ua_client_activatesess": 1, "ua_client_activatesessionasync": 1, "ua_client_adddatatypenod": 2, "ua_client_adddatatypenode_async": 3, "ua_client_addmethodnod": 2, "ua_client_addmethodnode_async": 3, "ua_client_addobjectnod": 2, "ua_client_addobjectnode_async": 3, "ua_client_addobjecttypenod": 2, "ua_client_addobjecttypenode_async": 3, "ua_client_addrefer": 2, "ua_client_addreferencetypenod": 2, "ua_client_addreferencetypenode_async": 3, "ua_client_addrepeatedcallback": 1, "ua_client_addtimedcallback": 1, "ua_client_addvariablenod": 2, "ua_client_addvariablenode_async": 3, "ua_client_addvariabletypenod": 2, "ua_client_addvariabletypenode_async": 3, "ua_client_addviewnod": 2, "ua_client_addviewnode_async": 3, "ua_client_asyncwrit": 3, "ua_client_cal": 2, "ua_client_call_async": 3, "ua_client_cancelbyrequesthandl": 1, "ua_client_cancelbyrequestid": 1, "ua_client_changerepeatedcallbackinterv": 1, "ua_client_connect": [1, 25], "ua_client_connectasync": 1, "ua_client_connectsecurechannel": 1, "ua_client_connectsecurechannelasync": 1, "ua_client_connectusernam": 1, "ua_client_datachangenotificationcallback": 4, "ua_client_delet": [1, 25], "ua_client_deletemonitoreditemcallback": 4, "ua_client_deletenod": 2, "ua_client_deleterefer": 2, "ua_client_deletesubscriptioncallback": 4, "ua_client_disconnect": 1, "ua_client_disconnectasync": 1, "ua_client_disconnectsecurechannel": 1, "ua_client_disconnectsecurechannelasync": 1, "ua_client_eventnotificationcallback": 4, "ua_client_finddatatyp": 1, "ua_client_findserv": 1, "ua_client_findserversonnetwork": 1, "ua_client_foreachchildnodecal": 2, "ua_client_getconfig": [1, 25], "ua_client_getconnectionattribut": 1, "ua_client_getconnectionattribute_scalar": 1, "ua_client_getconnectionattributecopi": 1, "ua_client_getcontext": 1, "ua_client_getendpoint": 1, "ua_client_getsessionauthenticationtoken": 1, "ua_client_getst": 1, "ua_client_highlevel": 1, "ua_client_historyread_ev": 2, "ua_client_historyread_modifi": 2, "ua_client_historyread_raw": 2, "ua_client_historyupdate_deleteraw": 2, "ua_client_historyupdate_insert": 2, "ua_client_historyupdate_replac": 2, "ua_client_historyupdate_upd": 2, "ua_client_modifyasynccallback": 1, "ua_client_monitoreditems_createdatachang": 4, "ua_client_monitoreditems_createdatachanges_async": 4, "ua_client_monitoreditems_createev": 4, "ua_client_monitoreditems_createevents_async": 4, "ua_client_monitoreditems_delet": 4, "ua_client_monitoreditems_delete_async": 4, "ua_client_monitoreditems_deletesingl": 4, "ua_client_monitoreditems_modifi": 4, "ua_client_monitoreditems_modify_async": 4, "ua_client_monitoreditems_setmonitoringmod": 4, "ua_client_monitoreditems_setmonitoringmode_async": 4, "ua_client_monitoreditems_settrigg": 4, "ua_client_monitoreditems_settriggering_async": 4, "ua_client_namespacegetindex": 2, "ua_client_new": [1, 25], "ua_client_newwithconfig": 1, "ua_client_readaccesslevelattribut": 2, "ua_client_readaccesslevelattribute_async": 3, "ua_client_readaccesslevelexattribut": 2, "ua_client_readaccesslevelexattribute_async": 3, "ua_client_readarraydimensionsattribut": 2, "ua_client_readarraydimensionsattribute_async": 3, "ua_client_readattribute_async": 3, "ua_client_readbrowsenameattribut": 2, "ua_client_readbrowsenameattribute_async": 3, "ua_client_readcontainsnoloopsattribut": 2, "ua_client_readcontainsnoloopsattribute_async": 3, "ua_client_readdatatypeattribut": 2, "ua_client_readdatatypeattribute_async": 3, "ua_client_readdescriptionattribut": 2, "ua_client_readdescriptionattribute_async": 3, "ua_client_readdisplaynameattribut": 2, "ua_client_readdisplaynameattribute_async": 3, "ua_client_readeventnotifierattribut": 2, "ua_client_readeventnotifierattribute_async": 3, "ua_client_readexecutableattribut": 2, "ua_client_readexecutableattribute_async": 3, "ua_client_readhistorizingattribut": 2, "ua_client_readhistorizingattribute_async": 3, "ua_client_readinversenameattribut": 2, "ua_client_readinversenameattribute_async": 3, "ua_client_readisabstractattribut": 2, "ua_client_readisabstractattribute_async": 3, "ua_client_readminimumsamplingintervalattribut": 2, "ua_client_readminimumsamplingintervalattribute_async": 3, "ua_client_readnodeclassattribut": 2, "ua_client_readnodeclassattribute_async": 3, "ua_client_readnodeidattribut": 2, "ua_client_readsymmetricattribut": 2, "ua_client_readsymmetricattribute_async": 3, "ua_client_readuseraccesslevelattribut": 2, "ua_client_readuseraccesslevelattribute_async": 3, "ua_client_readuserexecutableattribut": 2, "ua_client_readuserexecutableattribute_async": 3, "ua_client_readuserwritemaskattribut": 2, "ua_client_readuserwritemaskattribute_async": 3, "ua_client_readvalueattribut": [2, 25], "ua_client_readvalueattribute_async": 3, "ua_client_readvaluerankattribut": 2, "ua_client_readvaluerankattribute_async": 3, "ua_client_readwritemaskattribut": 2, "ua_client_readwritemaskattribute_async": 3, "ua_client_removecallback": 1, "ua_client_removerepeatedcallback": 1, "ua_client_renewsecurechannel": 1, "ua_client_run_iter": [1, 4], "ua_client_sendasyncbrowsenextrequest": 3, "ua_client_sendasyncbrowserequest": 3, "ua_client_sendasyncreadrequest": 3, "ua_client_sendasyncwriterequest": 3, "ua_client_service_addnod": 1, "ua_client_service_addrefer": 1, "ua_client_service_brows": 1, "ua_client_service_browsenext": 1, "ua_client_service_cal": 1, "ua_client_service_deletenod": 1, "ua_client_service_deleterefer": 1, "ua_client_service_historyread": 1, "ua_client_service_historyupd": 1, "ua_client_service_queryfirst": 1, "ua_client_service_querynext": 1, "ua_client_service_read": [1, 25], "ua_client_service_registernod": 1, "ua_client_service_translatebrowsepathstonodeid": 1, "ua_client_service_unregisternod": 1, "ua_client_service_writ": 1, "ua_client_startlisteningforreverseconnect": 1, "ua_client_statuschangenotificationcallback": 4, "ua_client_subscriptions_cr": 4, "ua_client_subscriptions_create_async": 4, "ua_client_subscriptions_delet": 4, "ua_client_subscriptions_delete_async": 4, "ua_client_subscriptions_deletesingl": 4, "ua_client_subscriptions_modifi": 4, "ua_client_subscriptions_modify_async": 4, "ua_client_subscriptions_setpublishingmod": 4, "ua_client_writ": 25, "ua_client_writeaccesslevelattribut": 2, "ua_client_writeaccesslevelattribute_async": 3, "ua_client_writeaccesslevelexattribut": 2, "ua_client_writeaccesslevelexattribute_async": 3, "ua_client_writearraydimensionsattribut": 2, "ua_client_writebrowsenameattribut": 2, "ua_client_writebrowsenameattribute_async": 3, "ua_client_writecontainsnoloopsattribut": 2, "ua_client_writecontainsnoloopsattribute_async": 3, "ua_client_writedatatypeattribut": 2, "ua_client_writedatatypeattribute_async": 3, "ua_client_writedescriptionattribut": 2, "ua_client_writedescriptionattribute_async": 3, "ua_client_writedisplaynameattribut": 2, "ua_client_writedisplaynameattribute_async": 3, "ua_client_writeeventnotifierattribut": 2, "ua_client_writeeventnotifierattribute_async": 3, "ua_client_writeexecutableattribut": 2, "ua_client_writeexecutableattribute_async": 3, "ua_client_writehistorizingattribut": 2, "ua_client_writehistorizingattribute_async": 3, "ua_client_writeinversenameattribut": 2, "ua_client_writeinversenameattribute_async": 3, "ua_client_writeisabstractattribut": 2, "ua_client_writeisabstractattribute_async": 3, "ua_client_writeminimumsamplingintervalattribut": 2, "ua_client_writeminimumsamplingintervalattribute_async": 3, "ua_client_writenodeclassattribut": 2, "ua_client_writenodeclassattribute_async": 3, "ua_client_writenodeidattribut": 2, "ua_client_writenodeidattribute_async": 3, "ua_client_writesymmetricattribut": 2, "ua_client_writesymmetricattribute_async": 3, "ua_client_writeuseraccesslevelattribut": 2, "ua_client_writeuserexecutableattribut": 2, "ua_client_writeuserwritemaskattribut": 2, "ua_client_writevalueattribut": 2, "ua_client_writevalueattribute_async": 3, "ua_client_writevalueattribute_scalar": 2, "ua_client_writevalueattributeex": 2, "ua_client_writevaluerankattribut": 2, "ua_client_writevaluerankattribute_async": 3, "ua_client_writewritemaskattribut": 2, "ua_client_writewritemaskattribute_async": 3, "ua_clientasyncaddnodescallback": 3, "ua_clientasyncbrowsecallback": 3, "ua_clientasyncbrowsenextcallback": 3, "ua_clientasynccallcallback": 3, "ua_clientasyncoperationcallback": 3, "ua_clientasyncreadaccesslevelattributecallback": 3, "ua_clientasyncreadaccesslevelexattributecallback": 3, "ua_clientasyncreadattributecallback": 3, "ua_clientasyncreadbrowsenameattributecallback": 3, "ua_clientasyncreadcallback": 3, "ua_clientasyncreadcontainsnoloopsattributecallback": 3, "ua_clientasyncreaddatatypeattributecallback": 3, "ua_clientasyncreaddescriptionattributecallback": 3, "ua_clientasyncreaddisplaynameattributecallback": 3, "ua_clientasyncreadeventnotifierattributecallback": 3, "ua_clientasyncreadexecutableattributecallback": 3, "ua_clientasyncreadhistorizingattributecallback": 3, "ua_clientasyncreadinversenameattributecallback": 3, "ua_clientasyncreadisabstractattributecallback": 3, "ua_clientasyncreadminimumsamplingintervalattributecallback": 3, "ua_clientasyncreadnodeclassattributecallback": 3, "ua_clientasyncreadsymmetricattributecallback": 3, "ua_clientasyncreaduseraccesslevelattributecallback": 3, "ua_clientasyncreaduserexecutableattributecallback": 3, "ua_clientasyncreaduserwritemaskattributecallback": 3, "ua_clientasyncreadvalueattributecallback": 3, "ua_clientasyncreadvaluerankattributecallback": 3, "ua_clientasyncreadwritemaskattributecallback": 3, "ua_clientasyncservicecallback": [1, 3, 4], "ua_clientasyncwritecallback": 3, "ua_clientcallback": 1, "ua_clientconfig": [1, 21, 22], "ua_clientconfig_clear": 1, "ua_clientconfig_copi": 1, "ua_clientconfig_delet": 1, "ua_clientconfig_setauthenticationcert": 1, "ua_clientconfig_setauthenticationusernam": 1, "ua_clientconfig_setdefault": 25, "ua_clientreadarraydimensionsattributecallback": 3, "ua_closesecurechannelrequest": [39, 40], "ua_closesecurechannelrespons": [39, 40], "ua_closesessionrequest": [39, 40], "ua_closesessionrespons": [39, 40], "ua_complexnumbertyp": [39, 40], "ua_config": [0, 18], "ua_config_default": 22, "ua_configurationversiondatatyp": [21, 39, 40], "ua_connectionconfig": [1, 5, 41], "ua_connectionmanag": 17, "ua_connectionmanager_connectioncallback": 17, "ua_connectionmanager_new_mqtt": 17, "ua_connectionmanager_new_posix_ethernet": 17, "ua_connectionmanager_new_posix_tcp": 17, "ua_connectionmanager_new_posix_udp": 17, "ua_connectionst": [5, 17], "ua_connectionstate_clos": [5, 17], "ua_connectionstate_establish": [5, 17], "ua_connectionstate_open": [5, 17], "ua_constanttimeequ": [5, 41], "ua_contentfilt": [21, 39, 40], "ua_contentfilterel": [39, 40], "ua_contentfilterelementresult": [39, 40], "ua_contentfilterresult": [39, 40], "ua_continuationpoint": [39, 40], "ua_copi": [26, 39], "ua_count": [39, 40], "ua_createmonitoreditemsrequest": [4, 39, 40], "ua_createmonitoreditemsrespons": [4, 39, 40], "ua_createsessionrequest": [39, 40], "ua_createsessionrespons": [39, 40], "ua_createsubscriptionrequest": [4, 39, 40], "ua_createsubscriptionrequest_default": 4, "ua_createsubscriptionrequest_init": 4, "ua_createsubscriptionrespons": [4, 39, 40], "ua_currencyunittyp": [39, 40], "ua_datachangefilt": [39, 40], "ua_datachangenotif": [39, 40], "ua_datachangetrigg": [39, 40], "ua_datachangetrigger_statu": [39, 40], "ua_datachangetrigger_statusvalu": [39, 40], "ua_datachangetrigger_statusvaluetimestamp": [39, 40], "ua_datagramconnectiontransport2datatyp": [39, 40], "ua_datagramconnectiontransportdatatyp": [39, 40], "ua_datagramdatasetreadertransportdatatyp": [39, 40], "ua_datagramwritergrouptransport2datatyp": [39, 40], "ua_datagramwritergrouptransportdatatyp": [39, 40], "ua_datasetfieldconfig": [21, 27], "ua_datasetfieldconfig_clear": 21, "ua_datasetfieldcontentmask": [21, 39, 40], "ua_datasetfieldcontentmask_non": [39, 40], "ua_datasetfieldcontentmask_rawdata": [39, 40], "ua_datasetfieldcontentmask_serverpicosecond": [39, 40], "ua_datasetfieldcontentmask_servertimestamp": [39, 40], "ua_datasetfieldcontentmask_sourcepicosecond": [39, 40], "ua_datasetfieldcontentmask_sourcetimestamp": [39, 40], "ua_datasetfieldcontentmask_statuscod": [39, 40], "ua_datasetfieldflag": [39, 40], "ua_datasetfieldflags_non": [39, 40], "ua_datasetfieldflags_promotedfield": [39, 40], "ua_datasetfieldresult": 21, "ua_datasetfieldtyp": 21, "ua_datasetmetadatatyp": [21, 28, 39, 40], "ua_datasetmetadatatype_init": 28, "ua_datasetorderingtyp": [39, 40], "ua_datasetorderingtype_ascendingwriterid": [39, 40], "ua_datasetorderingtype_ascendingwriteridsingl": [39, 40], "ua_datasetorderingtype_undefin": [39, 40], "ua_datasetreaderconfig": [21, 28], "ua_datasetreaderconfig_clear": 21, "ua_datasetreaderconfig_copi": 21, "ua_datasetreaderdatatyp": [39, 40], "ua_datasetvariableconfig": 21, "ua_datasetwriterconfig": [21, 27], "ua_datasetwriterconfig_clear": 21, "ua_datasetwriterdatatyp": [39, 40], "ua_datasourc": [19, 22, 30], "ua_datatyp": [0, 1, 2, 3, 5, 6, 19, 22, 39, 41], "ua_datatype_getstructmemb": 39, "ua_datatype_isnumer": 39, "ua_datatypearrai": [1, 22, 39], "ua_datatypeattribut": [2, 3, 5, 22, 39, 40, 41], "ua_datatypeattributes_default": [5, 41], "ua_datatypedescript": [39, 40], "ua_datatypekind": 39, "ua_datatypekind_bitfieldclust": 39, "ua_datatypekind_boolean": 39, "ua_datatypekind_byt": 39, "ua_datatypekind_bytestr": 39, "ua_datatypekind_datavalu": 39, "ua_datatypekind_datetim": 39, "ua_datatypekind_decim": 39, "ua_datatypekind_diagnosticinfo": 39, "ua_datatypekind_doubl": 39, "ua_datatypekind_enum": 39, "ua_datatypekind_expandednodeid": 39, "ua_datatypekind_extensionobject": 39, "ua_datatypekind_float": 39, "ua_datatypekind_guid": 39, "ua_datatypekind_int16": 39, "ua_datatypekind_int32": 39, "ua_datatypekind_int64": 39, "ua_datatypekind_localizedtext": 39, "ua_datatypekind_nodeid": 39, "ua_datatypekind_optstruct": 39, "ua_datatypekind_qualifiednam": 39, "ua_datatypekind_sbyt": 39, "ua_datatypekind_statuscod": 39, "ua_datatypekind_str": 39, "ua_datatypekind_structur": 39, "ua_datatypekind_uint16": 39, "ua_datatypekind_uint32": 39, "ua_datatypekind_uint64": 39, "ua_datatypekind_union": 39, "ua_datatypekind_vari": 39, "ua_datatypekind_xmlel": 39, "ua_datatypememb": 39, "ua_datatypenod": 19, "ua_datatypeschemahead": [39, 40], "ua_datavalu": [2, 3, 4, 15, 19, 21, 22, 26, 29, 30, 34, 39, 40], "ua_datavalue_copyvariantrang": 39, "ua_datavalue_init": 26, "ua_datestr": [39, 40], "ua_datetim": [1, 2, 15, 16, 17, 21, 22, 25, 30, 31, 39, 40], "ua_datetime_fromstruct": 39, "ua_datetime_fromunixtim": 39, "ua_datetime_localtimeutcoffset": 39, "ua_datetime_msec": 39, "ua_datetime_now": [22, 26, 30, 31, 39], "ua_datetime_nowmonoton": 39, "ua_datetime_sec": 39, "ua_datetime_tostruct": [25, 39], "ua_datetime_tounixtim": 39, "ua_datetime_unix_epoch": 39, "ua_datetime_usec": 39, "ua_datetimestruct": [25, 39], "ua_deadbandtyp": [39, 40], "ua_deadbandtype_absolut": [39, 40], "ua_deadbandtype_non": [39, 40], "ua_deadbandtype_perc": [39, 40], "ua_debug": 0, "ua_debug_dump_pkg": 0, "ua_decimaldatatyp": [39, 40], "ua_decimalstr": [39, 40], "ua_decodebinari": 39, "ua_decodebinaryopt": 39, "ua_decodejson": 39, "ua_decodejsonopt": 39, "ua_decodexml": 39, "ua_decodexmlopt": 39, "ua_delayedcallback": 17, "ua_delet": 39, "ua_deleteattimedetail": [39, 40], "ua_deleteeventdetail": [39, 40], "ua_deletemonitoreditemsrequest": [4, 39, 40], "ua_deletemonitoreditemsrespons": [4, 39, 40], "ua_deletenodesitem": [15, 39, 40], "ua_deletenodesrequest": [1, 39, 40], "ua_deletenodesrespons": [1, 39, 40], "ua_deleterawmodifieddetail": [39, 40], "ua_deletereferencesitem": [15, 39, 40], "ua_deletereferencesrequest": [1, 39, 40], "ua_deletereferencesrespons": [1, 39, 40], "ua_deletesubscriptionsrequest": [4, 39, 40], "ua_deletesubscriptionsrespons": [4, 39, 40], "ua_deprec": 22, "ua_diagnosticinfo": [39, 40], "ua_diagnosticslevel": [39, 40], "ua_diagnosticslevel_advanc": [39, 40], "ua_diagnosticslevel_bas": [39, 40], "ua_diagnosticslevel_debug": [39, 40], "ua_diagnosticslevel_info": [39, 40], "ua_diagnosticslevel_log": [39, 40], "ua_doubl": [1, 2, 3, 17, 19, 21, 22, 26, 35, 36, 37, 39, 40], "ua_double_max": 39, "ua_double_min": 39, "ua_doublecomplexnumbertyp": [39, 40], "ua_duplex": [39, 40], "ua_duplex_ful": [39, 40], "ua_duplex_half": [39, 40], "ua_duplex_unknown": [39, 40], "ua_dur": [5, 21, 39, 40, 41], "ua_durationrang": [5, 22, 41], "ua_durationstr": [39, 40], "ua_eccencryptedsecret": [39, 40], "ua_elementoperand": [39, 40], "ua_empty_array_sentinel": 39, "ua_enable_amalgam": 0, "ua_enable_coverag": 0, "ua_enable_discoveri": [0, 22], "ua_enable_discovery_multicast": [0, 22], "ua_enable_discovery_semaphor": 0, "ua_enable_encrypt": [0, 1, 22], "ua_enable_encryption_tpm2": 0, "ua_enable_full_ns0": 0, "ua_enable_histor": [15, 22], "ua_enable_immutable_nod": 0, "ua_enable_json_encod": [26, 39], "ua_enable_methodcal": [0, 22], "ua_enable_nodemanag": 0, "ua_enable_pars": [0, 5, 22, 39, 41], "ua_enable_pubsub": [0, 21, 22], "ua_enable_pubsub_encrypt": [20, 21], "ua_enable_pubsub_file_config": 0, "ua_enable_pubsub_informationmodel": [0, 21], "ua_enable_pubsub_monitor": [0, 21], "ua_enable_pubsub_sk": 21, "ua_enable_queri": 1, "ua_enable_statuscode_descript": [0, 39], "ua_enable_subscript": [0, 15, 19, 22], "ua_enable_subscriptions_alarms_condit": [0, 22], "ua_enable_subscriptions_ev": [0, 5, 22, 41], "ua_enable_typedescript": [0, 39], "ua_enable_xml_encod": 39, "ua_encodebinari": 39, "ua_encodejson": 39, "ua_encodejsonopt": 39, "ua_encodexml": 39, "ua_encodexmlopt": 39, "ua_endpointconfigur": [39, 40], "ua_endpointdescript": [1, 15, 22, 39, 40], "ua_endpointtyp": [39, 40], "ua_endpointurllistdatatyp": [39, 40], "ua_entering_ackedst": [22, 29], "ua_entering_activest": 22, "ua_entering_confirmedst": [22, 29], "ua_entering_enabledst": [22, 29], "ua_enumdefinit": [39, 40], "ua_enumdescript": [39, 40], "ua_enumer": [39, 40], "ua_enumfield": [39, 40], "ua_enumvaluetyp": [39, 40], "ua_ephemeralkeytyp": [39, 40], "ua_equ": 39, "ua_euinform": [39, 40], "ua_eventfieldlist": [39, 40], "ua_eventfilt": [2, 5, 7, 8, 9, 10, 11, 22, 39, 40, 41], "ua_eventfilter_init": [7, 8, 9, 10, 11], "ua_eventfilter_pars": [5, 7, 8, 9, 10, 11, 41], "ua_eventfilterparseropt": [5, 41], "ua_eventfilterresult": [39, 40], "ua_eventloop": [1, 17, 21, 22], "ua_eventloop_findeventsourc": 17, "ua_eventloop_new_posix": 17, "ua_eventloopst": 17, "ua_eventloopstate_fresh": 17, "ua_eventloopstate_start": 17, "ua_eventloopstate_stop": 17, "ua_eventnotificationlist": [39, 40], "ua_eventnotifier_history_read": 5, "ua_eventnotifier_history_writ": 5, "ua_eventnotifier_subscribe_to_ev": 5, "ua_eventnotifiertyp": [39, 40], "ua_eventnotifiertype_historyread": [39, 40], "ua_eventnotifiertype_historywrit": [39, 40], "ua_eventnotifiertype_non": [39, 40], "ua_eventnotifiertype_subscribetoev": [39, 40], "ua_eventsourc": 17, "ua_eventsourcest": 17, "ua_eventsourcestate_fresh": 17, "ua_eventsourcestate_start": 17, "ua_eventsourcestate_stop": 17, "ua_eventsourcetyp": 17, "ua_eventsourcetype_connectionmanag": 17, "ua_eventsourcetype_interruptmanag": 17, "ua_exceptiondeviationformat": [39, 40], "ua_exceptiondeviationformat_absolutevalu": [39, 40], "ua_exceptiondeviationformat_percentofeurang": [39, 40], "ua_exceptiondeviationformat_percentofrang": [39, 40], "ua_exceptiondeviationformat_percentofvalu": [39, 40], "ua_exceptiondeviationformat_unknown": [39, 40], "ua_expandednodeid": [2, 19, 22, 39, 40], "ua_expandednodeid_bytestr": 39, "ua_expandednodeid_bytestring_alloc": 39, "ua_expandednodeid_hash": 39, "ua_expandednodeid_isloc": 39, "ua_expandednodeid_nodeid": 39, "ua_expandednodeid_nul": 39, "ua_expandednodeid_numer": [29, 35, 39], "ua_expandednodeid_ord": 39, "ua_expandednodeid_pars": 39, "ua_expandednodeid_print": 39, "ua_expandednodeid_str": 39, "ua_expandednodeid_string_alloc": 39, "ua_expandednodeid_string_guid": 39, "ua_extensionobject": [1, 2, 15, 21, 39, 40], "ua_extensionobject_clear": 1, "ua_extensionobject_decod": [27, 39], "ua_extensionobject_decoded_nodelet": 39, "ua_extensionobject_encoded_bytestr": 39, "ua_extensionobject_encoded_nobodi": 39, "ua_extensionobject_encoded_xml": 39, "ua_extensionobject_setvalu": [1, 39], "ua_extensionobject_setvaluecopi": 39, "ua_extensionobject_setvaluenodelet": 39, "ua_extensionobjectencod": 39, "ua_externalvaluecallback": 19, "ua_fals": [19, 27, 29, 39], "ua_fieldmetadata": [28, 39, 40], "ua_fieldmetadata_init": 28, "ua_fieldtargetdatatyp": [21, 39, 40], "ua_fieldtargetdatatype_clear": 28, "ua_fieldtargetdatatype_init": 28, "ua_fieldtargetvari": [21, 28], "ua_file_ns0": [0, 13], "ua_filteroper": [39, 40], "ua_filteroperator_and": [39, 40], "ua_filteroperator_between": [39, 40], "ua_filteroperator_bitwiseand": [39, 40], "ua_filteroperator_bitwiseor": [39, 40], "ua_filteroperator_cast": [39, 40], "ua_filteroperator_equ": [39, 40], "ua_filteroperator_greaterthan": [39, 40], "ua_filteroperator_greaterthanorequ": [39, 40], "ua_filteroperator_inlist": [39, 40], "ua_filteroperator_inview": [39, 40], "ua_filteroperator_isnul": [39, 40], "ua_filteroperator_lessthan": [39, 40], "ua_filteroperator_lessthanorequ": [39, 40], "ua_filteroperator_lik": [39, 40], "ua_filteroperator_not": [39, 40], "ua_filteroperator_oftyp": [39, 40], "ua_filteroperator_or": [39, 40], "ua_filteroperator_relatedto": [39, 40], "ua_finddatatyp": 39, "ua_finddatatypewithcustom": 39, "ua_findserversonnetworkrequest": [39, 40], "ua_findserversonnetworkrespons": [39, 40], "ua_findserversrequest": [39, 40], "ua_findserversrespons": [39, 40], "ua_float": [26, 39, 40], "ua_float_max": 39, "ua_float_min": 39, "ua_format": 18, "ua_fre": 28, "ua_generate_datatyp": 13, "ua_generate_nodeset": 13, "ua_generate_nodeset_and_datatyp": 13, "ua_genericattribut": [39, 40], "ua_genericattributevalu": [39, 40], "ua_getendpointsrequest": [39, 40], "ua_getendpointsrespons": [39, 40], "ua_globalnodelifecycl": [19, 22], "ua_guid": [5, 39, 40, 41], "ua_guid_nul": 39, "ua_guid_pars": 39, "ua_guid_print": 39, "ua_guid_random": [5, 41], "ua_has_getifaddr": 22, "ua_historicaliteratorcallback": 2, "ua_historydata": [39, 40], "ua_historydatabas": 22, "ua_historyev": [39, 40], "ua_historyeventfieldlist": [39, 40], "ua_historymodifieddata": [39, 40], "ua_historyreadrequest": [1, 39, 40], "ua_historyreadrespons": [1, 39, 40], "ua_historyreadresult": [39, 40], "ua_historyreadvalueid": [39, 40], "ua_historyupdatedetail": [39, 40], "ua_historyupdaterequest": [1, 39, 40], "ua_historyupdaterespons": [1, 39, 40], "ua_historyupdateresult": [39, 40], "ua_historyupdatetyp": [39, 40], "ua_historyupdatetype_delet": [39, 40], "ua_historyupdatetype_insert": [39, 40], "ua_historyupdatetype_replac": [39, 40], "ua_historyupdatetype_upd": [39, 40], "ua_identitycriteriatyp": [39, 40], "ua_identitycriteriatype_anonym": [39, 40], "ua_identitycriteriatype_appl": [39, 40], "ua_identitycriteriatype_authenticatedus": [39, 40], "ua_identitycriteriatype_groupid": [39, 40], "ua_identitycriteriatype_rol": [39, 40], "ua_identitycriteriatype_thumbprint": [39, 40], "ua_identitycriteriatype_usernam": [39, 40], "ua_identitycriteriatype_x509subject": [39, 40], "ua_identitymappingruletyp": [39, 40], "ua_idtyp": [39, 40], "ua_idtype_guid": [39, 40], "ua_idtype_numer": [39, 40], "ua_idtype_opaqu": [39, 40], "ua_idtype_str": [39, 40], "ua_imagebmp": [39, 40], "ua_imagegif": [39, 40], "ua_imagejpg": [39, 40], "ua_imagepng": [39, 40], "ua_index": [39, 40], "ua_init": [26, 39], "ua_inlin": [1, 2, 3, 4, 18, 19, 22, 39], "ua_int16": [39, 40], "ua_int16_max": 39, "ua_int16_min": 39, "ua_int32": [2, 3, 19, 22, 26, 33, 36, 39, 40], "ua_int32_copi": 26, "ua_int32_delet": 26, "ua_int32_max": 39, "ua_int32_min": 39, "ua_int32_new": [26, 39], "ua_int64": [17, 39, 40], "ua_int64_max": 39, "ua_int64_min": 39, "ua_integerid": [39, 40], "ua_interfaceadminstatu": [39, 40], "ua_interfaceadminstatus_down": [39, 40], "ua_interfaceadminstatus_test": [39, 40], "ua_interfaceadminstatus_up": [39, 40], "ua_interfaceoperstatu": [39, 40], "ua_interfaceoperstatus_dorm": [39, 40], "ua_interfaceoperstatus_down": [39, 40], "ua_interfaceoperstatus_lowerlayerdown": [39, 40], "ua_interfaceoperstatus_notpres": [39, 40], "ua_interfaceoperstatus_test": [39, 40], "ua_interfaceoperstatus_unknown": [39, 40], "ua_interfaceoperstatus_up": [39, 40], "ua_internal_deprec": 39, "ua_interruptcallback": 17, "ua_interruptmanag": 17, "ua_interruptmanager_new_posix": 17, "ua_issuedidentitytoken": [39, 40], "ua_jsondatasetmessagecontentmask": [39, 40], "ua_jsondatasetmessagecontentmask_datasetwriterid": [39, 40], "ua_jsondatasetmessagecontentmask_datasetwriternam": [39, 40], "ua_jsondatasetmessagecontentmask_messagetyp": [39, 40], "ua_jsondatasetmessagecontentmask_metadatavers": [39, 40], "ua_jsondatasetmessagecontentmask_non": [39, 40], "ua_jsondatasetmessagecontentmask_reversiblefieldencod": [39, 40], "ua_jsondatasetmessagecontentmask_sequencenumb": [39, 40], "ua_jsondatasetmessagecontentmask_statu": [39, 40], "ua_jsondatasetmessagecontentmask_timestamp": [39, 40], "ua_jsondatasetreadermessagedatatyp": [39, 40], "ua_jsondatasetwritermessagedatatyp": [39, 40], "ua_jsonnetworkmessagecontentmask": [39, 40], "ua_jsonnetworkmessagecontentmask_datasetclassid": [39, 40], "ua_jsonnetworkmessagecontentmask_datasetmessagehead": [39, 40], "ua_jsonnetworkmessagecontentmask_networkmessagehead": [39, 40], "ua_jsonnetworkmessagecontentmask_non": [39, 40], "ua_jsonnetworkmessagecontentmask_publisherid": [39, 40], "ua_jsonnetworkmessagecontentmask_replyto": [39, 40], "ua_jsonnetworkmessagecontentmask_singledatasetmessag": [39, 40], "ua_jsonwritergroupmessagedatatyp": [39, 40], "ua_keyvaluemap": [5, 17, 20, 21, 22, 41], "ua_keyvaluemap_clear": [5, 41], "ua_keyvaluemap_contain": [5, 41], "ua_keyvaluemap_copi": [5, 41], "ua_keyvaluemap_delet": [5, 41], "ua_keyvaluemap_get": [5, 41], "ua_keyvaluemap_getscalar": [5, 41], "ua_keyvaluemap_isempti": [5, 41], "ua_keyvaluemap_merg": [5, 41], "ua_keyvaluemap_new": [5, 41], "ua_keyvaluemap_nul": [5, 41], "ua_keyvaluemap_remov": [5, 41], "ua_keyvaluemap_set": [5, 41], "ua_keyvaluemap_setscalar": [5, 41], "ua_keyvaluepair": [5, 39, 40, 41], "ua_lifecyclest": [5, 22], "ua_lifecyclestate_start": 5, "ua_lifecyclestate_stop": 5, "ua_literaloperand": [39, 40], "ua_localeid": [1, 39, 40], "ua_localizedtext": [2, 3, 13, 19, 22, 28, 29, 30, 31, 33, 35, 36, 37, 39, 40], "ua_localizedtext_alloc": 39, "ua_localizedtext_copi": 28, "ua_localizedtextlistentri": 19, "ua_log_debug": 18, "ua_log_error": [13, 18, 29], "ua_log_fat": 18, "ua_log_info": [13, 18, 25, 30, 31, 33, 34, 35, 37], "ua_log_stdout": [13, 25, 29, 30, 31, 33, 34, 35, 37], "ua_log_trac": 18, "ua_log_warn": [18, 29, 31], "ua_logcategori": 18, "ua_logcategory_cli": 18, "ua_logcategory_discoveri": 18, "ua_logcategory_eventloop": 18, "ua_logcategory_network": 18, "ua_logcategory_pubsub": 18, "ua_logcategory_securechannel": 18, "ua_logcategory_securitypolici": 18, "ua_logcategory_serv": [13, 18, 31, 33], "ua_logcategory_sess": 18, "ua_logcategory_userland": [18, 25, 29, 30, 31, 34, 35, 37], "ua_logg": [1, 5, 16, 17, 18, 20, 22, 41], "ua_loglevel": [0, 18], "ua_loglevel_debug": 18, "ua_loglevel_error": 18, "ua_loglevel_fat": 18, "ua_loglevel_info": 18, "ua_loglevel_trac": 18, "ua_loglevel_warn": 18, "ua_max": [5, 41], "ua_mdnsdiscoveryconfigur": [22, 39, 40], "ua_messagesecuritymod": [1, 21, 39, 40], "ua_messagesecuritymode_invalid": [39, 40], "ua_messagesecuritymode_non": [39, 40], "ua_messagesecuritymode_sign": [39, 40], "ua_messagesecuritymode_signandencrypt": [39, 40], "ua_methodattribut": [2, 3, 5, 22, 31, 33, 39, 40, 41], "ua_methodattributes_default": [5, 31, 33, 41], "ua_methodcallback": [19, 22], "ua_methodnod": 19, "ua_min": [5, 41], "ua_modelchangestructuredatatyp": [39, 40], "ua_modelchangestructureverbmask": [39, 40], "ua_modelchangestructureverbmask_datatypechang": [39, 40], "ua_modelchangestructureverbmask_nodead": [39, 40], "ua_modelchangestructureverbmask_nodedelet": [39, 40], "ua_modelchangestructureverbmask_referencead": [39, 40], "ua_modelchangestructureverbmask_referencedelet": [39, 40], "ua_modificationinfo": [39, 40], "ua_modifymonitoreditemsrequest": [4, 39, 40], "ua_modifymonitoreditemsrespons": [4, 39, 40], "ua_modifysubscriptionrequest": [4, 39, 40], "ua_modifysubscriptionrespons": [4, 39, 40], "ua_monitoreditem": 19, "ua_monitoreditemcreaterequest": [4, 22, 34, 39, 40], "ua_monitoreditemcreaterequest_default": [4, 34], "ua_monitoreditemcreaterequest_init": 4, "ua_monitoreditemcreateresult": [4, 22, 39, 40], "ua_monitoreditemmodifyrequest": [39, 40], "ua_monitoreditemmodifyresult": [39, 40], "ua_monitoreditemnotif": [39, 40], "ua_monitoringmod": [39, 40], "ua_monitoringmode_dis": [39, 40], "ua_monitoringmode_report": [4, 39, 40], "ua_monitoringmode_sampl": [39, 40], "ua_monitoringparamet": [39, 40], "ua_multithread": [0, 5, 19, 22, 41], "ua_namespace_di": 13, "ua_namespace_plc": 13, "ua_namespace_zero": [0, 13], "ua_namingruletyp": [39, 40], "ua_namingruletype_constraint": [39, 40], "ua_namingruletype_mandatori": [39, 40], "ua_namingruletype_opt": [39, 40], "ua_negotiationstatu": [39, 40], "ua_negotiationstatus_complet": [39, 40], "ua_negotiationstatus_fail": [39, 40], "ua_negotiationstatus_inprogress": [39, 40], "ua_negotiationstatus_nonegoti": [39, 40], "ua_negotiationstatus_unknown": [39, 40], "ua_network_pubsub_networkmessag": 27, "ua_networkaddressdatatyp": [39, 40], "ua_networkaddressurldatatyp": [27, 28, 39, 40], "ua_networkgroupdatatyp": [39, 40], "ua_new": 39, "ua_nod": 19, "ua_node_addrefer": 19, "ua_node_clear": 19, "ua_node_copi": 19, "ua_node_copy_alloc": 19, "ua_node_deleterefer": 19, "ua_node_deletereferencessubset": 19, "ua_node_id_nul": 22, "ua_node_setattribut": 19, "ua_node_variableattribut": 19, "ua_nodeattribut": [2, 3, 22, 39, 40], "ua_nodeattributesmask": [19, 39, 40], "ua_nodeattributesmask_accesslevel": [39, 40], "ua_nodeattributesmask_accessrestrict": [39, 40], "ua_nodeattributesmask_al": [39, 40], "ua_nodeattributesmask_arraydimens": [39, 40], "ua_nodeattributesmask_basenod": [39, 40], "ua_nodeattributesmask_browsenam": [39, 40], "ua_nodeattributesmask_containsnoloop": [39, 40], "ua_nodeattributesmask_datatyp": [39, 40], "ua_nodeattributesmask_datatypedefinit": [39, 40], "ua_nodeattributesmask_descript": [39, 40], "ua_nodeattributesmask_displaynam": [39, 40], "ua_nodeattributesmask_eventnotifi": [39, 40], "ua_nodeattributesmask_execut": [39, 40], "ua_nodeattributesmask_histor": [39, 40], "ua_nodeattributesmask_inversenam": [39, 40], "ua_nodeattributesmask_isabstract": [39, 40], "ua_nodeattributesmask_method": [39, 40], "ua_nodeattributesmask_minimumsamplinginterv": [39, 40], "ua_nodeattributesmask_nodeclass": [39, 40], "ua_nodeattributesmask_nodeid": [39, 40], "ua_nodeattributesmask_non": [39, 40], "ua_nodeattributesmask_object": [39, 40], "ua_nodeattributesmask_objecttyp": [39, 40], "ua_nodeattributesmask_referencetyp": [39, 40], "ua_nodeattributesmask_rolepermiss": [39, 40], "ua_nodeattributesmask_symmetr": [39, 40], "ua_nodeattributesmask_useraccesslevel": [39, 40], "ua_nodeattributesmask_userexecut": [39, 40], "ua_nodeattributesmask_userwritemask": [39, 40], "ua_nodeattributesmask_valu": [39, 40], "ua_nodeattributesmask_valuerank": [39, 40], "ua_nodeattributesmask_vari": [39, 40], "ua_nodeattributesmask_variabletyp": [39, 40], "ua_nodeattributesmask_view": [39, 40], "ua_nodeattributesmask_writemask": [39, 40], "ua_nodeclass": [2, 3, 19, 22, 26, 39, 40], "ua_nodeclass_datatyp": [2, 3, 22, 39, 40], "ua_nodeclass_method": [2, 3, 39, 40], "ua_nodeclass_object": [2, 3, 22, 39, 40], "ua_nodeclass_objecttyp": [2, 3, 22, 39, 40], "ua_nodeclass_referencetyp": [2, 3, 22, 39, 40], "ua_nodeclass_unspecifi": [39, 40], "ua_nodeclass_vari": [2, 3, 22, 39, 40], "ua_nodeclass_variabletyp": [2, 3, 22, 39, 40], "ua_nodeclass_view": [2, 3, 22, 39, 40], "ua_nodehead": 19, "ua_nodeid": [1, 2, 3, 4, 13, 15, 16, 19, 20, 21, 22, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39, 40], "ua_nodeid_bytestr": 39, "ua_nodeid_bytestring_alloc": 39, "ua_nodeid_clear": 26, "ua_nodeid_copi": [26, 28], "ua_nodeid_equ": 26, "ua_nodeid_guid": 39, "ua_nodeid_hash": 39, "ua_nodeid_isnul": 39, "ua_nodeid_nul": [2, 3, 19, 22, 28, 29, 31, 35, 37, 39], "ua_nodeid_numer": [13, 19, 22, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39], "ua_nodeid_ord": 39, "ua_nodeid_pars": 39, "ua_nodeid_print": 39, "ua_nodeid_str": [26, 30, 33, 36, 39], "ua_nodeid_string_alloc": [26, 39], "ua_nodeidtyp": 39, "ua_nodeidtype_bytestr": 39, "ua_nodeidtype_guid": 39, "ua_nodeidtype_numer": [35, 39], "ua_nodeidtype_str": 39, "ua_nodeiteratorcallback": [2, 22], "ua_nodepoint": 19, "ua_nodepointer_clear": 19, "ua_nodepointer_copi": 19, "ua_nodepointer_equ": 19, "ua_nodepointer_fromexpandednodeid": 19, "ua_nodepointer_fromnodeid": 19, "ua_nodepointer_init": 19, "ua_nodepointer_isloc": 19, "ua_nodepointer_ord": 19, "ua_nodepointer_toexpandednodeid": 19, "ua_nodepointer_tonodeid": 19, "ua_noderefer": [39, 40], "ua_nodereferencekind": 19, "ua_nodereferencekind_findtarget": 19, "ua_nodereferencekind_iter": 19, "ua_nodereferencekind_iteratecallback": 19, "ua_nodereferencekind_switch": 19, "ua_nodeset_dir": 13, "ua_nodestor": [19, 22], "ua_nodestorevisitor": 19, "ua_nodetypedescript": [39, 40], "ua_nodetypelifecycl": [19, 22, 35], "ua_normalizedstr": [39, 40], "ua_notificationmessag": [39, 40], "ua_ns0id_basedatavariabletyp": [28, 29, 30, 35, 36, 37], "ua_ns0id_baseeventtyp": 31, "ua_ns0id_baseobjecttyp": [28, 29, 35], "ua_ns0id_boolean": 28, "ua_ns0id_datetim": 28, "ua_ns0id_hascompon": [28, 29, 31, 33, 35, 37], "ua_ns0id_hasmodellingrul": 35, "ua_ns0id_hasnotifi": 29, "ua_ns0id_hassubtyp": [31, 35, 37], "ua_ns0id_int32": 28, "ua_ns0id_int64": 28, "ua_ns0id_modellingrule_mandatori": 35, "ua_ns0id_objectsfold": [13, 28, 29, 30, 31, 33, 35, 36, 37], "ua_ns0id_offnormalalarmtyp": 29, "ua_ns0id_organ": [13, 28, 29, 30, 35, 36], "ua_ns0id_serv": [29, 31], "ua_ns0id_server_serverstatus_currenttim": [25, 27, 34], "ua_numericrang": [19, 29, 30, 39], "ua_numericrange_pars": 39, "ua_numericrangedimens": 39, "ua_objectattribut": [2, 3, 5, 13, 22, 28, 29, 35, 39, 40, 41], "ua_objectattributes_default": [5, 13, 28, 29, 35, 41], "ua_objectnod": 19, "ua_objecttypeattribut": [2, 3, 5, 22, 31, 35, 39, 40, 41], "ua_objecttypeattributes_default": [5, 31, 35, 41], "ua_objecttypenod": 19, "ua_opaquenumericrang": [39, 40], "ua_openfilemod": [39, 40], "ua_openfilemode_append": [39, 40], "ua_openfilemode_eraseexist": [39, 40], "ua_openfilemode_read": [39, 40], "ua_openfilemode_writ": [39, 40], "ua_opensecurechannelrequest": [39, 40], "ua_opensecurechannelrespons": [39, 40], "ua_optionset": [39, 40], "ua_ord": [5, 19, 39], "ua_order_eq": [5, 19, 39], "ua_order_less": 5, "ua_order_mor": 5, "ua_overridevaluehandl": [39, 40], "ua_overridevaluehandling_dis": [39, 40], "ua_overridevaluehandling_lastusablevalu": [39, 40], "ua_overridevaluehandling_overridevalu": [39, 40], "ua_parseendpointurl": [5, 41], "ua_parseendpointurlethernet": [5, 41], "ua_parsingresult": [39, 40], "ua_passwordoptionsmask": [39, 40], "ua_passwordoptionsmask_non": [39, 40], "ua_passwordoptionsmask_requiresdigitcharact": [39, 40], "ua_passwordoptionsmask_requireslowercasecharact": [39, 40], "ua_passwordoptionsmask_requiresspecialcharact": [39, 40], "ua_passwordoptionsmask_requiresuppercasecharact": [39, 40], "ua_passwordoptionsmask_supportdescriptionforus": [39, 40], "ua_passwordoptionsmask_supportdisabledeleteforus": [39, 40], "ua_passwordoptionsmask_supportdisableus": [39, 40], "ua_passwordoptionsmask_supportinitialpasswordchang": [39, 40], "ua_passwordoptionsmask_supportnochangeforus": [39, 40], "ua_performupdatetyp": [15, 39, 40], "ua_performupdatetype_insert": [39, 40], "ua_performupdatetype_remov": [39, 40], "ua_performupdatetype_replac": [39, 40], "ua_performupdatetype_upd": [39, 40], "ua_permissiontyp": [39, 40], "ua_permissiontype_addnod": [39, 40], "ua_permissiontype_addrefer": [39, 40], "ua_permissiontype_brows": [39, 40], "ua_permissiontype_cal": [39, 40], "ua_permissiontype_deletehistori": [39, 40], "ua_permissiontype_deletenod": [39, 40], "ua_permissiontype_inserthistori": [39, 40], "ua_permissiontype_modifyhistori": [39, 40], "ua_permissiontype_non": [39, 40], "ua_permissiontype_read": [39, 40], "ua_permissiontype_readhistori": [39, 40], "ua_permissiontype_readrolepermiss": [39, 40], "ua_permissiontype_receiveev": [39, 40], "ua_permissiontype_removerefer": [39, 40], "ua_permissiontype_writ": [39, 40], "ua_permissiontype_writeattribut": [39, 40], "ua_permissiontype_writehistor": [39, 40], "ua_permissiontype_writerolepermiss": [39, 40], "ua_plugin_certificategroup_h": 16, "ua_portablenodeid": [39, 40], "ua_portablequalifiednam": [39, 40], "ua_print": [26, 39], "ua_printf_guid_data": [5, 41], "ua_printf_guid_format": [5, 41], "ua_printf_string_data": [5, 41], "ua_printf_string_format": [5, 41], "ua_prioritymappingentrytyp": [39, 40], "ua_programdiagnostic2datatyp": [39, 40], "ua_programdiagnosticdatatyp": [39, 40], "ua_publisheddataitemsdatatyp": [39, 40], "ua_publisheddataitemstemplateconfig": 21, "ua_publisheddatasetconfig": [21, 27], "ua_publisheddatasetconfig_clear": 21, "ua_publisheddatasetcustomsourcedatatyp": [39, 40], "ua_publisheddatasetdatatyp": [39, 40], "ua_publisheddatasettyp": 21, "ua_publishedeventconfig": 21, "ua_publishedeventsdatatyp": [39, 40], "ua_publishedeventtemplateconfig": 21, "ua_publishedvariabledatatyp": [21, 39, 40], "ua_publisherid": 21, "ua_publisherid_clear": 21, "ua_publisherid_copi": 21, "ua_publisherid_fromvari": 21, "ua_publisherid_tovari": 21, "ua_publisheridtyp": 21, "ua_publisheridtype_byt": 21, "ua_publisheridtype_str": 21, "ua_publisheridtype_uint16": [21, 27, 28], "ua_publisheridtype_uint32": [21, 28], "ua_publisheridtype_uint64": 21, "ua_publishrequest": [39, 40], "ua_publishrespons": [39, 40], "ua_pubsub_callbacklifecycl": 21, "ua_pubsub_component_connect": 21, "ua_pubsub_component_datasetread": 21, "ua_pubsub_component_datasetwrit": 21, "ua_pubsub_component_readergroup": 21, "ua_pubsub_component_writergroup": 21, "ua_pubsub_dataset_publishedev": 21, "ua_pubsub_dataset_publishedevents_templ": 21, "ua_pubsub_dataset_publisheditem": [21, 27], "ua_pubsub_dataset_publisheditems_templ": 21, "ua_pubsub_datasetfield_ev": 21, "ua_pubsub_datasetfield_vari": [21, 27], "ua_pubsub_encoding_binari": 21, "ua_pubsub_encoding_json": 21, "ua_pubsub_encoding_uadp": [21, 27], "ua_pubsub_monitoring_message_receive_timeout": 21, "ua_pubsub_rt_data_valu": 21, "ua_pubsub_rt_determinist": 21, "ua_pubsub_rt_direct_value_access": 21, "ua_pubsub_rt_fixed_length": 21, "ua_pubsub_rt_fixed_s": 21, "ua_pubsub_rt_non": 21, "ua_pubsub_rt_raw": 21, "ua_pubsub_rt_unknown": 21, "ua_pubsub_rt_vari": 21, "ua_pubsub_sds_mirror": 21, "ua_pubsub_sds_target": 21, "ua_pubsubcomponentenumtyp": 21, "ua_pubsubconfigur": [21, 22], "ua_pubsubconfiguration2datatyp": [39, 40], "ua_pubsubconfigurationdatatyp": [39, 40], "ua_pubsubconfigurationrefdatatyp": [39, 40], "ua_pubsubconfigurationrefmask": [39, 40], "ua_pubsubconfigurationrefmask_elementadd": [39, 40], "ua_pubsubconfigurationrefmask_elementmatch": [39, 40], "ua_pubsubconfigurationrefmask_elementmodifi": [39, 40], "ua_pubsubconfigurationrefmask_elementremov": [39, 40], "ua_pubsubconfigurationrefmask_non": [39, 40], "ua_pubsubconfigurationrefmask_referenceconnect": [39, 40], "ua_pubsubconfigurationrefmask_referencepubdataset": [39, 40], "ua_pubsubconfigurationrefmask_referencepushtarget": [39, 40], "ua_pubsubconfigurationrefmask_referenceread": [39, 40], "ua_pubsubconfigurationrefmask_referencereadergroup": [39, 40], "ua_pubsubconfigurationrefmask_referencesecuritygroup": [39, 40], "ua_pubsubconfigurationrefmask_referencesubdataset": [39, 40], "ua_pubsubconfigurationrefmask_referencewrit": [39, 40], "ua_pubsubconfigurationrefmask_referencewritergroup": [39, 40], "ua_pubsubconfigurationvaluedatatyp": [39, 40], "ua_pubsubconnectionconfig": [21, 27, 28], "ua_pubsubconnectiondatatyp": [39, 40], "ua_pubsubdiagnosticscounterclassif": [39, 40], "ua_pubsubdiagnosticscounterclassification_error": [39, 40], "ua_pubsubdiagnosticscounterclassification_inform": [39, 40], "ua_pubsubencodingtyp": 21, "ua_pubsubgroupdatatyp": [39, 40], "ua_pubsubkeypushtargetdatatyp": [39, 40], "ua_pubsubmonitoringinterfac": 21, "ua_pubsubmonitoringtyp": 21, "ua_pubsubrtencod": 21, "ua_pubsubrtlevel": 21, "ua_pubsubsecuritypolici": [20, 21], "ua_pubsubst": [21, 39, 40], "ua_pubsubstate_dis": [39, 40], "ua_pubsubstate_error": [39, 40], "ua_pubsubstate_oper": [39, 40], "ua_pubsubstate_paus": [39, 40], "ua_pubsubstate_preoper": [39, 40], "ua_qualifiednam": [1, 2, 3, 5, 13, 19, 22, 28, 29, 30, 31, 33, 35, 36, 37, 39, 40, 41], "ua_qualifiedname_alloc": 39, "ua_qualifiedname_hash": 39, "ua_qualifiedname_isnul": 39, "ua_querydatadescript": [39, 40], "ua_querydataset": [39, 40], "ua_queryfirstrequest": [1, 39, 40], "ua_queryfirstrespons": [1, 39, 40], "ua_querynextrequest": [1, 39, 40], "ua_querynextrespons": [1, 39, 40], "ua_random_se": [5, 41], "ua_rang": [39, 40], "ua_rationalnumb": [39, 40], "ua_readannotationdatadetail": [39, 40], "ua_readattimedetail": [39, 40], "ua_readergroupconfig": [21, 28], "ua_readergroupconfig_clear": 21, "ua_readergroupdatatyp": [39, 40], "ua_readeventdetail": [39, 40], "ua_readnumb": [5, 41], "ua_readnumberwithbas": [5, 41], "ua_readprocesseddetail": [39, 40], "ua_readrawmodifieddetail": [39, 40], "ua_readrequest": [1, 3, 26, 39, 40], "ua_readrequest_clear": 26, "ua_readrequest_delet": 26, "ua_readrequest_init": 26, "ua_readrequest_new": 26, "ua_readrespons": [1, 3, 26, 39, 40], "ua_readresponse_init": 26, "ua_readvalueid": [3, 22, 26, 39, 40], "ua_readvalueid_init": 26, "ua_realloc": 33, "ua_receiveqosprioritydatatyp": [39, 40], "ua_redundancysupport": [39, 40], "ua_redundancysupport_cold": [39, 40], "ua_redundancysupport_hot": [39, 40], "ua_redundancysupport_hotandmirror": [39, 40], "ua_redundancysupport_non": [39, 40], "ua_redundancysupport_transpar": [39, 40], "ua_redundancysupport_warm": [39, 40], "ua_redundantserverdatatyp": [39, 40], "ua_referencedescript": [26, 39, 40], "ua_referencedescription_init": 26, "ua_referencenod": [39, 40], "ua_referencetarget": 19, "ua_referencetargettreeelem": 19, "ua_referencetypeattribut": [2, 3, 5, 22, 39, 40, 41], "ua_referencetypeattributes_default": [5, 41], "ua_referencetypeindex_aggreg": 19, "ua_referencetypeindex_generatesev": 19, "ua_referencetypeindex_haschild": 19, "ua_referencetypeindex_hascompon": 19, "ua_referencetypeindex_hasdescript": 19, "ua_referencetypeindex_hasencod": 19, "ua_referencetypeindex_haseventsourc": 19, "ua_referencetypeindex_hasinterfac": 19, "ua_referencetypeindex_hasmodellingrul": 19, "ua_referencetypeindex_hasnotifi": 19, "ua_referencetypeindex_hasorderedcompon": 19, "ua_referencetypeindex_hasproperti": 19, "ua_referencetypeindex_hassubtyp": 19, "ua_referencetypeindex_hastypedefinit": 19, "ua_referencetypeindex_hierarchicalrefer": 19, "ua_referencetypeindex_nonhierarchicalrefer": 19, "ua_referencetypeindex_organ": 19, "ua_referencetypeindex_refer": 19, "ua_referencetypenod": 19, "ua_referencetypeset": 19, "ua_referencetypeset_al": 19, "ua_referencetypeset_contain": 19, "ua_referencetypeset_init": 19, "ua_referencetypeset_max": 19, "ua_referencetypeset_non": 19, "ua_referencetypeset_union": 19, "ua_reftypeset": 19, "ua_registeredserv": [22, 39, 40], "ua_registernodesrequest": [1, 39, 40], "ua_registernodesrespons": [1, 39, 40], "ua_registerserver2request": [39, 40], "ua_registerserver2respons": [39, 40], "ua_registerserverrequest": [39, 40], "ua_registerserverrespons": [39, 40], "ua_relativepath": [5, 39, 40, 41], "ua_relativepath_pars": [5, 41], "ua_relativepath_parsewithserv": [5, 41], "ua_relativepath_print": [5, 41], "ua_relativepathel": [35, 39, 40], "ua_relativepathelement_init": 35, "ua_republishrequest": [39, 40], "ua_republishrespons": [39, 40], "ua_requesthead": [39, 40], "ua_responsehead": [39, 40], "ua_rolepermissiontyp": [39, 40], "ua_rsaencryptedsecret": [39, 40], "ua_rulehandl": [5, 16, 22], "ua_rulehandling_abort": 5, "ua_rulehandling_accept": 5, "ua_rulehandling_default": 5, "ua_rulehandling_warn": 5, "ua_samplingintervaldiagnosticsdatatyp": [39, 40], "ua_sbyt": [39, 40], "ua_sbyte_max": 39, "ua_sbyte_min": 39, "ua_securechannelst": [1, 5, 22], "ua_securechannelstate_ack_receiv": 5, "ua_securechannelstate_ack_s": 5, "ua_securechannelstate_clos": 5, "ua_securechannelstate_connect": [5, 22], "ua_securechannelstate_hel_receiv": 5, "ua_securechannelstate_hel_s": 5, "ua_securechannelstate_open": 5, "ua_securechannelstate_opn_s": 5, "ua_securechannelstate_reverse_connect": 5, "ua_securechannelstate_reverse_listen": 5, "ua_securechannelstate_rhe_s": 5, "ua_securechannelstatist": [5, 22], "ua_securitygroupconfig": 21, "ua_securitygroupdatatyp": [39, 40], "ua_securitypolici": [1, 20, 22], "ua_securitypolicyasymmetricmodul": 20, "ua_securitypolicychannelmodul": 20, "ua_securitypolicycryptomodul": 20, "ua_securitypolicyencryptionalgorithm": 20, "ua_securitypolicysignaturealgorithm": 20, "ua_securitypolicysymmetricmodul": 20, "ua_securitytokenrequesttyp": [39, 40], "ua_securitytokenrequesttype_issu": [39, 40], "ua_securitytokenrequesttype_renew": [39, 40], "ua_semanticchangestructuredatatyp": [39, 40], "ua_semanticversionstr": [39, 40], "ua_serv": [5, 13, 15, 19, 21, 22, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41], "ua_server_addcondition_begin": 22, "ua_server_addcondition_finish": 22, "ua_server_addconditionoptionalfield": 22, "ua_server_adddatasetfield": [21, 27], "ua_server_adddatasetread": [21, 28], "ua_server_adddatasetwrit": [21, 27], "ua_server_adddatasourcevariablenod": [22, 30], "ua_server_adddatatypenod": 22, "ua_server_addmethodnod": [22, 31, 33], "ua_server_addmethodnode_finish": 22, "ua_server_addmethodnodeex": 22, "ua_server_addnamespac": [13, 22], "ua_server_addnode_begin": 22, "ua_server_addnode_finish": 22, "ua_server_addobjectnod": [13, 22, 28, 29, 35], "ua_server_addobjecttypenod": [22, 31, 35], "ua_server_addpublisheddataset": [21, 27], "ua_server_addpubsubconnect": [21, 27, 28], "ua_server_addreadergroup": [21, 28], "ua_server_addrefer": [22, 29, 35], "ua_server_addreferencetypenod": 22, "ua_server_addrepeatedcallback": 22, "ua_server_addreverseconnect": 22, "ua_server_addsecuritygroup": 21, "ua_server_addstandalonesubscribeddataset": 21, "ua_server_addtimedcallback": 22, "ua_server_addvariablenod": [22, 28, 29, 30, 35, 36, 37], "ua_server_addvariabletypenod": [22, 37], "ua_server_addviewnod": 22, "ua_server_addwritergroup": [21, 27], "ua_server_asyncoperationnotifycallback": 22, "ua_server_brows": 22, "ua_server_browsenext": 22, "ua_server_browserecurs": 22, "ua_server_browsesimplifiedbrowsepath": 22, "ua_server_cal": 22, "ua_server_changerepeatedcallbackinterv": 22, "ua_server_closesess": 22, "ua_server_createcondit": [22, 29], "ua_server_createcondt": 22, "ua_server_createdatachangemonitoreditem": [22, 34], "ua_server_createev": [22, 31], "ua_server_createeventmonitoreditem": 22, "ua_server_createeventmonitoreditemex": 22, "ua_server_createsigningrequest": 22, "ua_server_datachangenotificationcallback": 22, "ua_server_datasetreader_createtargetvari": [21, 28], "ua_server_datasetreader_getconfig": 21, "ua_server_datasetreader_getst": 21, "ua_server_datasetreader_updateconfig": 21, "ua_server_datasetwriter_getst": 21, "ua_server_delet": [13, 22, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37], "ua_server_deletecondit": 22, "ua_server_deletemonitoreditem": 22, "ua_server_deletenod": 22, "ua_server_deleterefer": 22, "ua_server_deletesessionattribut": 22, "ua_server_deregisterdiscoveri": 22, "ua_server_disabledatasetread": 21, "ua_server_disabledatasetwrit": 21, "ua_server_disablepubsubconnect": 21, "ua_server_disablereadergroup": 21, "ua_server_disablewritergroup": 21, "ua_server_enabledatasetread": 21, "ua_server_enabledatasetwrit": 21, "ua_server_enablepubsubconnect": 21, "ua_server_enablereadergroup": [21, 28], "ua_server_enablewritergroup": [21, 27], "ua_server_eventnotificationcallback": 22, "ua_server_finddatatyp": 22, "ua_server_foreachchildnodecal": 22, "ua_server_freezereadergroupconfigur": 21, "ua_server_freezewritergroupconfigur": 21, "ua_server_getasyncoperationblock": 22, "ua_server_getasyncoperationnonblock": 22, "ua_server_getconfig": [13, 22], "ua_server_getdatasetfieldconfig": 21, "ua_server_getdatasetwriterconfig": 21, "ua_server_getlifecyclest": 22, "ua_server_getmethodnodecallback": 22, "ua_server_getnamespacebyindex": 22, "ua_server_getnamespacebynam": 22, "ua_server_getnodecontext": 22, "ua_server_getpublisheddatasetconfig": 21, "ua_server_getpublisheddatasetmetadata": 21, "ua_server_getpubsubconnectionconfig": 21, "ua_server_getsessionattribut": 22, "ua_server_getsessionattribute_scalar": 22, "ua_server_getsessionattributecopi": 22, "ua_server_getstatist": 22, "ua_server_getwritergroupconfig": 21, "ua_server_new": [13, 22, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37], "ua_server_newwithconfig": 22, "ua_server_read": 22, "ua_server_readaccesslevel": 22, "ua_server_readaccesslevelex": 22, "ua_server_readarraydimens": 22, "ua_server_readbrowsenam": 22, "ua_server_readcontainsnoloop": 22, "ua_server_readdatatyp": 22, "ua_server_readdescript": 22, "ua_server_readdisplaynam": 22, "ua_server_readergroup_getconfig": 21, "ua_server_readergroup_getst": 21, "ua_server_readergroup_updateconfig": 21, "ua_server_readeventnotifi": 22, "ua_server_readexecut": 22, "ua_server_readhistor": 22, "ua_server_readinversenam": 22, "ua_server_readisabstract": 22, "ua_server_readminimumsamplinginterv": 22, "ua_server_readnodeclass": 22, "ua_server_readnodeid": 22, "ua_server_readobjectproperti": 22, "ua_server_readsymmetr": 22, "ua_server_readvalu": 22, "ua_server_readvaluerank": 22, "ua_server_readwritemask": 22, "ua_server_registerdiscoveri": 22, "ua_server_registerservercallback": 22, "ua_server_removecallback": 22, "ua_server_removedatasetfield": 21, "ua_server_removedatasetread": 21, "ua_server_removedatasetwrit": 21, "ua_server_removepublisheddataset": 21, "ua_server_removepubsubconnect": 21, "ua_server_removereadergroup": 21, "ua_server_removerepeatedcallback": 22, "ua_server_removereverseconnect": 22, "ua_server_removesecuritygroup": 21, "ua_server_removestandalonesubscribeddataset": 21, "ua_server_removewritergroup": 21, "ua_server_reverseconnectstatecallback": 22, "ua_server_run": [13, 22, 32], "ua_server_run_iter": 22, "ua_server_run_shutdown": 22, "ua_server_run_startup": 22, "ua_server_rununtilinterrupt": [22, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37], "ua_server_serveronnetworkcallback": 22, "ua_server_setadminsessioncontext": 22, "ua_server_setasyncoperationresult": 22, "ua_server_setconditionfield": [22, 29], "ua_server_setconditiontwostatevariablecallback": [22, 29], "ua_server_setconditionvariablefieldproperti": [22, 29], "ua_server_setexpirationd": 22, "ua_server_setlimitst": 22, "ua_server_setmethodnode_callback": 22, "ua_server_setmethodnodeasync": 22, "ua_server_setmethodnodecallback": 22, "ua_server_setnodecontext": 22, "ua_server_setnodetypelifecycl": [22, 35], "ua_server_setreadergroupactivatekei": 21, "ua_server_setreadergroupdis": 21, "ua_server_setreadergroupencryptionkei": 21, "ua_server_setreadergroupoper": 21, "ua_server_setregisterservercallback": 22, "ua_server_setserveronnetworkcallback": 22, "ua_server_setsessionattribut": 22, "ua_server_setskscli": 21, "ua_server_setvariablenode_datasourc": 22, "ua_server_setvariablenode_valuebackend": [22, 30], "ua_server_setvariablenode_valuecallback": [22, 29, 30], "ua_server_setvariablenodedynam": 22, "ua_server_setwritergroupactivatekei": 21, "ua_server_setwritergroupdis": 21, "ua_server_setwritergroupencryptionkei": 21, "ua_server_setwritergroupoper": 21, "ua_server_skspullrequestcallback": 21, "ua_server_translatebrowsepathtonodeid": [22, 35], "ua_server_triggerconditionev": [22, 29], "ua_server_triggerev": [22, 31], "ua_server_unfreezereadergroupconfigur": 21, "ua_server_unfreezewritergroupconfigur": 21, "ua_server_updatecertif": 22, "ua_server_updatewritergroupconfig": 21, "ua_server_writ": [22, 36], "ua_server_writeaccesslevel": 22, "ua_server_writeaccesslevelex": 22, "ua_server_writearraydimens": 22, "ua_server_writebrowsenam": 22, "ua_server_writedatatyp": 22, "ua_server_writedatavalu": 22, "ua_server_writedescript": 22, "ua_server_writedisplaynam": 22, "ua_server_writeeventnotifi": 22, "ua_server_writeexecut": 22, "ua_server_writehistor": 22, "ua_server_writeinversenam": 22, "ua_server_writeisabstract": 22, "ua_server_writeminimumsamplinginterv": 22, "ua_server_writeobjectproperti": 22, "ua_server_writeobjectproperty_scalar": [22, 29, 31], "ua_server_writergroup_getst": 21, "ua_server_writergroup_publish": 21, "ua_server_writevalu": [22, 30, 35, 36], "ua_server_writevaluerank": [22, 37], "ua_server_writewritemask": 22, "ua_servercallback": [5, 21, 22], "ua_serverconfig": [5, 22], "ua_serverconfig_clean": 22, "ua_serverconfig_clear": 22, "ua_serverconfig_setdefault": 13, "ua_serverdiagnosticssummarydatatyp": [39, 40], "ua_serveronnetwork": [1, 22, 39, 40], "ua_serverst": [39, 40], "ua_serverstate_communicationfault": [39, 40], "ua_serverstate_fail": [39, 40], "ua_serverstate_noconfigur": [39, 40], "ua_serverstate_run": [39, 40], "ua_serverstate_shutdown": [39, 40], "ua_serverstate_suspend": [39, 40], "ua_serverstate_test": [39, 40], "ua_serverstate_unknown": [39, 40], "ua_serverstatist": 22, "ua_serverstatusdatatyp": [39, 40], "ua_servicecounterdatatyp": [39, 40], "ua_servicefault": [39, 40], "ua_sessionauthenticationtoken": [39, 40], "ua_sessiondiagnosticsdatatyp": [39, 40], "ua_sessionlessinvokerequesttyp": [39, 40], "ua_sessionlessinvokeresponsetyp": [39, 40], "ua_sessionsecuritydiagnosticsdatatyp": [39, 40], "ua_sessionst": [1, 5], "ua_sessionstate_activ": 5, "ua_sessionstate_activate_request": 5, "ua_sessionstate_clos": 5, "ua_sessionstate_cr": 5, "ua_sessionstate_create_request": 5, "ua_sessionstatist": [5, 22], "ua_setmonitoringmoderequest": [4, 39, 40], "ua_setmonitoringmoderespons": [4, 39, 40], "ua_setpublishingmoderequest": [4, 39, 40], "ua_setpublishingmoderespons": [4, 39, 40], "ua_settriggeringrequest": [4, 39, 40], "ua_settriggeringrespons": [4, 39, 40], "ua_shutdownreason": 5, "ua_shutdownreason_abort": 5, "ua_shutdownreason_clos": 5, "ua_shutdownreason_purg": 5, "ua_shutdownreason_reject": 5, "ua_shutdownreason_securityreject": 5, "ua_shutdownreason_timeout": 5, "ua_signaturedata": [39, 40], "ua_signedsoftwarecertif": [39, 40], "ua_simpleattributeoperand": [5, 21, 39, 40, 41], "ua_simpleattributeoperand_pars": [5, 41], "ua_simpleattributeoperand_print": [5, 22, 41], "ua_simpletypedescript": [39, 40], "ua_standalonesubscribeddatasetconfig": 21, "ua_standalonesubscribeddatasetconfig_clear": 21, "ua_standalonesubscribeddatasetdatatyp": [39, 40], "ua_standalonesubscribeddatasetrefdatatyp": [39, 40], "ua_statuschangenotif": [4, 39, 40], "ua_statuscod": [1, 2, 3, 4, 5, 13, 15, 16, 17, 19, 20, 21, 22, 25, 27, 28, 29, 30, 31, 33, 35, 36, 37, 39, 40, 41], "ua_statuscode_bad": 23, "ua_statuscode_badaggregateconfigurationreject": 23, "ua_statuscode_badaggregateinvalidinput": 23, "ua_statuscode_badaggregatelistmismatch": 23, "ua_statuscode_badaggregatenotsupport": 23, "ua_statuscode_badalreadyexist": 23, "ua_statuscode_badapplicationsignatureinvalid": 23, "ua_statuscode_badargumentsmiss": 23, "ua_statuscode_badattributeidinvalid": 23, "ua_statuscode_badboundnotfound": 23, "ua_statuscode_badboundnotsupport": 23, "ua_statuscode_badbrowsedirectioninvalid": 23, "ua_statuscode_badbrowsenamedupl": 23, "ua_statuscode_badbrowsenameinvalid": 23, "ua_statuscode_badcertificatechainincomplet": 23, "ua_statuscode_badcertificatehostnameinvalid": 23, "ua_statuscode_badcertificateinvalid": 23, "ua_statuscode_badcertificateissuerrevocationunknown": 23, "ua_statuscode_badcertificateissuerrevok": 23, "ua_statuscode_badcertificateissuertimeinvalid": 23, "ua_statuscode_badcertificateissuerusenotallow": 23, "ua_statuscode_badcertificatepolicycheckfail": 23, "ua_statuscode_badcertificaterevocationunknown": 23, "ua_statuscode_badcertificaterevok": 23, "ua_statuscode_badcertificatetimeinvalid": 23, "ua_statuscode_badcertificateuntrust": 23, "ua_statuscode_badcertificateuriinvalid": 23, "ua_statuscode_badcertificateusenotallow": 23, "ua_statuscode_badcommunicationerror": 23, "ua_statuscode_badconditionalreadydis": 23, "ua_statuscode_badconditionalreadyen": 23, "ua_statuscode_badconditionalreadyshelv": 23, "ua_statuscode_badconditionbranchalreadyack": 23, "ua_statuscode_badconditionbranchalreadyconfirm": 23, "ua_statuscode_badconditiondis": 23, "ua_statuscode_badconditionnotshelv": 23, "ua_statuscode_badconfigurationerror": 23, "ua_statuscode_badconnectionclos": 23, "ua_statuscode_badconnectionreject": 23, "ua_statuscode_badcontentfilterinvalid": 23, "ua_statuscode_badcontinuationpointinvalid": 23, "ua_statuscode_baddataencodinginvalid": 23, "ua_statuscode_baddataencodingunsupport": 23, "ua_statuscode_baddatalost": 23, "ua_statuscode_baddatatypeidunknown": 23, "ua_statuscode_baddataunavail": 23, "ua_statuscode_baddeadbandfilterinvalid": 23, "ua_statuscode_baddecodingerror": 23, "ua_statuscode_baddependentvaluechang": 23, "ua_statuscode_baddevicefailur": 23, "ua_statuscode_baddialognotact": 23, "ua_statuscode_baddialogresponseinvalid": 23, "ua_statuscode_baddisconnect": 23, "ua_statuscode_baddiscoveryurlmiss": 23, "ua_statuscode_baddominantvaluechang": 23, "ua_statuscode_badduplicatereferencenotallow": 23, "ua_statuscode_badedited_outofrang": 23, "ua_statuscode_badedited_outofrange_dominantvaluechang": 23, "ua_statuscode_badedited_outofrange_dominantvaluechanged_dependentvaluechang": 23, "ua_statuscode_badencodingerror": 23, "ua_statuscode_badencodinglimitsexceed": 23, "ua_statuscode_badendofstream": 23, "ua_statuscode_badentryexist": 23, "ua_statuscode_badeventfilterinvalid": 23, "ua_statuscode_badeventidunknown": 23, "ua_statuscode_badeventnotacknowledg": 23, "ua_statuscode_badexpectedstreamtoblock": 23, "ua_statuscode_badfilterelementinvalid": 23, "ua_statuscode_badfilterliteralinvalid": 23, "ua_statuscode_badfilternotallow": 23, "ua_statuscode_badfilteroperandcountmismatch": 23, "ua_statuscode_badfilteroperandinvalid": 23, "ua_statuscode_badfilteroperatorinvalid": 23, "ua_statuscode_badfilteroperatorunsupport": 23, "ua_statuscode_badhistoryoperationinvalid": 23, "ua_statuscode_badhistoryoperationunsupport": 23, "ua_statuscode_badidentitychangenotsupport": 23, "ua_statuscode_badidentitytokeninvalid": 23, "ua_statuscode_badidentitytokenreject": 23, "ua_statuscode_badindexrangeinvalid": [19, 23], "ua_statuscode_badindexrangenodata": 23, "ua_statuscode_badinitialvalue_outofrang": 23, "ua_statuscode_badinsufficientclientprofil": 23, "ua_statuscode_badinternalerror": [5, 19, 23, 28, 30, 41], "ua_statuscode_badinvalidargu": 23, "ua_statuscode_badinvalidselfrefer": 23, "ua_statuscode_badinvalidst": 23, "ua_statuscode_badinvalidtimestamp": 23, "ua_statuscode_badinvalidtimestampargu": 23, "ua_statuscode_badlicenseexpir": 23, "ua_statuscode_badlicenselimitsexceed": 23, "ua_statuscode_badlicensenotavail": 23, "ua_statuscode_badmaxageinvalid": 23, "ua_statuscode_badmaxconnectionsreach": 23, "ua_statuscode_badmessagenotavail": 23, "ua_statuscode_badmethodinvalid": 23, "ua_statuscode_badmonitoreditemfilterinvalid": 23, "ua_statuscode_badmonitoreditemfilterunsupport": 23, "ua_statuscode_badmonitoreditemidinvalid": 23, "ua_statuscode_badmonitoringmodeinvalid": 23, "ua_statuscode_badnocommun": 23, "ua_statuscode_badnocontinuationpoint": 23, "ua_statuscode_badnodata": 23, "ua_statuscode_badnodataavail": 23, "ua_statuscode_badnodeattributesinvalid": 23, "ua_statuscode_badnodeclassinvalid": 23, "ua_statuscode_badnodeidexist": 23, "ua_statuscode_badnodeidinvalid": 23, "ua_statuscode_badnodeidreject": 23, "ua_statuscode_badnodeidunknown": [19, 23], "ua_statuscode_badnodeleteright": 23, "ua_statuscode_badnodenotinview": 23, "ua_statuscode_badnoentryexist": 23, "ua_statuscode_badnomatch": 23, "ua_statuscode_badnonceinvalid": 23, "ua_statuscode_badnosubscript": 23, "ua_statuscode_badnotconnect": [23, 36], "ua_statuscode_badnotexecut": 23, "ua_statuscode_badnotfound": [1, 23], "ua_statuscode_badnothingtodo": 23, "ua_statuscode_badnotimpl": 23, "ua_statuscode_badnotread": 23, "ua_statuscode_badnotsupport": 23, "ua_statuscode_badnottypedefinit": 23, "ua_statuscode_badnotwrit": 23, "ua_statuscode_badnovalidcertif": 23, "ua_statuscode_badnumericoverflow": 23, "ua_statuscode_badobjectdelet": 23, "ua_statuscode_badoperationabandon": 23, "ua_statuscode_badoutofmemori": [1, 23, 39], "ua_statuscode_badoutofrang": 23, "ua_statuscode_badoutofrange_dominantvaluechang": 23, "ua_statuscode_badoutofrange_dominantvaluechanged_dependentvaluechang": 23, "ua_statuscode_badoutofservic": 23, "ua_statuscode_badparentnodeidinvalid": 23, "ua_statuscode_badprotocolversionunsupport": 23, "ua_statuscode_badquerytoocomplex": 23, "ua_statuscode_badreferencelocalonli": 23, "ua_statuscode_badreferencenotallow": 23, "ua_statuscode_badreferencetypeidinvalid": 23, "ua_statuscode_badrefreshinprogress": 23, "ua_statuscode_badrequestcancelledbycli": 23, "ua_statuscode_badrequestcancelledbyrequest": 23, "ua_statuscode_badrequestheaderinvalid": 23, "ua_statuscode_badrequestinterrupt": 23, "ua_statuscode_badrequestnotallow": 23, "ua_statuscode_badrequestnotcomplet": 23, "ua_statuscode_badrequesttimeout": 23, "ua_statuscode_badrequesttoolarg": 23, "ua_statuscode_badrequesttypeinvalid": 23, "ua_statuscode_badresourceunavail": 23, "ua_statuscode_badresponsetoolarg": 23, "ua_statuscode_badsecurechannelclos": 23, "ua_statuscode_badsecurechannelidinvalid": 23, "ua_statuscode_badsecurechanneltokenunknown": 23, "ua_statuscode_badsecuritychecksfail": [16, 23], "ua_statuscode_badsecuritymodeinsuffici": 23, "ua_statuscode_badsecuritymodereject": 23, "ua_statuscode_badsecuritypolicyreject": 23, "ua_statuscode_badsempahorefilemiss": 23, "ua_statuscode_badsensorfailur": 23, "ua_statuscode_badsequencenumberinvalid": 23, "ua_statuscode_badsequencenumberunknown": 23, "ua_statuscode_badserverhalt": 23, "ua_statuscode_badserverindexinvalid": 23, "ua_statuscode_badservernamemiss": 23, "ua_statuscode_badservernotconnect": 23, "ua_statuscode_badserveruriinvalid": 23, "ua_statuscode_badserviceunsupport": 23, "ua_statuscode_badsessionclos": 23, "ua_statuscode_badsessionidinvalid": 23, "ua_statuscode_badsessionnotactiv": 23, "ua_statuscode_badshelvingtimeoutofrang": 23, "ua_statuscode_badshutdown": [1, 23], "ua_statuscode_badsourcenodeidinvalid": 23, "ua_statuscode_badstatenotact": 23, "ua_statuscode_badstructuremiss": 23, "ua_statuscode_badsubscriptionidinvalid": 23, "ua_statuscode_badsyntaxerror": 23, "ua_statuscode_badtargetnodeidinvalid": 23, "ua_statuscode_badtcpendpointurlinvalid": [5, 23, 41], "ua_statuscode_badtcpinternalerror": 23, "ua_statuscode_badtcpmessagetoolarg": 23, "ua_statuscode_badtcpmessagetypeinvalid": 23, "ua_statuscode_badtcpnotenoughresourc": 23, "ua_statuscode_badtcpsecurechannelunknown": 23, "ua_statuscode_badtcpservertoobusi": 23, "ua_statuscode_badticketinvalid": 23, "ua_statuscode_badticketrequir": 23, "ua_statuscode_badtimeout": [1, 23], "ua_statuscode_badtimestampnotsupport": 23, "ua_statuscode_badtimestampstoreturninvalid": 23, "ua_statuscode_badtoomanyargu": 23, "ua_statuscode_badtoomanymatch": 23, "ua_statuscode_badtoomanymonitoreditem": 23, "ua_statuscode_badtoomanyoper": 23, "ua_statuscode_badtoomanypublishrequest": 23, "ua_statuscode_badtoomanysess": 23, "ua_statuscode_badtoomanysubscript": 23, "ua_statuscode_badtypedefinitioninvalid": 23, "ua_statuscode_badtypemismatch": [23, 37], "ua_statuscode_badunexpectederror": [13, 23], "ua_statuscode_badunknownrespons": 23, "ua_statuscode_baduseraccessdeni": 23, "ua_statuscode_badusersignatureinvalid": 23, "ua_statuscode_badviewidunknown": 23, "ua_statuscode_badviewparametermismatch": 23, "ua_statuscode_badviewtimestampinvalid": 23, "ua_statuscode_badviewversioninvalid": 23, "ua_statuscode_badwaitingforinitialdata": 23, "ua_statuscode_badwaitingforrespons": 23, "ua_statuscode_badwouldblock": 23, "ua_statuscode_badwritenotsupport": 23, "ua_statuscode_good": [1, 13, 15, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 33, 35, 39], "ua_statuscode_goodcallagain": [1, 23], "ua_statuscode_goodclamp": 23, "ua_statuscode_goodcommunicationev": 23, "ua_statuscode_goodcompletesasynchron": 23, "ua_statuscode_gooddataignor": 23, "ua_statuscode_gooddependentvaluechang": 23, "ua_statuscode_goodedit": 23, "ua_statuscode_goodedited_dependentvaluechang": 23, "ua_statuscode_goodedited_dominantvaluechang": 23, "ua_statuscode_goodedited_dominantvaluechanged_dependentvaluechang": 23, "ua_statuscode_goodentryinsert": 23, "ua_statuscode_goodentryreplac": 23, "ua_statuscode_goodlocaloverrid": 23, "ua_statuscode_goodmoredata": 23, "ua_statuscode_goodnodata": 23, "ua_statuscode_goodnoncriticaltimeout": 23, "ua_statuscode_goodoverload": 23, "ua_statuscode_goodpostactionfail": 23, "ua_statuscode_goodresultsmaybeincomplet": 23, "ua_statuscode_goodretransmissionqueuenotsupport": 23, "ua_statuscode_goodshutdownev": 23, "ua_statuscode_goodsubscriptiontransf": 23, "ua_statuscode_infobits_overflow": 23, "ua_statuscode_infotype_datavalu": 23, "ua_statuscode_isbad": 39, "ua_statuscode_isequaltop": 39, "ua_statuscode_isgood": 39, "ua_statuscode_isuncertain": 39, "ua_statuscode_nam": [25, 29, 31, 36, 37, 39], "ua_statuscode_success": 22, "ua_statuscode_uncertain": 23, "ua_statuscode_uncertaindatasubnorm": 23, "ua_statuscode_uncertaindependentvaluechang": 23, "ua_statuscode_uncertaindominantvaluechang": 23, "ua_statuscode_uncertainengineeringunitsexceed": 23, "ua_statuscode_uncertaininitialvalu": 23, "ua_statuscode_uncertainlastusablevalu": 23, "ua_statuscode_uncertainnocommunicationlastusablevalu": 23, "ua_statuscode_uncertainnotallnodesavail": 23, "ua_statuscode_uncertainreferencenotdelet": 23, "ua_statuscode_uncertainreferenceoutofserv": 23, "ua_statuscode_uncertainsensornotaccur": 23, "ua_statuscode_uncertainsubnorm": 23, "ua_statuscode_uncertainsubstitutevalu": 23, "ua_statusresult": [39, 40], "ua_str": [1, 2, 5, 16, 17, 20, 21, 22, 26, 27, 28, 31, 33, 35, 36, 37, 39, 40, 41], "ua_string_alloc": [1, 26, 33, 39], "ua_string_clear": [1, 26, 33], "ua_string_copi": 26, "ua_string_equ": 26, "ua_string_fromchar": [7, 8, 9, 10, 11, 39], "ua_string_init": 26, "ua_string_isempti": 39, "ua_string_nul": [26, 27, 28, 39], "ua_string_stat": 39, "ua_structuredefinit": [39, 40], "ua_structuredescript": [39, 40], "ua_structurefield": [39, 40], "ua_structuretyp": [39, 40], "ua_structuretype_structur": [39, 40], "ua_structuretype_structurewithoptionalfield": [39, 40], "ua_structuretype_structurewithsubtypedvalu": [39, 40], "ua_structuretype_union": [39, 40], "ua_structuretype_unionwithsubtypedvalu": [39, 40], "ua_subscribeddatasetenumtyp": 21, "ua_subscribeddatasetmirrordatatyp": [21, 39, 40], "ua_subscriptionacknowledg": [39, 40], "ua_subscriptiondiagnosticsdatatyp": [39, 40], "ua_targetvari": 21, "ua_targetvariablesdatatyp": [21, 39, 40], "ua_threadsaf": [0, 1, 2, 3, 4, 21, 22], "ua_threedcartesiancoordin": [39, 40], "ua_threedfram": [39, 40], "ua_threedorient": [39, 40], "ua_threedvector": [39, 40], "ua_timer_handle_cyclemiss_with_basetim": 17, "ua_timer_handle_cyclemiss_with_currenttim": 17, "ua_timerpolici": [17, 21], "ua_timerpolicy_basetim": 17, "ua_timerpolicy_currenttim": 17, "ua_timestampstoreturn": [2, 3, 4, 22, 39, 40], "ua_timestampstoreturn_both": [39, 40], "ua_timestampstoreturn_invalid": [39, 40], "ua_timestampstoreturn_neith": [39, 40], "ua_timestampstoreturn_serv": [39, 40], "ua_timestampstoreturn_sourc": [34, 39, 40], "ua_timestr": [39, 40], "ua_timezonedatatyp": [39, 40], "ua_transferresult": [39, 40], "ua_transfersubscriptionsrequest": [39, 40], "ua_transfersubscriptionsrespons": [39, 40], "ua_translatebrowsepathstonodeidsrequest": [1, 39, 40], "ua_translatebrowsepathstonodeidsrespons": [1, 39, 40], "ua_transmitqosprioritydatatyp": [39, 40], "ua_tru": [19, 22, 27, 28, 29, 31, 39], "ua_trustlistdatatyp": [5, 16, 39, 40, 41], "ua_trustlistdatatype_add": [5, 41], "ua_trustlistdatatype_contain": [5, 41], "ua_trustlistdatatype_gets": [5, 41], "ua_trustlistdatatype_remov": [5, 41], "ua_trustlistmask": [5, 39, 40, 41], "ua_trustlistmasks_al": [39, 40], "ua_trustlistmasks_issuercertif": [39, 40], "ua_trustlistmasks_issuercrl": [39, 40], "ua_trustlistmasks_non": [39, 40], "ua_trustlistmasks_trustedcertif": [39, 40], "ua_trustlistmasks_trustedcrl": [39, 40], "ua_tsnfailurecod": [39, 40], "ua_tsnfailurecode_bridgedoesnotprovidenetworkid": [39, 40], "ua_tsnfailurecode_cannotstoredestinationaddress": [39, 40], "ua_tsnfailurecode_egressportnotavbcap": [39, 40], "ua_tsnfailurecode_featurenotpropag": [39, 40], "ua_tsnfailurecode_featurenotsupport": [39, 40], "ua_tsnfailurecode_firstvaluechangedforstreamid": [39, 40], "ua_tsnfailurecode_insufficientbandwidth": [39, 40], "ua_tsnfailurecode_insufficientresourc": [39, 40], "ua_tsnfailurecode_insufficienttrafficclassbandwidth": [39, 40], "ua_tsnfailurecode_latencyhaschang": [39, 40], "ua_tsnfailurecode_maxfaninportslimitreach": [39, 40], "ua_tsnfailurecode_maxframesizetoolarg": [39, 40], "ua_tsnfailurecode_maxlatencyexceed": [39, 40], "ua_tsnfailurecode_nofailur": [39, 40], "ua_tsnfailurecode_outofmmrpresourc": [39, 40], "ua_tsnfailurecode_outofmsrpresourc": [39, 40], "ua_tsnfailurecode_priorityisnotansrcclass": [39, 40], "ua_tsnfailurecode_srclassprioritymismatch": [39, 40], "ua_tsnfailurecode_streamdestinationaddressinus": [39, 40], "ua_tsnfailurecode_streamidinus": [39, 40], "ua_tsnfailurecode_streamidtypenotsupport": [39, 40], "ua_tsnfailurecode_streampreemptedbyhigherrank": [39, 40], "ua_tsnfailurecode_streamtransformnotsupport": [39, 40], "ua_tsnfailurecode_usedifferentdestinationaddress": [39, 40], "ua_tsnfailurecode_vlanblockedonegress": [39, 40], "ua_tsnfailurecode_vlantaggingdisabledonegress": [39, 40], "ua_tsnlistenerstatu": [39, 40], "ua_tsnlistenerstatus_fail": [39, 40], "ua_tsnlistenerstatus_non": [39, 40], "ua_tsnlistenerstatus_partialfail": [39, 40], "ua_tsnlistenerstatus_readi": [39, 40], "ua_tsnstreamst": [39, 40], "ua_tsnstreamstate_configur": [39, 40], "ua_tsnstreamstate_dis": [39, 40], "ua_tsnstreamstate_error": [39, 40], "ua_tsnstreamstate_oper": [39, 40], "ua_tsnstreamstate_readi": [39, 40], "ua_tsntalkerstatu": [39, 40], "ua_tsntalkerstatus_fail": [39, 40], "ua_tsntalkerstatus_non": [39, 40], "ua_tsntalkerstatus_readi": [39, 40], "ua_twostatevariablecallbacktyp": 22, "ua_twostatevariablechangecallback": [22, 29], "ua_typ": [1, 2, 3, 4, 13, 22, 25, 26, 27, 28, 29, 30, 31, 33, 35, 36, 37, 39], "ua_types_": 3, "ua_types_addnodesrequest": 1, "ua_types_addnodesrespons": 1, "ua_types_addreferencesrequest": 1, "ua_types_addreferencesrespons": 1, "ua_types_boolean": [2, 22, 28, 29, 35], "ua_types_browsenextrequest": [1, 3], "ua_types_browsenextrespons": [1, 3], "ua_types_browserequest": [1, 3], "ua_types_browserespons": [1, 3], "ua_types_byt": [2, 22], "ua_types_callrequest": 1, "ua_types_callrespons": 1, "ua_types_datatypeattribut": [2, 3, 22], "ua_types_datavalu": [2, 22, 26], "ua_types_datetim": [25, 28, 29, 30, 31], "ua_types_deletenodesrequest": 1, "ua_types_deletenodesrespons": 1, "ua_types_deletereferencesrequest": 1, "ua_types_deletereferencesrespons": 1, "ua_types_di": 13, "ua_types_di_gener": 13, "ua_types_di_generated_encoding_binari": 13, "ua_types_di_generated_handl": 13, "ua_types_doubl": [2, 22, 26, 35, 36, 37], "ua_types_fieldmetadata": 28, "ua_types_float": 26, "ua_types_historyreadrequest": 1, "ua_types_historyreadrespons": 1, "ua_types_historyupdaterequest": 1, "ua_types_historyupdaterespons": 1, "ua_types_int32": [2, 22, 26, 28, 33, 36], "ua_types_int64": 28, "ua_types_localizedtext": [2, 22, 29, 31], "ua_types_methodattribut": [2, 3], "ua_types_networkaddressurldatatyp": [27, 28], "ua_types_nodeclass": 2, "ua_types_nodeid": [2, 22], "ua_types_objectattribut": [2, 3, 22], "ua_types_objecttypeattribut": [2, 3, 22], "ua_types_qualifiednam": [2, 22], "ua_types_queryfirstrequest": 1, "ua_types_queryfirstrespons": 1, "ua_types_readrequest": [1, 3, 26], "ua_types_readrespons": [1, 3, 26], "ua_types_readvalueid": 26, "ua_types_referencedescript": 26, "ua_types_referencetypeattribut": [2, 3, 22], "ua_types_registernodesrequest": 1, "ua_types_registernodesrespons": 1, "ua_types_setmonitoringmoderequest": 4, "ua_types_setmonitoringmoderespons": 4, "ua_types_setpublishingmoderequest": 4, "ua_types_setpublishingmoderespons": 4, "ua_types_settriggeringrequest": 4, "ua_types_settriggeringrespons": 4, "ua_types_str": [31, 33, 35, 36, 37], "ua_types_translatebrowsepathstonodeidsrequest": 1, "ua_types_translatebrowsepathstonodeidsrespons": 1, "ua_types_uadpwritergroupmessagedatatyp": 27, "ua_types_uint16": [29, 31], "ua_types_uint32": [2, 22, 26], "ua_types_unregisternodesrequest": 1, "ua_types_unregisternodesrespons": 1, "ua_types_usernameidentitytoken": 1, "ua_types_vari": [2, 22], "ua_types_variableattribut": [2, 3, 22], "ua_types_variabletypeattribut": [2, 3, 22], "ua_types_viewattribut": [2, 3, 22], "ua_types_writerequest": [1, 3], "ua_types_writerespons": [1, 3], "ua_types_xxx": 39, "ua_uabinaryfiledatatyp": [39, 40], "ua_uadpdatasetmessagecontentmask": [39, 40], "ua_uadpdatasetmessagecontentmask_majorvers": [39, 40], "ua_uadpdatasetmessagecontentmask_minorvers": [39, 40], "ua_uadpdatasetmessagecontentmask_non": [39, 40], "ua_uadpdatasetmessagecontentmask_picosecond": [39, 40], "ua_uadpdatasetmessagecontentmask_sequencenumb": [39, 40], "ua_uadpdatasetmessagecontentmask_statu": [39, 40], "ua_uadpdatasetmessagecontentmask_timestamp": [39, 40], "ua_uadpdatasetreadermessagedatatyp": [39, 40], "ua_uadpdatasetwritermessagedatatyp": [39, 40], "ua_uadpnetworkmessagecontentmask": [27, 39, 40], "ua_uadpnetworkmessagecontentmask_datasetclassid": [39, 40], "ua_uadpnetworkmessagecontentmask_grouphead": [27, 39, 40], "ua_uadpnetworkmessagecontentmask_groupvers": [39, 40], "ua_uadpnetworkmessagecontentmask_networkmessagenumb": [39, 40], "ua_uadpnetworkmessagecontentmask_non": [39, 40], "ua_uadpnetworkmessagecontentmask_payloadhead": [27, 39, 40], "ua_uadpnetworkmessagecontentmask_picosecond": [39, 40], "ua_uadpnetworkmessagecontentmask_promotedfield": [39, 40], "ua_uadpnetworkmessagecontentmask_publisherid": [27, 39, 40], "ua_uadpnetworkmessagecontentmask_sequencenumb": [39, 40], "ua_uadpnetworkmessagecontentmask_timestamp": [39, 40], "ua_uadpnetworkmessagecontentmask_writergroupid": [27, 39, 40], "ua_uadpwritergroupmessagedatatyp": [27, 39, 40], "ua_uadpwritergroupmessagedatatype_delet": 27, "ua_uadpwritergroupmessagedatatype_new": 27, "ua_uint16": [1, 2, 5, 21, 22, 28, 29, 31, 39, 40, 41], "ua_uint16_max": 39, "ua_uint16_min": 39, "ua_uint32": [1, 2, 3, 4, 5, 15, 17, 19, 21, 22, 26, 28, 33, 34, 36, 37, 39, 40, 41], "ua_uint32_max": 39, "ua_uint32_min": 39, "ua_uint32_random": [5, 28, 41], "ua_uint32rang": [5, 22, 41], "ua_uint64": [1, 5, 17, 21, 22, 39, 40, 41], "ua_uint64_max": 39, "ua_uint64_min": 39, "ua_unregisternodesrequest": [1, 39, 40], "ua_unregisternodesrespons": [1, 39, 40], "ua_unsignedrationalnumb": [39, 40], "ua_updatedatadetail": [39, 40], "ua_updateeventdetail": [39, 40], "ua_updatestructuredatadetail": [39, 40], "ua_uristr": [39, 40], "ua_userconfigurationmask": [39, 40], "ua_userconfigurationmask_dis": [39, 40], "ua_userconfigurationmask_mustchangepassword": [39, 40], "ua_userconfigurationmask_nochangebyus": [39, 40], "ua_userconfigurationmask_nodelet": [39, 40], "ua_userconfigurationmask_non": [39, 40], "ua_useridentitytoken": [39, 40], "ua_usermanagementdatatyp": [39, 40], "ua_usernameidentitytoken": [1, 39, 40], "ua_usernameidentitytoken_new": 1, "ua_usertokenpolici": [1, 15, 39, 40], "ua_usertokentyp": [39, 40], "ua_usertokentype_anonym": [39, 40], "ua_usertokentype_certif": [39, 40], "ua_usertokentype_issuedtoken": [39, 40], "ua_usertokentype_usernam": [39, 40], "ua_utctim": [39, 40], "ua_valuebackend": [19, 22, 30], "ua_valuebackendtyp": 19, "ua_valuebackendtype_data_source_callback": 19, "ua_valuebackendtype_extern": [19, 30], "ua_valuebackendtype_intern": 19, "ua_valuebackendtype_non": 19, "ua_valuecallback": [19, 22, 29, 30], "ua_valuerank_ani": 5, "ua_valuerank_one_dimens": [5, 33, 37], "ua_valuerank_one_or_more_dimens": [5, 37], "ua_valuerank_scalar": [5, 33, 35, 37], "ua_valuerank_scalar_or_one_dimens": 5, "ua_valuerank_three_dimens": 5, "ua_valuerank_two_dimens": [5, 36], "ua_valuesourc": 19, "ua_valuesource_data": 19, "ua_valuesource_datasourc": 19, "ua_vari": [1, 2, 3, 4, 5, 19, 21, 22, 25, 26, 29, 30, 31, 33, 35, 36, 39, 40, 41], "ua_variableattribut": [2, 3, 5, 22, 28, 29, 30, 35, 36, 37, 39, 40, 41], "ua_variableattributes_default": [5, 28, 29, 30, 35, 36, 37, 41], "ua_variablenod": 19, "ua_variabletypeattribut": [2, 3, 5, 22, 37, 39, 40, 41], "ua_variabletypeattributes_default": [5, 37, 41], "ua_variabletypenod": 19, "ua_variant_clear": [25, 26], "ua_variant_copi": 26, "ua_variant_copyrang": 39, "ua_variant_data": 39, "ua_variant_data_nodelet": [19, 39], "ua_variant_hasarraytyp": 39, "ua_variant_hasscalartyp": [25, 39], "ua_variant_init": [25, 36], "ua_variant_isempti": 39, "ua_variant_isscalar": 39, "ua_variant_setarrai": [26, 36, 37, 39], "ua_variant_setarraycopi": [26, 33, 39], "ua_variant_setrang": 39, "ua_variant_setrangecopi": 39, "ua_variant_setscalar": [19, 26, 27, 28, 29, 30, 35, 36, 37, 39], "ua_variant_setscalarcopi": [30, 33, 39], "ua_variantstoragetyp": 39, "ua_versiontim": [39, 40], "ua_viewattribut": [2, 3, 5, 22, 39, 40, 41], "ua_viewattributes_default": [5, 41], "ua_viewdescript": [39, 40], "ua_viewnod": 19, "ua_writemask_accesslevel": 5, "ua_writemask_accesslevelex": 5, "ua_writemask_accessrestrict": 5, "ua_writemask_arrraydimens": 5, "ua_writemask_browsenam": 5, "ua_writemask_containsnoloop": 5, "ua_writemask_datatyp": 5, "ua_writemask_datatypedefinit": 5, "ua_writemask_descript": 5, "ua_writemask_displaynam": 5, "ua_writemask_eventnotifi": 5, "ua_writemask_execut": 5, "ua_writemask_histor": 5, "ua_writemask_inversenam": 5, "ua_writemask_isabstract": 5, "ua_writemask_minimumsamplinginterv": 5, "ua_writemask_nodeclass": 5, "ua_writemask_nodeid": 5, "ua_writemask_rolepermiss": 5, "ua_writemask_symmetr": 5, "ua_writemask_useraccesslevel": 5, "ua_writemask_userexecut": 5, "ua_writemask_userwritemask": 5, "ua_writemask_valueforvariabletyp": 5, "ua_writemask_valuerank": 5, "ua_writemask_writemask": 5, "ua_writerequest": [1, 3, 39, 40], "ua_writerespons": [1, 3, 39, 40], "ua_writergroup_lastpublishtimestamp": 21, "ua_writergroupconfig": [21, 27], "ua_writergroupconfig_clear": 21, "ua_writergroupdatatyp": [21, 39, 40], "ua_writevalu": [22, 36, 39, 40], "ua_writevalue_init": 36, "ua_x509identitytoken": [39, 40], "ua_xmlel": 39, "ua_xvtyp": [39, 40], "uabinaryfiledatatyp": 24, "uadp": [27, 28], "uadpdatasetmessagecontentmask": 24, "uadpdatasetreadermessagedatatyp": 24, "uadpdatasetwritermessagedatatyp": 24, "uadpnetworkmessagecontentmask": 24, "uadpwritergroupmessagedatatyp": [24, 27], "uaexpert": [22, 29, 31, 32], "uamethod": 13, "uamodel": 13, "uanodeset": 13, "uaobjecttyp": 13, "uareferencetyp": 13, "uavari": 13, "uax": 13, "ubuntu": 24, "udp": [0, 6, 14, 21, 24, 27, 28], "udpmc": 28, "uint16": [17, 21, 22, 24, 27, 28], "uint16_t": 39, "uint32": [3, 6, 13, 17, 21, 24, 28], "uint32_t": 39, "uint64": [21, 24], "uint64_t": 39, "uint8_t": 39, "uintptr_t": [17, 19, 39], "un": 23, "unacknowledgedmessagecount": [39, 40], "unassign": 22, "unauthorizedrequestcount": [39, 40], "unavail": [22, 23], "unbound": [5, 22, 41], "uncertain": [23, 39], "unchang": [2, 5, 41], "uncommon": 22, "undefin": [5, 6, 17, 39, 41], "under": [1, 6, 12, 13, 21, 22, 34], "underli": [5, 6, 15, 19, 21, 23, 30, 35, 41], "understand": [6, 13, 29], "understood": 6, "unencrypt": [6, 20], "unexpect": 23, "unexpos": 29, "unfinish": 22, "unicod": 39, "unifi": [17, 24, 32], "unintend": [5, 41], "union": [14, 21, 22, 24, 39], "uniqu": [1, 6, 17, 21, 22, 23, 26, 31, 39], "unit": [0, 23], "unitid": [39, 40], "univers": 13, "unix": [0, 22, 39], "unixd": 39, "unknown": [17, 23, 27, 28, 39], "unlik": 6, "unlimit": [1, 4, 22], "unpack": 3, "unquotedkei": 39, "unrecogn": 23, "unrecover": [1, 17], "unregist": [6, 22], "unregisternod": 6, "unregisternodescount": [39, 40], "unregisternodesrequest": 24, "unregisternodesrespons": 24, "unsecur": 6, "unsign": 13, "unsignedrationalnumb": 24, "unstabl": 0, "unsupport": [6, 19], "until": [1, 6, 17, 19, 22], "untouch": [5, 39, 41], "unus": [19, 22, 39], "unusu": 39, "up": [0, 1, 5, 6, 13, 17, 18, 19, 22, 24, 25, 26, 28, 30, 32, 35, 38, 39, 41], "updat": [0, 1, 6, 13, 15, 19, 20, 21, 23, 24, 28, 29, 38], "updatecertificateandprivatekei": 20, "updatecurrenttim": 30, "updatedatacap": 22, "updatedatadetail": 24, "updateeventcap": 22, "updateeventdetail": 24, "updatemonitoringinterv": 21, "updatestructuredatadetail": 24, "updatetyp": [39, 40], "updatevalu": [39, 40], "updatevaluess": [39, 40], "upon": [0, 1, 12, 19, 22, 29, 30, 39], "upper": [17, 23], "upsert": [5, 41], "uri": [1, 2, 13, 20, 22, 23, 27, 28, 39], "uristr": 24, "urisvers": [39, 40], "url": [1, 22, 24, 27, 28, 39, 40], "us": [0, 1, 2, 3, 4, 5, 6, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 36, 37, 38, 39, 41], "usabl": [1, 12, 39], "usag": [1, 13, 19, 21, 22, 27, 28, 29], "usebinaryencod": [39, 40], "user": [0, 1, 4, 5, 6, 13, 15, 17, 19, 21, 22, 23, 29, 32, 34, 39], "useraccesslevel": [3, 6, 13, 22, 39, 40], "userconfigur": [39, 40], "userconfigurationmask": 24, "userdata": [1, 3, 4], "userevers": 39, "userexecut": [3, 6, 22, 31, 33, 39, 40], "useridentitytoken": [1, 15, 22, 24], "useridentitytokenss": [39, 40], "userland": 22, "usermanagementdatatyp": 24, "usernam": [1, 6, 17, 22, 39, 40], "usernameidentitytoken": 24, "userrolepermiss": 6, "userspecificcallback": 29, "usertokenpolici": [1, 15, 22, 24], "usertokenpoliciess": 15, "usertokensignatur": [39, 40], "usertokentyp": 24, "userwrit": 19, "userwritemask": [3, 6, 22, 39, 40], "useservercapabilitiesdefault": [39, 40], "usesimplebound": [39, 40], "useslopedextrapol": [39, 40], "usual": [0, 1, 6, 22, 29, 39], "utc": 39, "utctim": 24, "util": [0, 24], "v": [0, 5, 13, 16, 22, 26, 39, 41], "v0": 12, "v1": 12, "v2": [12, 26], "v3": 26, "v6": 17, "va_end": 18, "va_list": 18, "va_start": 18, "valid": [5, 6, 12, 13, 15, 17, 21, 23, 39, 41], "validbit": [39, 40], "valu": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 20, 21, 22, 23, 24, 25, 26, 28, 29, 34, 35, 36, 37, 38, 39, 40], "valuebackend": [19, 22, 30], "valuerank": [3, 13, 19, 22, 24, 28, 33, 35, 36, 37, 39, 40, 41], "valuesourc": 19, "valuess": [39, 40], "valuetyp": 2, "vararg": 18, "variabl": [0, 5, 6, 12, 13, 15, 19, 21, 22, 23, 24, 25, 27, 28, 29, 33, 34, 35, 38, 39, 41], "variable_1": 29, "variable_2": 29, "variable_3": 29, "variableattribut": [19, 22, 24], "variablefieldnam": 22, "variablenod": [14, 22, 24, 33, 36], "variablepropertynam": 22, "variables_bas": 26, "variables_nodeid": 26, "variables_vari": 26, "variablestoadd": 21, "variablestoadds": 21, "variabletyp": [5, 6, 19, 22], "variabletypeattribut": 24, "variabletypenod": [14, 24, 37], "variabletypenodeid": [29, 30], "variant": [1, 3, 6, 19, 21, 22, 24, 25, 33, 38], "varieti": 6, "vattr": [28, 37], "vector": 20, "vendor": 22, "verb": [39, 40], "verbos": 13, "veri": [12, 31, 32], "verif": 1, "verifi": [6, 13, 16, 20, 22, 23, 33], "verifycertif": 16, "verifyrequesttimestamp": 22, "version": [0, 1, 2, 5, 6, 13, 22, 23], "versiontim": 24, "via": [0, 1, 6, 12, 17, 19, 20, 21, 22, 32, 34, 39], "vid": [5, 17, 41], "view": [1, 23, 24, 39, 40], "viewattribut": 24, "viewdescript": 24, "viewid": [39, 40], "viewnod": [14, 24], "viewvers": [39, 40], "violat": 23, "visibl": [0, 6, 19], "visitor": 19, "visitorctx": 19, "visual": [0, 32], "visualis": 35, "visualstudio": 0, "vlan": [5, 17, 41], "void": [1, 2, 3, 4, 5, 13, 15, 16, 17, 18, 19, 20, 21, 22, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "volatil": [17, 22], "volum": 23, "vtattr": 37, "w3": 13, "wa": [1, 5, 6, 13, 16, 19, 20, 21, 22, 23, 30, 33, 35, 39, 41], "wai": [2, 5, 13, 17, 22, 27, 28, 29, 30, 31, 35, 39, 41], "wait": [1, 4, 17, 22, 23], "waitintern": 22, "wallclock": 17, "want": [1, 6, 19, 22, 27, 31, 34, 35], "warm": 22, "warmli": 13, "warn": [0, 19, 21, 22], "we": [0, 1, 3, 5, 6, 12, 13, 22, 27, 29, 30, 31, 32, 33, 35, 36, 37, 39, 41], "websit": 12, "weihenstephan": 13, "welcom": [12, 13], "well": [0, 1, 5, 6, 12, 13, 17, 19, 34], "were": [19, 23, 39], "weren": 13, "wg": 27, "wgcontext": 20, "wgid": 21, "what": [13, 20, 21, 22], "whatev": 23, "wheel": [5, 41], "when": [1, 4, 6, 12, 13, 15, 17, 19, 21, 22, 23, 29, 30, 33, 35, 37, 39], "whenev": 22, "where": [1, 5, 6, 7, 8, 9, 10, 11, 13, 17, 19, 21, 22, 35, 39, 41], "wherea": 1, "whereclaus": [7, 8, 9, 10, 11, 39, 40], "whereclauseresult": [39, 40], "whether": [1, 2, 5, 6, 17, 19, 22, 31, 39, 41], "which": [0, 1, 6, 13, 17, 19, 20, 21, 22, 23, 25, 27, 28, 29, 31, 33, 34, 39], "while": [1, 3, 6, 13, 19, 21, 22, 23], "whitespac": [5, 41], "who": 39, "whose": [6, 13], "why": 22, "wide": [0, 6], "wild": 22, "wildcard": [5, 6, 41], "win32": [17, 22], "window": [6, 17, 22, 24], "winsock": [25, 32], "wireshark": [6, 27], "wish": 19, "within": [1, 6, 13, 17, 18, 21, 22, 23, 27, 28, 39], "without": [0, 1, 6, 17, 19, 21, 22, 23, 39], "won": [21, 29], "work": [0, 1, 5, 12, 13, 19, 20, 22, 24, 32, 36, 38, 39, 41], "workaround": 5, "worker": [0, 22], "world": [6, 24, 38, 39], "worri": 32, "would": [13, 22, 23, 30, 31], "wr": 3, "wrap": [1, 39], "wrapper": [1, 3, 25], "writabl": 36, "write": [1, 6, 13, 19, 20, 21, 23, 24, 29, 30, 35, 36, 37], "writecallback": 3, "writecount": [39, 40], "writecurrenttim": 30, "writeindexrang": [39, 40], "writemask": [3, 6, 19, 22, 39, 40], "writer": 21, "writerequest": 24, "writerespons": 24, "writeresult": 22, "writergroup": [20, 24, 27, 39, 40], "writergroupconfig": [21, 27], "writergroupdatatyp": 24, "writergroupid": [21, 27, 28, 39, 40], "writergroupmessag": 27, "writergroupss": [39, 40], "writevalu": [22, 24], "writevari": [36, 37], "writewrongvari": 36, "written": [6, 12, 19, 20, 22, 23, 37], "wrong": 16, "wss": 22, "wv": 36, "www": [0, 13], "x": [13, 19, 22, 24, 39, 40], "x509": [1, 6], "x509identitytoken": 24, "xcode": 0, "xml": [0, 12, 24], "xmlelement": 24, "xmlencodingid": 39, "xmln": 13, "xmlschema": 13, "xq": 13, "xsd": 13, "xsi": 13, "xvtype": 24, "xxx": 39, "y": [39, 40], "year": [25, 39], "yet": [1, 5, 13, 22, 23], "you": [0, 1, 2, 6, 12, 13, 16, 19, 21, 22, 25, 27, 31, 32, 39], "your": [0, 13, 32], "yourorganis": 13, "yourself": 22, "z": [39, 40], "zero": [0, 1, 5, 6, 13, 17, 19, 20, 21, 22, 26, 36, 37, 39, 41], "zipfil": 0, "zs8w1aqi71w8p": 13}, "titles": ["Building open62541", "Client", "Highlevel Client Functionality", "Async Services", "Subscriptions", "Common Definitions", "Core Concepts of OPC UA", "Case 0", "Case 1", "Case 2", "Case 3", "Case 4", "Introduction", "XML Nodeset Compiler", "Plugin API", "Access Control Plugin API", "<no title>", "Event Loop Subsystem", "Logging Plugin API", "Node Store Plugin API", "SecurityPolicy", "PubSub", "Server", "StatusCodes", "open62541 Documentation", "Building a Simple Client", "Working with Data Types", "Working with Publish/Subscribe", "Subscribing Fields", "Using Alarms and Conditions Server", "Connecting a Variable with a Physical Process", "Generating events", "Building a Simple Server", "Adding Methods to Objects", "Observing Attributes with Local MonitoredItems", "Working with Objects and Object Types", "Adding Variables to a Server", "Working with Variable Types", "Tutorials", "Data Types", "NamingRuleType", "Range Definition"], "titleterms": {"": 22, "0": 7, "1": 8, "10": 22, "2": 9, "3": 10, "4": 11, "And": [5, 41], "access": [2, 5, 15, 22], "accesslevelextyp": [39, 40], "accessleveltyp": [39, 40], "accessrestrictiontyp": [39, 40], "activatesessionrequest": [39, 40], "activatesessionrespons": [39, 40], "ad": [33, 36], "addit": 22, "additionalparameterstyp": [39, 40], "addnodesitem": [39, 40], "addnodesrequest": [39, 40], "addnodesrespons": [39, 40], "addnodesresult": [39, 40], "addreferencesitem": [39, 40], "addreferencesrequest": [39, 40], "addreferencesrespons": [39, 40], "advanc": 1, "aggregateconfigur": [39, 40], "aggregatefilt": [39, 40], "aggregatefilterresult": [39, 40], "alarm": [22, 29], "aliasnamedatatyp": [39, 40], "an": 31, "annot": [39, 40], "anonymousidentitytoken": [39, 40], "api": [14, 15, 18, 19], "applicationdescript": [39, 40], "applicationinstancecertif": [39, 40], "applicationtyp": [39, 40], "arch": 0, "architectur": 12, "argument": [39, 40], "arrai": [6, 33, 39], "artefact": 0, "async": [3, 22], "asynchron": [1, 3], "attrbiut": 1, "attribut": [2, 3, 5, 6, 19, 22, 34, 41], "attributeoperand": [39, 40], "attributewritemask": [39, 40], "audiodatatyp": [39, 40], "automat": 13, "axisinform": [39, 40], "axisscaleenumer": [39, 40], "base": 19, "basic": 26, "binari": [0, 5, 39, 41], "bitfield": 19, "bitfieldmaskdatatyp": [39, 40], "boolean": 39, "brokerconnectiontransportdatatyp": [39, 40], "brokerdatasetreadertransportdatatyp": [39, 40], "brokerdatasetwritertransportdatatyp": [39, 40], "brokertransportqualityofservic": [39, 40], "brokerwritergrouptransportdatatyp": [39, 40], "brows": 22, "browsedescript": [39, 40], "browsedirect": [39, 40], "browsenextrequest": [39, 40], "browsenextrespons": [39, 40], "browsepath": [39, 40], "browsepathresult": [39, 40], "browsepathtarget": [39, 40], "browserequest": [39, 40], "browserespons": [39, 40], "browseresult": [39, 40], "browseresultmask": [39, 40], "build": [0, 25, 32], "buildinfo": [39, 40], "builtin": 39, "byte": 39, "bytestr": 39, "call": [2, 3, 31], "callback": [1, 19, 21, 22, 30], "callmethodrequest": [39, 40], "callmethodresult": [39, 40], "callrequest": [39, 40], "callrespons": [39, 40], "cancelrequest": [39, 40], "cancelrespons": [39, 40], "case": [7, 8, 9, 10, 11], "certif": 22, "chang": 29, "channelsecuritytoken": [39, 40], "client": [1, 2, 25], "closesecurechannelrequest": [39, 40], "closesecurechannelrespons": [39, 40], "closesessionrequest": [39, 40], "closesessionrespons": [39, 40], "cmake": 0, "combin": 13, "common": 5, "companion": 13, "compil": 13, "complex": [5, 41], "complexnumbertyp": [39, 40], "concept": 6, "condit": [22, 29], "config": [5, 41], "configur": [1, 22, 32], "configurationversiondatatyp": [39, 40], "connect": [1, 5, 17, 21, 22, 30, 41], "constructor": 19, "contain": 0, "contentfilt": [39, 40], "contentfilterel": [39, 40], "contentfilterelementresult": [39, 40], "contentfilterresult": [39, 40], "context": 19, "continuationpoint": [39, 40], "contribut": 12, "control": 15, "conveni": [5, 41], "core": 6, "counter": [5, 39, 40], "creat": [13, 22], "createmonitoreditemsrequest": [39, 40], "createmonitoreditemsrespons": [39, 40], "createsessionrequest": [39, 40], "createsessionrespons": [39, 40], "createsubscriptionrequest": [39, 40], "createsubscriptionrespons": [39, 40], "cryptographi": [5, 41], "currencyunittyp": [39, 40], "custom": [1, 21, 22], "data": [1, 6, 22, 26, 30, 39], "datachangefilt": [39, 40], "datachangenotif": [39, 40], "datachangetrigg": [39, 40], "datagramconnectiontransport2datatyp": [39, 40], "datagramconnectiontransportdatatyp": [39, 40], "datagramdatasetreadertransportdatatyp": [39, 40], "datagramwritergrouptransport2datatyp": [39, 40], "datagramwritergrouptransportdatatyp": [39, 40], "datasetfield": 21, "datasetfieldcontentmask": [39, 40], "datasetfieldflag": [39, 40], "datasetmetadatatyp": [39, 40], "datasetorderingtyp": [39, 40], "datasetread": 21, "datasetreaderdatatyp": [39, 40], "datasetwrit": 21, "datasetwriterdatatyp": [39, 40], "datatypeattribut": [39, 40], "datatypedescript": [39, 40], "datatypenod": [6, 19], "datatypeschemahead": [39, 40], "datavalu": 39, "datestr": [39, 40], "datetim": 39, "deadbandtyp": [39, 40], "debian": 0, "debug": 0, "decimaldatatyp": [39, 40], "decimalstr": [39, 40], "declar": 5, "decod": 39, "default": [5, 41], "definit": [5, 39, 41], "delet": 22, "deleteattimedetail": [39, 40], "deleteeventdetail": [39, 40], "deletemonitoreditemsrequest": [39, 40], "deletemonitoreditemsrespons": [39, 40], "deletenodesitem": [39, 40], "deletenodesrequest": [39, 40], "deletenodesrespons": [39, 40], "deleterawmodifieddetail": [39, 40], "deletereferencesitem": [39, 40], "deletereferencesrequest": [39, 40], "deletereferencesrespons": [39, 40], "deletesubscriptionsrequest": [39, 40], "deletesubscriptionsrespons": [39, 40], "der": 22, "descript": 22, "destructor": 19, "detail": 0, "diagnosticinfo": 39, "diagnosticslevel": [39, 40], "differ": 6, "dimens": 6, "discoveri": [1, 6, 22], "docker": 0, "document": 24, "doubl": 39, "doublecomplexnumbertyp": [39, 40], "duplex": [39, 40], "durat": [39, 40], "durationstr": [39, 40], "eccencryptedsecret": [39, 40], "elementoperand": [39, 40], "emit": 31, "en": 39, "encod": [22, 39], "encrypt": 22, "endpoint": [5, 41], "endpointconfigur": [39, 40], "endpointdescript": [39, 40], "endpointtyp": [39, 40], "endpointurllistdatatyp": [39, 40], "enumdefinit": [39, 40], "enumdescript": [39, 40], "enumer": [39, 40], "enumfield": [39, 40], "enumvaluetyp": [39, 40], "ephemeralkeytyp": [39, 40], "escap": [5, 41], "ethernet": 17, "euinform": [39, 40], "event": [17, 22, 29, 31], "eventfieldlist": [39, 40], "eventfilt": [39, 40], "eventfilterresult": [39, 40], "eventloop": 22, "eventlop": 17, "eventnotifi": 5, "eventnotificationlist": [39, 40], "eventnotifiertyp": [39, 40], "exampl": [0, 5, 33, 41], "exceptiondeviationformat": [39, 40], "expandednodeid": 39, "experiment": 22, "express": [5, 41], "extensionobject": 39, "featur": [0, 12], "field": [27, 28], "fieldmetadata": [39, 40], "fieldtargetdatatyp": [39, 40], "filteroper": [39, 40], "findserversonnetworkrequest": [39, 40], "findserversonnetworkrespons": [39, 40], "findserversrequest": [39, 40], "findserversrespons": [39, 40], "float": 39, "forward": 5, "function": [1, 2, 22], "further": 25, "gener": [5, 31, 39, 41], "genericattribut": [39, 40], "genericattributevalu": [39, 40], "get": [12, 13], "getendpointsrequest": [39, 40], "getendpointsrespons": [39, 40], "global": 19, "guid": 39, "handl": [5, 22, 26, 39], "hello": 33, "help": 12, "helper": [5, 41], "hierarchi": 35, "highlevel": 2, "histor": [2, 22], "historydata": [39, 40], "historyev": [39, 40], "historyeventfieldlist": [39, 40], "historymodifieddata": [39, 40], "historyreadrequest": [39, 40], "historyreadrespons": [39, 40], "historyreadresult": [39, 40], "historyreadvalueid": [39, 40], "historyupdatedetail": [39, 40], "historyupdaterequest": [39, 40], "historyupdaterespons": [39, 40], "historyupdateresult": [39, 40], "historyupdatetyp": [39, 40], "id": 5, "identitycriteriatyp": [39, 40], "identitymappingruletyp": [39, 40], "idtyp": [39, 40], "imagebmp": [39, 40], "imagegif": [39, 40], "imagejpg": [39, 40], "imagepng": [39, 40], "implement": [17, 21], "increas": 33, "index": [39, 40], "inform": [6, 21, 22, 35], "insid": 0, "instanc": 13, "instanti": 35, "int16": 39, "int32": 39, "int64": 39, "integerid": [39, 40], "interact": 22, "interfaceadminstatu": [39, 40], "interfaceoperstatu": [39, 40], "interrupt": 17, "introduct": 12, "issu": 13, "issuedidentitytoken": [39, 40], "json": 39, "jsondatasetmessagecontentmask": [39, 40], "jsondatasetreadermessagedatatyp": [39, 40], "jsondatasetwritermessagedatatyp": [39, 40], "jsonnetworkmessagecontentmask": [39, 40], "jsonwritergroupmessagedatatyp": [39, 40], "kei": [5, 22, 41], "keyvaluepair": [39, 40], "level": 5, "librari": 0, "lifecycl": [1, 5, 19, 22, 32], "limit": 22, "literaloperand": [39, 40], "local": [22, 34], "localeid": [39, 40], "localizedtext": 39, "log": 18, "loop": 17, "macro": [5, 41], "main": 0, "manag": [2, 3, 17, 22], "manual": 30, "map": [5, 41], "mask": 5, "mdnsdiscoveryconfigur": [39, 40], "messag": 6, "messagesecuritymod": [39, 40], "method": [2, 3, 6, 22, 31, 33], "methodattribut": [39, 40], "methodnod": [6, 19], "minim": 0, "misc": 2, "model": [6, 21, 22, 35], "modelchangestructuredatatyp": [39, 40], "modelchangestructureverbmask": [39, 40], "modificationinfo": [39, 40], "modifymonitoreditemsrequest": [39, 40], "modifymonitoreditemsrespons": [39, 40], "modifysubscriptionrequest": [39, 40], "modifysubscriptionrespons": [39, 40], "monitoreditem": [4, 6, 22, 34], "monitoreditemcreaterequest": [39, 40], "monitoreditemcreateresult": [39, 40], "monitoreditemmodifyrequest": [39, 40], "monitoreditemmodifyresult": [39, 40], "monitoreditemnotif": [39, 40], "monitoringmod": [39, 40], "monitoringparamet": [39, 40], "mqtt": 17, "multipl": 13, "namingruletyp": [39, 40], "negotiationstatu": [39, 40], "network": 22, "networkaddressdatatyp": [39, 40], "networkaddressurldatatyp": [39, 40], "networkgroupdatatyp": [39, 40], "node": [2, 3, 5, 6, 19, 22, 41], "nodeattribut": [39, 40], "nodeattributesmask": [39, 40], "nodeclass": [6, 39, 40], "nodeid": [26, 39], "nodemanag": 6, "noderefer": [39, 40], "nodeset": 13, "nodesetinject": 13, "nodestor": 19, "nodetypedescript": [39, 40], "normalizedstr": [39, 40], "notificationmessag": [39, 40], "number": [5, 41], "numericrang": 39, "o": 0, "object": [13, 22, 33, 35], "objectattribut": [39, 40], "objectnod": [6, 19], "objecttypeattribut": [39, 40], "objecttypenod": [6, 19], "observ": 34, "opaquenumericrang": [39, 40], "opc": [6, 12], "open62541": [0, 12, 24], "openbsd": 0, "openfilemod": [39, 40], "opensecurechannelrequest": [39, 40], "opensecurechannelrespons": [39, 40], "oper": [3, 22], "option": 0, "optionset": [39, 40], "order": 5, "outstand": 13, "overridevaluehandl": [39, 40], "packag": 0, "paramet": [5, 41], "pars": [5, 41], "parser": [5, 41], "parsingresult": [39, 40], "password": 22, "passwordoptionsmask": [39, 40], "performupdatetyp": [39, 40], "permissiontyp": [39, 40], "physic": 30, "pkc": 22, "plugin": [14, 15, 18, 19, 32], "pointer": 19, "polici": 17, "portablenodeid": [39, 40], "portablequalifiednam": [39, 40], "posix": 17, "prebuilt": 0, "print": [5, 41], "prioritymappingentrytyp": [39, 40], "privat": 22, "process": 30, "programdiagnostic2datatyp": [39, 40], "programdiagnosticdatatyp": [39, 40], "protocol": 6, "publish": 27, "publisheddataitemsdatatyp": [39, 40], "publisheddataset": 21, "publisheddatasetcustomsourcedatatyp": [39, 40], "publisheddatasetdatatyp": [39, 40], "publishedeventsdatatyp": [39, 40], "publishedvariabledatatyp": [39, 40], "publishrequest": [39, 40], "publishrespons": [39, 40], "pubsub": [0, 20, 21, 22], "pubsubconfiguration2datatyp": [39, 40], "pubsubconfigurationdatatyp": [39, 40], "pubsubconfigurationrefdatatyp": [39, 40], "pubsubconfigurationrefmask": [39, 40], "pubsubconfigurationvaluedatatyp": [39, 40], "pubsubconnectiondatatyp": [39, 40], "pubsubdiagnosticscounterclassif": [39, 40], "pubsubgroupdatatyp": [39, 40], "pubsubkeypushtargetdatatyp": [39, 40], "pubsubst": [39, 40], "qualifiednam": 39, "queri": 6, "querydatadescript": [39, 40], "querydataset": [39, 40], "queryfirstrequest": [39, 40], "queryfirstrespons": [39, 40], "querynextrequest": [39, 40], "querynextrespons": [39, 40], "random": [5, 41], "rang": [5, 39, 40, 41], "rationalnumb": [39, 40], "read": [2, 3, 22], "readannotationdatadetail": [39, 40], "readattimedetail": [39, 40], "readergroup": 21, "readergroupdatatyp": [39, 40], "readeventdetail": [39, 40], "readprocesseddetail": [39, 40], "readrawmodifieddetail": [39, 40], "readrequest": [39, 40], "readrespons": [39, 40], "readvalueid": [39, 40], "receiveqosprioritydatatyp": [39, 40], "redundancysupport": [39, 40], "redundantserverdatatyp": [39, 40], "refer": 22, "referencedescript": [39, 40], "referencenod": [39, 40], "referencetyp": 19, "referencetypeattribut": [39, 40], "referencetypenod": [6, 19], "regist": 22, "registeredserv": [39, 40], "registernodesrequest": [39, 40], "registernodesrespons": [39, 40], "registerserver2request": [39, 40], "registerserver2respons": [39, 40], "registerserverrequest": [39, 40], "registerserverrespons": [39, 40], "relativepath": [5, 39, 40, 41], "relativepathel": [39, 40], "represent": [19, 21], "republishrequest": [39, 40], "republishrespons": [39, 40], "request": 22, "requesthead": [39, 40], "responsehead": [39, 40], "revers": 22, "rolepermissiontyp": [39, 40], "rsaencryptedsecret": [39, 40], "rule": [5, 22], "runtim": 22, "samplingintervaldiagnosticsdatatyp": [39, 40], "sbyte": 39, "sdk": 0, "secur": 22, "securechannel": 6, "securitygroup": 21, "securitygroupdatatyp": [39, 40], "securitypolici": 20, "securitytokenrequesttyp": [39, 40], "select": 0, "semanticchangestructuredatatyp": [39, 40], "semanticversionstr": [39, 40], "server": [1, 22, 29, 32, 36], "serverdiagnosticssummarydatatyp": [39, 40], "serveronnetwork": [39, 40], "serverst": [39, 40], "serverstatusdatatyp": [39, 40], "servic": [1, 3, 6], "servicecounterdatatyp": [39, 40], "servicefault": [39, 40], "session": 22, "sessionauthenticationtoken": [39, 40], "sessiondiagnosticsdatatyp": [39, 40], "sessionlessinvokerequesttyp": [39, 40], "sessionlessinvokeresponsetyp": [39, 40], "sessionsecuritydiagnosticsdatatyp": [39, 40], "set": [6, 31], "setmonitoringmoderequest": [39, 40], "setmonitoringmoderespons": [39, 40], "setpublishingmoderequest": [39, 40], "setpublishingmoderespons": [39, 40], "settriggeringrequest": [39, 40], "settriggeringrespons": [39, 40], "sign": 22, "signal": 17, "signaturedata": [39, 40], "signedsoftwarecertif": [39, 40], "simpl": [25, 32], "simpleattributeoperand": [5, 39, 40, 41], "simpletypedescript": [39, 40], "size": 0, "sourc": [17, 22, 30], "spec": 13, "standalonesubscribeddatasetdatatyp": [39, 40], "standalonesubscribeddatasetrefdatatyp": [39, 40], "start": 13, "state": [5, 29], "statist": [5, 22], "statuschangenotif": [39, 40], "statuscod": [23, 39], "statusresult": [39, 40], "store": 19, "string": [5, 39, 41], "structur": [6, 35], "structuredefinit": [39, 40], "structuredescript": [39, 40], "structurefield": [39, 40], "structuretyp": [39, 40], "subscrib": [27, 28], "subscribeddataset": 21, "subscribeddatasetmirrordatatyp": [39, 40], "subscript": [4, 6, 22], "subscriptionacknowledg": [39, 40], "subscriptiondiagnosticsdatatyp": [39, 40], "subsystem": 17, "targetvariablesdatatyp": [39, 40], "task": 25, "tcp": 17, "threedcartesiancoordin": [39, 40], "threedfram": [39, 40], "threedorient": [39, 40], "threedvector": [39, 40], "time": [1, 22], "timer": 17, "timestampstoreturn": [39, 40], "timestr": [39, 40], "timezonedatatyp": [39, 40], "transferresult": [39, 40], "transfersubscriptionsrequest": [39, 40], "transfersubscriptionsrespons": [39, 40], "translatebrowsepathstonodeidsrequest": [39, 40], "translatebrowsepathstonodeidsrespons": [39, 40], "transmitqosprioritydatatyp": [39, 40], "trigger": [29, 31], "trustlist": [5, 41], "trustlistdatatyp": [39, 40], "trustlistmask": [39, 40], "tsnfailurecod": [39, 40], "tsnlistenerstatu": [39, 40], "tsnstreamstat": [39, 40], "tsntalkerstatu": [39, 40], "tutori": 38, "type": [1, 5, 6, 19, 22, 26, 35, 37, 39, 41], "ua": 6, "uabinaryfiledatatyp": [39, 40], "uadpdatasetmessagecontentmask": [39, 40], "uadpdatasetreadermessagedatatyp": [39, 40], "uadpdatasetwritermessagedatatyp": [39, 40], "uadpnetworkmessagecontentmask": [39, 40], "uadpwritergroupmessagedatatyp": [39, 40], "ubuntu": 0, "udp": 17, "uint16": 39, "uint32": 39, "uint64": 39, "unifi": 12, "union": 19, "unregisternodesrequest": [39, 40], "unregisternodesrespons": [39, 40], "unsignedrationalnumb": [39, 40], "up": 31, "updat": [22, 30], "updatedatadetail": [39, 40], "updateeventdetail": [39, 40], "updatestructuredatadetail": [39, 40], "uristr": [39, 40], "url": [5, 41], "us": [29, 35], "userconfigurationmask": [39, 40], "useridentitytoken": [39, 40], "usermanagementdatatyp": [39, 40], "usernameidentitytoken": [39, 40], "usertokenpolici": [39, 40], "usertokentyp": [39, 40], "utctim": [39, 40], "util": [1, 22], "valu": [5, 19, 30, 33, 41], "valuerank": [5, 6], "variabl": [30, 36, 37], "variableattribut": [39, 40], "variablenod": [6, 19], "variabletypeattribut": [39, 40], "variabletypenod": [6, 19], "variant": [26, 39], "versiontim": [39, 40], "view": 6, "viewattribut": [39, 40], "viewdescript": [39, 40], "viewnod": [6, 19], "window": 0, "work": [26, 27, 35, 37], "world": 33, "write": [2, 3, 5, 22], "writerequest": [39, 40], "writerespons": [39, 40], "writergroup": 21, "writergroupdatatyp": [39, 40], "writevalu": [39, 40], "x": 0, "x509identitytoken": [39, 40], "xml": [13, 39], "xmlelement": 39, "xvtype": [39, 40]}})
\ No newline at end of file
+Search.setIndex({"alltitles": {"Access Control Plugin API": [[15, "access-control-plugin-api"]], "Access Level Masks": [[5, "access-level-masks"]], "AccessLevelExType": [[39, "accesslevelextype"], [40, "accesslevelextype"]], "AccessLevelType": [[39, "accessleveltype"], [40, "accessleveltype"]], "AccessRestrictionType": [[39, "accessrestrictiontype"], [40, "accessrestrictiontype"]], "ActivateSessionRequest": [[39, "activatesessionrequest"], [40, "activatesessionrequest"]], "ActivateSessionResponse": [[39, "activatesessionresponse"], [40, "activatesessionresponse"]], "AddNodesItem": [[39, "addnodesitem"], [40, "addnodesitem"]], "AddNodesRequest": [[39, "addnodesrequest"], [40, "addnodesrequest"]], "AddNodesResponse": [[39, "addnodesresponse"], [40, "addnodesresponse"]], "AddNodesResult": [[39, "addnodesresult"], [40, "addnodesresult"]], "AddReferencesItem": [[39, "addreferencesitem"], [40, "addreferencesitem"]], "AddReferencesRequest": [[39, "addreferencesrequest"], [40, "addreferencesrequest"]], "AddReferencesResponse": [[39, "addreferencesresponse"], [40, "addreferencesresponse"]], "Adding Methods to Objects": [[33, "adding-methods-to-objects"]], "Adding Variables to a Server": [[36, "adding-variables-to-a-server"]], "AdditionalParametersType": [[39, "additionalparameterstype"], [40, "additionalparameterstype"]], "Advanced Client Configuration": [[1, "advanced-client-configuration"]], "AggregateConfiguration": [[39, "aggregateconfiguration"], [40, "aggregateconfiguration"]], "AggregateFilter": [[39, "aggregatefilter"], [40, "aggregatefilter"]], "AggregateFilterResult": [[39, "aggregatefilterresult"], [40, "aggregatefilterresult"]], "Alarms & Conditions (Experimental)": [[22, "alarms-conditions-experimental"]], "AliasNameDataType": [[39, "aliasnamedatatype"], [40, "aliasnamedatatype"]], "And-Escaping of Strings": [[5, "and-escaping-of-strings"], [41, "and-escaping-of-strings"]], "Annotation": [[39, "annotation"], [40, "annotation"]], "AnonymousIdentityToken": [[39, "anonymousidentitytoken"], [40, "anonymousidentitytoken"]], "ApplicationDescription": [[39, "applicationdescription"], [40, "applicationdescription"]], "ApplicationInstanceCertificate": [[39, "applicationinstancecertificate"], [40, "applicationinstancecertificate"]], "ApplicationType": [[39, "applicationtype"], [40, "applicationtype"]], "Arch": [[0, "arch"]], "Argument": [[39, "argument"], [40, "argument"]], "Array Dimensions": [[6, "array-dimensions"]], "Array handling": [[39, "array-handling"]], "Async Operations": [[22, "async-operations"], [22, "id8"]], "Async Services": [[3, "async-services"]], "Asynchronous Operations": [[3, "asynchronous-operations"]], "Asynchronous Services": [[1, "asynchronous-services"]], "Attribute Id": [[5, "attribute-id"]], "Attribute Service Set": [[6, "attribute-service-set"]], "AttributeOperand": [[39, "attributeoperand"], [40, "attributeoperand"]], "AttributeWriteMask": [[39, "attributewritemask"], [40, "attributewritemask"]], "AudioDataType": [[39, "audiodatatype"], [40, "audiodatatype"]], "Automatic Nodesetinjection": [[13, "automatic-nodesetinjection"]], "AxisInformation": [[39, "axisinformation"], [40, "axisinformation"]], "AxisScaleEnumeration": [[39, "axisscaleenumeration"], [40, "axisscaleenumeration"]], "Base Node Attributes": [[19, "base-node-attributes"]], "Basic Data Handling": [[26, "basic-data-handling"]], "Binary Connection Config Parameters": [[5, "binary-connection-config-parameters"], [41, "binary-connection-config-parameters"]], "Binary Encoding/Decoding": [[39, "binary-encoding-decoding"]], "BitFieldMaskDataType": [[39, "bitfieldmaskdatatype"], [40, "bitfieldmaskdatatype"]], "Boolean": [[39, "boolean"]], "BrokerConnectionTransportDataType": [[39, "brokerconnectiontransportdatatype"], [40, "brokerconnectiontransportdatatype"]], "BrokerDataSetReaderTransportDataType": [[39, "brokerdatasetreadertransportdatatype"], [40, "brokerdatasetreadertransportdatatype"]], "BrokerDataSetWriterTransportDataType": [[39, "brokerdatasetwritertransportdatatype"], [40, "brokerdatasetwritertransportdatatype"]], "BrokerTransportQualityOfService": [[39, "brokertransportqualityofservice"], [40, "brokertransportqualityofservice"]], "BrokerWriterGroupTransportDataType": [[39, "brokerwritergrouptransportdatatype"], [40, "brokerwritergrouptransportdatatype"]], "BrowseDescription": [[39, "browsedescription"], [40, "browsedescription"]], "BrowseDirection": [[39, "browsedirection"], [40, "browsedirection"]], "BrowseNextRequest": [[39, "browsenextrequest"], [40, "browsenextrequest"]], "BrowseNextResponse": [[39, "browsenextresponse"], [40, "browsenextresponse"]], "BrowsePath": [[39, "browsepath"], [40, "browsepath"]], "BrowsePathResult": [[39, "browsepathresult"], [40, "browsepathresult"]], "BrowsePathTarget": [[39, "browsepathtarget"], [40, "browsepathtarget"]], "BrowseRequest": [[39, "browserequest"], [40, "browserequest"]], "BrowseResponse": [[39, "browseresponse"], [40, "browseresponse"]], "BrowseResult": [[39, "browseresult"], [40, "browseresult"]], "BrowseResultMask": [[39, "browseresultmask"], [40, "browseresultmask"]], "Browsing": [[22, "browsing"]], "Build Options": [[0, "build-options"]], "BuildInfo": [[39, "buildinfo"], [40, "buildinfo"]], "Building Debian Packages inside Docker Container with CMake on Ubuntu or Debian": [[0, "building-debian-packages-inside-docker-container-with-cmake-on-ubuntu-or-debian"]], "Building a Simple Client": [[25, "building-a-simple-client"]], "Building a Simple Server": [[32, "building-a-simple-server"]], "Building on OS X": [[0, "building-on-os-x"]], "Building on OpenBSD": [[0, "building-on-openbsd"]], "Building open62541": [[0, "building-open62541"]], "Building the Examples": [[0, "building-the-examples"]], "Building the Library": [[0, "building-the-library"]], "Building with CMake on Ubuntu or Debian": [[0, "building-with-cmake-on-ubuntu-or-debian"]], "Building with CMake on Windows": [[0, "building-with-cmake-on-windows"]], "Builtin Types": [[39, "builtin-types"]], "Byte": [[39, "byte"]], "ByteString": [[39, "bytestring"]], "CallMethodRequest": [[39, "callmethodrequest"], [40, "callmethodrequest"]], "CallMethodResult": [[39, "callmethodresult"], [40, "callmethodresult"]], "CallRequest": [[39, "callrequest"], [40, "callrequest"]], "CallResponse": [[39, "callresponse"], [40, "callresponse"]], "CancelRequest": [[39, "cancelrequest"], [40, "cancelrequest"]], "CancelResponse": [[39, "cancelresponse"], [40, "cancelresponse"]], "Case 0": [[7, "case-0"]], "Case 1": [[8, "case-1"]], "Case 2": [[9, "case-2"]], "Case 3": [[10, "case-3"]], "Case 4": [[11, "case-4"]], "Certificate Password Callback": [[22, "certificate-password-callback"]], "ChannelSecurityToken": [[39, "channelsecuritytoken"], [40, "channelsecuritytoken"]], "Client": [[1, "client"]], "Client Configuration": [[1, "client-configuration"]], "Client Lifecycle": [[1, "client-lifecycle"]], "Client Utility Functions": [[1, "client-utility-functions"]], "CloseSecureChannelRequest": [[39, "closesecurechannelrequest"], [40, "closesecurechannelrequest"]], "CloseSecureChannelResponse": [[39, "closesecurechannelresponse"], [40, "closesecurechannelresponse"]], "CloseSessionRequest": [[39, "closesessionrequest"], [40, "closesessionrequest"]], "CloseSessionResponse": [[39, "closesessionresponse"], [40, "closesessionresponse"]], "Combination of multiple nodesets": [[13, "combination-of-multiple-nodesets"]], "Common Definitions": [[5, "common-definitions"]], "ComplexNumberType": [[39, "complexnumbertype"], [40, "complexnumbertype"]], "ConfigurationVersionDataType": [[39, "configurationversiondatatype"], [40, "configurationversiondatatype"]], "Connect to a Server": [[1, "connect-to-a-server"]], "Connecting a Variable with a Physical Process": [[30, "connecting-a-variable-with-a-physical-process"]], "Connection Attrbiutes": [[1, "connection-attrbiutes"]], "Connection Manager": [[17, "connection-manager"]], "Connection State": [[5, "connection-state"]], "Connection configuration": [[1, "connection-configuration"]], "Connections": [[21, "connections"]], "ContentFilter": [[39, "contentfilter"], [40, "contentfilter"]], "ContentFilterElement": [[39, "contentfilterelement"], [40, "contentfilterelement"]], "ContentFilterElementResult": [[39, "contentfilterelementresult"], [40, "contentfilterelementresult"]], "ContentFilterResult": [[39, "contentfilterresult"], [40, "contentfilterresult"]], "ContinuationPoint": [[39, "continuationpoint"], [40, "continuationpoint"]], "Contributing": [[12, "contributing"]], "Convenience macros for complex types": [[5, "convenience-macros-for-complex-types"], [41, "convenience-macros-for-complex-types"]], "Core Concepts of OPC UA": [[6, "core-concepts-of-opc-ua"]], "Counter": [[39, "counter"], [40, "counter"]], "CreateMonitoredItemsRequest": [[39, "createmonitoreditemsrequest"], [40, "createmonitoreditemsrequest"]], "CreateMonitoredItemsResponse": [[39, "createmonitoreditemsresponse"], [40, "createmonitoreditemsresponse"]], "CreateSessionRequest": [[39, "createsessionrequest"], [40, "createsessionrequest"]], "CreateSessionResponse": [[39, "createsessionresponse"], [40, "createsessionresponse"]], "CreateSubscriptionRequest": [[39, "createsubscriptionrequest"], [40, "createsubscriptionrequest"]], "CreateSubscriptionResponse": [[39, "createsubscriptionresponse"], [40, "createsubscriptionresponse"]], "Creates a PKCS #10 DER encoded certificate request signed with the server\u2019s private key": [[22, "creates-a-pkcs-10-der-encoded-certificate-request-signed-with-the-server-s-private-key"]], "Creating object instances": [[13, "creating-object-instances"]], "Cryptography Helpers": [[5, "cryptography-helpers"], [41, "cryptography-helpers"]], "CurrencyUnitType": [[39, "currencyunittype"], [40, "currencyunittype"]], "Custom Callback Implementation": [[21, "custom-callback-implementation"]], "Custom Data Types": [[1, "custom-data-types"], [22, "custom-data-types"]], "Data Source Callback": [[22, "data-source-callback"]], "Data Type": [[6, "data-type"]], "Data Types": [[39, "data-types"]], "DataChangeFilter": [[39, "datachangefilter"], [40, "datachangefilter"]], "DataChangeNotification": [[39, "datachangenotification"], [40, "datachangenotification"]], "DataChangeTrigger": [[39, "datachangetrigger"], [40, "datachangetrigger"]], "DataSetFieldContentMask": [[39, "datasetfieldcontentmask"], [40, "datasetfieldcontentmask"]], "DataSetFieldFlags": [[39, "datasetfieldflags"], [40, "datasetfieldflags"]], "DataSetFields": [[21, "datasetfields"]], "DataSetMetaDataType": [[39, "datasetmetadatatype"], [40, "datasetmetadatatype"]], "DataSetOrderingType": [[39, "datasetorderingtype"], [40, "datasetorderingtype"]], "DataSetReader": [[21, "datasetreader"]], "DataSetReaderDataType": [[39, "datasetreaderdatatype"], [40, "datasetreaderdatatype"]], "DataSetWriter": [[21, "datasetwriter"]], "DataSetWriterDataType": [[39, "datasetwriterdatatype"], [40, "datasetwriterdatatype"]], "DataTypeAttributes": [[39, "datatypeattributes"], [40, "datatypeattributes"]], "DataTypeDescription": [[39, "datatypedescription"], [40, "datatypedescription"]], "DataTypeNode": [[6, "datatypenode"], [19, "datatypenode"]], "DataTypeSchemaHeader": [[39, "datatypeschemaheader"], [40, "datatypeschemaheader"]], "DataValue": [[39, "datavalue"]], "DatagramConnectionTransport2DataType": [[39, "datagramconnectiontransport2datatype"], [40, "datagramconnectiontransport2datatype"]], "DatagramConnectionTransportDataType": [[39, "datagramconnectiontransportdatatype"], [40, "datagramconnectiontransportdatatype"]], "DatagramDataSetReaderTransportDataType": [[39, "datagramdatasetreadertransportdatatype"], [40, "datagramdatasetreadertransportdatatype"]], "DatagramWriterGroupTransport2DataType": [[39, "datagramwritergrouptransport2datatype"], [40, "datagramwritergrouptransport2datatype"]], "DatagramWriterGroupTransportDataType": [[39, "datagramwritergrouptransportdatatype"], [40, "datagramwritergrouptransportdatatype"]], "DateString": [[39, "datestring"], [40, "datestring"]], "DateTime": [[39, "datetime"]], "DeadbandType": [[39, "deadbandtype"], [40, "deadbandtype"]], "Debian": [[0, "debian"]], "Debug Build Options": [[0, "debug-build-options"]], "DecimalDataType": [[39, "decimaldatatype"], [40, "decimaldatatype"]], "DecimalString": [[39, "decimalstring"], [40, "decimalstring"]], "Default Node Attributes": [[5, "default-node-attributes"], [41, "default-node-attributes"]], "DeleteAtTimeDetails": [[39, "deleteattimedetails"], [40, "deleteattimedetails"]], "DeleteEventDetails": [[39, "deleteeventdetails"], [40, "deleteeventdetails"]], "DeleteMonitoredItemsRequest": [[39, "deletemonitoreditemsrequest"], [40, "deletemonitoreditemsrequest"]], "DeleteMonitoredItemsResponse": [[39, "deletemonitoreditemsresponse"], [40, "deletemonitoreditemsresponse"]], "DeleteNodesItem": [[39, "deletenodesitem"], [40, "deletenodesitem"]], "DeleteNodesRequest": [[39, "deletenodesrequest"], [40, "deletenodesrequest"]], "DeleteNodesResponse": [[39, "deletenodesresponse"], [40, "deletenodesresponse"]], "DeleteRawModifiedDetails": [[39, "deleterawmodifieddetails"], [40, "deleterawmodifieddetails"]], "DeleteReferencesItem": [[39, "deletereferencesitem"], [40, "deletereferencesitem"]], "DeleteReferencesRequest": [[39, "deletereferencesrequest"], [40, "deletereferencesrequest"]], "DeleteReferencesResponse": [[39, "deletereferencesresponse"], [40, "deletereferencesresponse"]], "DeleteSubscriptionsRequest": [[39, "deletesubscriptionsrequest"], [40, "deletesubscriptionsrequest"]], "DeleteSubscriptionsResponse": [[39, "deletesubscriptionsresponse"], [40, "deletesubscriptionsresponse"]], "Detailed SDK Features": [[0, "detailed-sdk-features"]], "DiagnosticInfo": [[39, "diagnosticinfo"]], "DiagnosticsLevel": [[39, "diagnosticslevel"], [40, "diagnosticslevel"]], "Discovery": [[1, "discovery"], [22, "discovery"], [22, "id5"]], "Discovery Service Set": [[6, "discovery-service-set"]], "Double": [[39, "double"]], "DoubleComplexNumberType": [[39, "doublecomplexnumbertype"], [40, "doublecomplexnumbertype"]], "Duplex": [[39, "duplex"], [40, "duplex"]], "Duration": [[39, "duration"], [40, "duration"]], "DurationString": [[39, "durationstring"], [40, "durationstring"]], "EUInformation": [[39, "euinformation"], [40, "euinformation"]], "EccEncryptedSecret": [[39, "eccencryptedsecret"], [40, "eccencryptedsecret"]], "ElementOperand": [[39, "elementoperand"], [40, "elementoperand"]], "Emitting events by calling methods": [[31, "emitting-events-by-calling-methods"]], "Endpoint URL Parser": [[5, "endpoint-url-parser"], [41, "endpoint-url-parser"]], "EndpointConfiguration": [[39, "endpointconfiguration"], [40, "endpointconfiguration"]], "EndpointDescription": [[39, "endpointdescription"], [40, "endpointdescription"]], "EndpointType": [[39, "endpointtype"], [40, "endpointtype"]], "EndpointUrlListDataType": [[39, "endpointurllistdatatype"], [40, "endpointurllistdatatype"]], "EnumDefinition": [[39, "enumdefinition"], [40, "enumdefinition"]], "EnumDescription": [[39, "enumdescription"], [40, "enumdescription"]], "EnumField": [[39, "enumfield"], [40, "enumfield"]], "EnumValueType": [[39, "enumvaluetype"], [40, "enumvaluetype"]], "Enumeration": [[39, "enumeration"], [40, "enumeration"]], "EphemeralKeyType": [[39, "ephemeralkeytype"], [40, "ephemeralkeytype"]], "Ethernet Connection Manager": [[17, "ethernet-connection-manager"]], "Event Loop": [[17, "event-loop"]], "Event Loop Subsystem": [[17, "event-loop-subsystem"]], "Event Source": [[17, "event-source"]], "EventFieldList": [[39, "eventfieldlist"], [40, "eventfieldlist"]], "EventFilter": [[39, "eventfilter"], [40, "eventfilter"]], "EventFilterResult": [[39, "eventfilterresult"], [40, "eventfilterresult"]], "EventLoop": [[22, "eventloop"]], "EventNotificationList": [[39, "eventnotificationlist"], [40, "eventnotificationlist"]], "EventNotifier": [[5, "eventnotifier"]], "EventNotifierType": [[39, "eventnotifiertype"], [40, "eventnotifiertype"]], "Events": [[22, "events"]], "Example RelativePaths": [[5, "example-relativepaths"], [41, "example-relativepaths"]], "Example SimpleAttributeOperands": [[5, "example-simpleattributeoperands"], [41, "example-simpleattributeoperands"]], "Example: Hello World Method": [[33, "example-hello-world-method"]], "ExceptionDeviationFormat": [[39, "exceptiondeviationformat"], [40, "exceptiondeviationformat"]], "ExpandedNodeId": [[39, "expandednodeid"]], "ExtensionObject": [[39, "extensionobject"]], "FieldMetaData": [[39, "fieldmetadata"], [40, "fieldmetadata"]], "FieldTargetDataType": [[39, "fieldtargetdatatype"], [40, "fieldtargetdatatype"]], "FilterOperator": [[39, "filteroperator"], [40, "filteroperator"]], "FindServersOnNetworkRequest": [[39, "findserversonnetworkrequest"], [40, "findserversonnetworkrequest"]], "FindServersOnNetworkResponse": [[39, "findserversonnetworkresponse"], [40, "findserversonnetworkresponse"]], "FindServersRequest": [[39, "findserversrequest"], [40, "findserversrequest"]], "FindServersResponse": [[39, "findserversresponse"], [40, "findserversresponse"]], "Float": [[39, "float"]], "Forward Declarations": [[5, "forward-declarations"]], "Further tasks": [[25, "further-tasks"]], "Generated Data Type Definitions": [[39, "generated-data-type-definitions"]], "Generating events": [[31, "generating-events"]], "Generic Type Handling": [[39, "generic-type-handling"]], "GenericAttributeValue": [[39, "genericattributevalue"], [40, "genericattributevalue"]], "GenericAttributes": [[39, "genericattributes"], [40, "genericattributes"]], "GetEndpointsRequest": [[39, "getendpointsrequest"], [40, "getendpointsrequest"]], "GetEndpointsResponse": [[39, "getendpointsresponse"], [40, "getendpointsresponse"]], "Getting Help": [[12, "getting-help"]], "Getting started": [[13, "getting-started"]], "Global Node Lifecycle": [[19, "global-node-lifecycle"]], "Guid": [[39, "guid"]], "Highlevel Client Functionality": [[2, "highlevel-client-functionality"]], "Historical Access": [[2, "historical-access"], [22, "historical-access"]], "HistoryData": [[39, "historydata"], [40, "historydata"]], "HistoryEvent": [[39, "historyevent"], [40, "historyevent"]], "HistoryEventFieldList": [[39, "historyeventfieldlist"], [40, "historyeventfieldlist"]], "HistoryModifiedData": [[39, "historymodifieddata"], [40, "historymodifieddata"]], "HistoryReadRequest": [[39, "historyreadrequest"], [40, "historyreadrequest"]], "HistoryReadResponse": [[39, "historyreadresponse"], [40, "historyreadresponse"]], "HistoryReadResult": [[39, "historyreadresult"], [40, "historyreadresult"]], "HistoryReadValueId": [[39, "historyreadvalueid"], [40, "historyreadvalueid"]], "HistoryUpdateDetails": [[39, "historyupdatedetails"], [40, "historyupdatedetails"]], "HistoryUpdateRequest": [[39, "historyupdaterequest"], [40, "historyupdaterequest"]], "HistoryUpdateResponse": [[39, "historyupdateresponse"], [40, "historyupdateresponse"]], "HistoryUpdateResult": [[39, "historyupdateresult"], [40, "historyupdateresult"]], "HistoryUpdateType": [[39, "historyupdatetype"], [40, "historyupdatetype"]], "IdType": [[39, "idtype"], [40, "idtype"]], "IdentityCriteriaType": [[39, "identitycriteriatype"], [40, "identitycriteriatype"]], "IdentityMappingRuleType": [[39, "identitymappingruletype"], [40, "identitymappingruletype"]], "ImageBMP": [[39, "imagebmp"], [40, "imagebmp"]], "ImageGIF": [[39, "imagegif"], [40, "imagegif"]], "ImageJPG": [[39, "imagejpg"], [40, "imagejpg"]], "ImagePNG": [[39, "imagepng"], [40, "imagepng"]], "Increase Array Values Method": [[33, "increase-array-values-method"]], "Index": [[39, "index"], [40, "index"]], "Information Model Callbacks": [[22, "information-model-callbacks"]], "Information Modelling": [[6, "information-modelling"]], "Int16": [[39, "int16"]], "Int32": [[39, "int32"]], "Int64": [[39, "int64"]], "IntegerId": [[39, "integerid"], [40, "integerid"]], "Interacting with Objects": [[22, "interacting-with-objects"]], "InterfaceAdminStatus": [[39, "interfaceadminstatus"], [40, "interfaceadminstatus"]], "InterfaceOperStatus": [[39, "interfaceoperstatus"], [40, "interfaceoperstatus"]], "Interrupt Manager": [[17, "interrupt-manager"]], "Introduction": [[12, "introduction"]], "IssuedIdentityToken": [[39, "issuedidentitytoken"], [40, "issuedidentitytoken"]], "JSON En/Decoding": [[39, "json-en-decoding"]], "JsonDataSetMessageContentMask": [[39, "jsondatasetmessagecontentmask"], [40, "jsondatasetmessagecontentmask"]], "JsonDataSetReaderMessageDataType": [[39, "jsondatasetreadermessagedatatype"], [40, "jsondatasetreadermessagedatatype"]], "JsonDataSetWriterMessageDataType": [[39, "jsondatasetwritermessagedatatype"], [40, "jsondatasetwritermessagedatatype"]], "JsonNetworkMessageContentMask": [[39, "jsonnetworkmessagecontentmask"], [40, "jsonnetworkmessagecontentmask"]], "JsonWriterGroupMessageDataType": [[39, "jsonwritergroupmessagedatatype"], [40, "jsonwritergroupmessagedatatype"]], "Key Value Map": [[5, "key-value-map"], [41, "key-value-map"]], "KeyValuePair": [[39, "keyvaluepair"], [40, "keyvaluepair"]], "Lifecycle States": [[5, "lifecycle-states"]], "Limits": [[22, "limits"]], "LiteralOperand": [[39, "literaloperand"], [40, "literaloperand"]], "Local MonitoredItems": [[22, "local-monitoreditems"]], "LocaleId": [[39, "localeid"], [40, "localeid"]], "LocalizedText": [[39, "localizedtext"]], "Logging Plugin API": [[18, "logging-plugin-api"]], "MQTT Connection Manager": [[17, "mqtt-connection-manager"]], "Main Build Options": [[0, "main-build-options"]], "MdnsDiscoveryConfiguration": [[39, "mdnsdiscoveryconfiguration"], [40, "mdnsdiscoveryconfiguration"]], "MessageSecurityMode": [[39, "messagesecuritymode"], [40, "messagesecuritymode"]], "Method Callbacks": [[22, "method-callbacks"]], "Method Calling": [[2, "method-calling"], [3, "method-calling"]], "Method Service Set": [[6, "method-service-set"]], "MethodAttributes": [[39, "methodattributes"], [40, "methodattributes"]], "MethodNode": [[6, "methodnode"], [19, "methodnode"]], "Minimizing the binary size": [[0, "minimizing-the-binary-size"]], "Misc Highlevel Functionality": [[2, "misc-highlevel-functionality"]], "ModelChangeStructureDataType": [[39, "modelchangestructuredatatype"], [40, "modelchangestructuredatatype"]], "ModelChangeStructureVerbMask": [[39, "modelchangestructureverbmask"], [40, "modelchangestructureverbmask"]], "ModificationInfo": [[39, "modificationinfo"], [40, "modificationinfo"]], "ModifyMonitoredItemsRequest": [[39, "modifymonitoreditemsrequest"], [40, "modifymonitoreditemsrequest"]], "ModifyMonitoredItemsResponse": [[39, "modifymonitoreditemsresponse"], [40, "modifymonitoreditemsresponse"]], "ModifySubscriptionRequest": [[39, "modifysubscriptionrequest"], [40, "modifysubscriptionrequest"]], "ModifySubscriptionResponse": [[39, "modifysubscriptionresponse"], [40, "modifysubscriptionresponse"]], "MonitoredItem Service Set": [[6, "monitoreditem-service-set"]], "MonitoredItemCreateRequest": [[39, "monitoreditemcreaterequest"], [40, "monitoreditemcreaterequest"]], "MonitoredItemCreateResult": [[39, "monitoreditemcreateresult"], [40, "monitoreditemcreateresult"]], "MonitoredItemModifyRequest": [[39, "monitoreditemmodifyrequest"], [40, "monitoreditemmodifyrequest"]], "MonitoredItemModifyResult": [[39, "monitoreditemmodifyresult"], [40, "monitoreditemmodifyresult"]], "MonitoredItemNotification": [[39, "monitoreditemnotification"], [40, "monitoreditemnotification"]], "MonitoredItems": [[4, "monitoreditems"]], "MonitoringMode": [[39, "monitoringmode"], [40, "monitoringmode"]], "MonitoringParameters": [[39, "monitoringparameters"], [40, "monitoringparameters"]], "NamingRuleType": [[39, "namingruletype"], [40, "namingruletype"]], "NegotiationStatus": [[39, "negotiationstatus"], [40, "negotiationstatus"]], "NetworkAddressDataType": [[39, "networkaddressdatatype"], [40, "networkaddressdatatype"]], "NetworkAddressUrlDataType": [[39, "networkaddressurldatatype"], [40, "networkaddressurldatatype"]], "NetworkGroupDataType": [[39, "networkgroupdatatype"], [40, "networkgroupdatatype"]], "Networking": [[22, "networking"]], "Node Addition and Deletion": [[22, "node-addition-and-deletion"]], "Node Lifecycle: Constructors, Destructors and Node Contexts": [[19, "node-lifecycle-constructors-destructors-and-node-contexts"]], "Node Management": [[2, "node-management"], [3, "node-management"]], "Node Pointer": [[19, "node-pointer"]], "Node Store Plugin API": [[19, "node-store-plugin-api"]], "Node Type Lifecycle": [[19, "node-type-lifecycle"]], "Node Union": [[19, "node-union"]], "Node attributes for the different NodeClasses": [[6, "id11"]], "NodeAttributes": [[39, "nodeattributes"], [40, "nodeattributes"]], "NodeAttributesMask": [[39, "nodeattributesmask"], [40, "nodeattributesmask"]], "NodeClass": [[39, "nodeclass"], [40, "nodeclass"]], "NodeId": [[39, "nodeid"]], "NodeIds": [[26, "nodeids"]], "NodeManagement Service Set": [[6, "nodemanagement-service-set"]], "NodeReference": [[39, "nodereference"], [40, "nodereference"]], "NodeTypeDescription": [[39, "nodetypedescription"], [40, "nodetypedescription"]], "Nodes and Node Lifecycle": [[22, "nodes-and-node-lifecycle"]], "Nodestore": [[19, "nodestore"]], "NormalizedString": [[39, "normalizedstring"], [40, "normalizedstring"]], "NotificationMessage": [[39, "notificationmessage"], [40, "notificationmessage"]], "NumericRange": [[39, "numericrange"]], "OPC Unified Architecture": [[12, "opc-unified-architecture"]], "Object types, type hierarchies and instantiation": [[35, "object-types-type-hierarchies-and-instantiation"]], "ObjectAttributes": [[39, "objectattributes"], [40, "objectattributes"]], "ObjectNode": [[6, "objectnode"], [19, "objectnode"]], "ObjectTypeAttributes": [[39, "objecttypeattributes"], [40, "objecttypeattributes"]], "ObjectTypeNode": [[6, "objecttypenode"], [19, "objecttypenode"]], "Observing Attributes with Local MonitoredItems": [[34, "observing-attributes-with-local-monitoreditems"]], "OpaqueNumericRange": [[39, "opaquenumericrange"], [40, "opaquenumericrange"]], "OpenBSD": [[0, "openbsd"]], "OpenFileMode": [[39, "openfilemode"], [40, "openfilemode"]], "OpenSecureChannelRequest": [[39, "opensecurechannelrequest"], [40, "opensecurechannelrequest"]], "OpenSecureChannelResponse": [[39, "opensecurechannelresponse"], [40, "opensecurechannelresponse"]], "Operating a Discovery Server": [[22, "operating-a-discovery-server"]], "OptionSet": [[39, "optionset"], [40, "optionset"]], "Order": [[5, "order"]], "Outstanding Companion Spec Issues": [[13, "outstanding-companion-spec-issues"]], "OverrideValueHandling": [[39, "overridevaluehandling"], [40, "overridevaluehandling"]], "POSIX EventLop Implementation": [[17, "posix-eventlop-implementation"]], "ParsingResult": [[39, "parsingresult"], [40, "parsingresult"]], "PasswordOptionsMask": [[39, "passwordoptionsmask"], [40, "passwordoptionsmask"]], "PerformUpdateType": [[39, "performupdatetype"], [40, "performupdatetype"]], "PermissionType": [[39, "permissiontype"], [40, "permissiontype"]], "Plugin API": [[14, "plugin-api"]], "PortableNodeId": [[39, "portablenodeid"], [40, "portablenodeid"]], "PortableQualifiedName": [[39, "portablequalifiedname"], [40, "portablequalifiedname"]], "Prebuilt packages": [[0, "prebuilt-packages"]], "Print and Parse RelativePath Expressions": [[5, "print-and-parse-relativepath-expressions"], [41, "print-and-parse-relativepath-expressions"]], "Print and Parse SimpleAttributeOperand Expression": [[5, "print-and-parse-simpleattributeoperand-expression"], [41, "print-and-parse-simpleattributeoperand-expression"]], "PriorityMappingEntryType": [[39, "prioritymappingentrytype"], [40, "prioritymappingentrytype"]], "ProgramDiagnostic2DataType": [[39, "programdiagnostic2datatype"], [40, "programdiagnostic2datatype"]], "ProgramDiagnosticDataType": [[39, "programdiagnosticdatatype"], [40, "programdiagnosticdatatype"]], "Protocol": [[6, "protocol"]], "PubSub": [[21, "pubsub"], [22, "pubsub"]], "PubSub Build Options": [[0, "pubsub-build-options"]], "PubSub Information Model Representation": [[21, "pubsub-information-model-representation"]], "PubSub SecurityPolicy": [[20, "pubsub-securitypolicy"]], "PubSubConfiguration2DataType": [[39, "pubsubconfiguration2datatype"], [40, "pubsubconfiguration2datatype"]], "PubSubConfigurationDataType": [[39, "pubsubconfigurationdatatype"], [40, "pubsubconfigurationdatatype"]], "PubSubConfigurationRefDataType": [[39, "pubsubconfigurationrefdatatype"], [40, "pubsubconfigurationrefdatatype"]], "PubSubConfigurationRefMask": [[39, "pubsubconfigurationrefmask"], [40, "pubsubconfigurationrefmask"]], "PubSubConfigurationValueDataType": [[39, "pubsubconfigurationvaluedatatype"], [40, "pubsubconfigurationvaluedatatype"]], "PubSubConnectionDataType": [[39, "pubsubconnectiondatatype"], [40, "pubsubconnectiondatatype"]], "PubSubDiagnosticsCounterClassification": [[39, "pubsubdiagnosticscounterclassification"], [40, "pubsubdiagnosticscounterclassification"]], "PubSubGroupDataType": [[39, "pubsubgroupdatatype"], [40, "pubsubgroupdatatype"]], "PubSubKeyPushTargetDataType": [[39, "pubsubkeypushtargetdatatype"], [40, "pubsubkeypushtargetdatatype"]], "PubSubState": [[39, "pubsubstate"], [40, "pubsubstate"]], "PublishRequest": [[39, "publishrequest"], [40, "publishrequest"]], "PublishResponse": [[39, "publishresponse"], [40, "publishresponse"]], "PublishedDataItemsDataType": [[39, "publisheddataitemsdatatype"], [40, "publisheddataitemsdatatype"]], "PublishedDataSetCustomSourceDataType": [[39, "publisheddatasetcustomsourcedatatype"], [40, "publisheddatasetcustomsourcedatatype"]], "PublishedDataSetDataType": [[39, "publisheddatasetdatatype"], [40, "publisheddatasetdatatype"]], "PublishedDataSets": [[21, "publisheddatasets"]], "PublishedEventsDataType": [[39, "publishedeventsdatatype"], [40, "publishedeventsdatatype"]], "PublishedVariableDataType": [[39, "publishedvariabledatatype"], [40, "publishedvariabledatatype"]], "Publishing Fields": [[27, "publishing-fields"]], "QualifiedName": [[39, "qualifiedname"]], "Query Service Set": [[6, "query-service-set"]], "QueryDataDescription": [[39, "querydatadescription"], [40, "querydatadescription"]], "QueryDataSet": [[39, "querydataset"], [40, "querydataset"]], "QueryFirstRequest": [[39, "queryfirstrequest"], [40, "queryfirstrequest"]], "QueryFirstResponse": [[39, "queryfirstresponse"], [40, "queryfirstresponse"]], "QueryNextRequest": [[39, "querynextrequest"], [40, "querynextrequest"]], "QueryNextResponse": [[39, "querynextresponse"], [40, "querynextresponse"]], "Random Number Generator": [[5, "random-number-generator"], [41, "random-number-generator"]], "Range": [[39, "range"], [40, "range"]], "Range Definition": [[5, "range-definition"], [41, "range-definition"]], "RationalNumber": [[39, "rationalnumber"], [40, "rationalnumber"]], "Read Attribute": [[3, "read-attribute"]], "Read Attributes": [[2, "read-attributes"]], "ReadAnnotationDataDetails": [[39, "readannotationdatadetails"], [40, "readannotationdatadetails"]], "ReadAtTimeDetails": [[39, "readattimedetails"], [40, "readattimedetails"]], "ReadEventDetails": [[39, "readeventdetails"], [40, "readeventdetails"]], "ReadProcessedDetails": [[39, "readprocesseddetails"], [40, "readprocesseddetails"]], "ReadRawModifiedDetails": [[39, "readrawmodifieddetails"], [40, "readrawmodifieddetails"]], "ReadRequest": [[39, "readrequest"], [40, "readrequest"]], "ReadResponse": [[39, "readresponse"], [40, "readresponse"]], "ReadValueId": [[39, "readvalueid"], [40, "readvalueid"]], "ReaderGroup": [[21, "readergroup"]], "ReaderGroupDataType": [[39, "readergroupdatatype"], [40, "readergroupdatatype"]], "Reading and Writing Node Attributes": [[22, "reading-and-writing-node-attributes"]], "ReceiveQosPriorityDataType": [[39, "receiveqosprioritydatatype"], [40, "receiveqosprioritydatatype"]], "RedundancySupport": [[39, "redundancysupport"], [40, "redundancysupport"]], "RedundantServerDataType": [[39, "redundantserverdatatype"], [40, "redundantserverdatatype"]], "Reference Management": [[22, "reference-management"]], "ReferenceDescription": [[39, "referencedescription"], [40, "referencedescription"]], "ReferenceNode": [[39, "referencenode"], [40, "referencenode"]], "ReferenceType Bitfield Representation": [[19, "referencetype-bitfield-representation"]], "ReferenceTypeAttributes": [[39, "referencetypeattributes"], [40, "referencetypeattributes"]], "ReferenceTypeNode": [[6, "referencetypenode"], [19, "referencetypenode"]], "RegisterNodesRequest": [[39, "registernodesrequest"], [40, "registernodesrequest"]], "RegisterNodesResponse": [[39, "registernodesresponse"], [40, "registernodesresponse"]], "RegisterServer2Request": [[39, "registerserver2request"], [40, "registerserver2request"]], "RegisterServer2Response": [[39, "registerserver2response"], [40, "registerserver2response"]], "RegisterServerRequest": [[39, "registerserverrequest"], [40, "registerserverrequest"]], "RegisterServerResponse": [[39, "registerserverresponse"], [40, "registerserverresponse"]], "RegisteredServer": [[39, "registeredserver"], [40, "registeredserver"]], "Registering at a Discovery Server": [[22, "registering-at-a-discovery-server"]], "RelativePath": [[39, "relativepath"], [40, "relativepath"]], "RelativePathElement": [[39, "relativepathelement"], [40, "relativepathelement"]], "RepublishRequest": [[39, "republishrequest"], [40, "republishrequest"]], "RepublishResponse": [[39, "republishresponse"], [40, "republishresponse"]], "RequestHeader": [[39, "requestheader"], [40, "requestheader"]], "ResponseHeader": [[39, "responseheader"], [40, "responseheader"]], "Reverse Connect": [[22, "reverse-connect"], [22, "id10"]], "RolePermissionType": [[39, "rolepermissiontype"], [40, "rolepermissiontype"]], "RsaEncryptedSecret": [[39, "rsaencryptedsecret"], [40, "rsaencryptedsecret"]], "Rule Handling": [[5, "rule-handling"], [22, "rule-handling"]], "SByte": [[39, "sbyte"]], "SamplingIntervalDiagnosticsDataType": [[39, "samplingintervaldiagnosticsdatatype"], [40, "samplingintervaldiagnosticsdatatype"]], "SecureChannel Service Set": [[6, "securechannel-service-set"]], "Security and Encryption": [[22, "security-and-encryption"]], "SecurityGroup": [[21, "securitygroup"]], "SecurityGroupDataType": [[39, "securitygroupdatatype"], [40, "securitygroupdatatype"]], "SecurityPolicy": [[20, "securitypolicy"]], "SecurityTokenRequestType": [[39, "securitytokenrequesttype"], [40, "securitytokenrequesttype"]], "Select build artefacts": [[0, "select-build-artefacts"]], "SemanticChangeStructureDataType": [[39, "semanticchangestructuredatatype"], [40, "semanticchangestructuredatatype"]], "SemanticVersionString": [[39, "semanticversionstring"], [40, "semanticversionstring"]], "Server": [[22, "server"]], "Server Configuration": [[22, "server-configuration"]], "Server Configuration and Plugins": [[32, "server-configuration-and-plugins"]], "Server Description": [[22, "server-description"]], "Server Lifecycle": [[22, "server-lifecycle"], [22, "id3"], [32, "server-lifecycle"]], "ServerDiagnosticsSummaryDataType": [[39, "serverdiagnosticssummarydatatype"], [40, "serverdiagnosticssummarydatatype"]], "ServerOnNetwork": [[39, "serveronnetwork"], [40, "serveronnetwork"]], "ServerState": [[39, "serverstate"], [40, "serverstate"]], "ServerStatusDataType": [[39, "serverstatusdatatype"], [40, "serverstatusdatatype"]], "ServiceCounterDataType": [[39, "servicecounterdatatype"], [40, "servicecounterdatatype"]], "ServiceFault": [[39, "servicefault"], [40, "servicefault"]], "Services": [[1, "services"], [6, "services"]], "Session Handling": [[22, "session-handling"]], "SessionAuthenticationToken": [[39, "sessionauthenticationtoken"], [40, "sessionauthenticationtoken"]], "SessionDiagnosticsDataType": [[39, "sessiondiagnosticsdatatype"], [40, "sessiondiagnosticsdatatype"]], "SessionSecurityDiagnosticsDataType": [[39, "sessionsecuritydiagnosticsdatatype"], [40, "sessionsecuritydiagnosticsdatatype"]], "SessionlessInvokeRequestType": [[39, "sessionlessinvokerequesttype"], [40, "sessionlessinvokerequesttype"]], "SessionlessInvokeResponseType": [[39, "sessionlessinvokeresponsetype"], [40, "sessionlessinvokeresponsetype"]], "SetMonitoringModeRequest": [[39, "setmonitoringmoderequest"], [40, "setmonitoringmoderequest"]], "SetMonitoringModeResponse": [[39, "setmonitoringmoderesponse"], [40, "setmonitoringmoderesponse"]], "SetPublishingModeRequest": [[39, "setpublishingmoderequest"], [40, "setpublishingmoderequest"]], "SetPublishingModeResponse": [[39, "setpublishingmoderesponse"], [40, "setpublishingmoderesponse"]], "SetTriggeringRequest": [[39, "settriggeringrequest"], [40, "settriggeringrequest"]], "SetTriggeringResponse": [[39, "settriggeringresponse"], [40, "settriggeringresponse"]], "Setting up an event": [[31, "setting-up-an-event"]], "Signal Interrupt Manager": [[17, "signal-interrupt-manager"]], "SignatureData": [[39, "signaturedata"], [40, "signaturedata"]], "SignedSoftwareCertificate": [[39, "signedsoftwarecertificate"], [40, "signedsoftwarecertificate"]], "SimpleAttributeOperand": [[39, "simpleattributeoperand"], [40, "simpleattributeoperand"]], "SimpleTypeDescription": [[39, "simpletypedescription"], [40, "simpletypedescription"]], "StandaloneSubscribedDataSetDataType": [[39, "standalonesubscribeddatasetdatatype"], [40, "standalonesubscribeddatasetdatatype"]], "StandaloneSubscribedDataSetRefDataType": [[39, "standalonesubscribeddatasetrefdatatype"], [40, "standalonesubscribeddatasetrefdatatype"]], "Statistic Counters": [[5, "statistic-counters"]], "Statistics": [[22, "statistics"]], "StatusChangeNotification": [[39, "statuschangenotification"], [40, "statuschangenotification"]], "StatusCode": [[39, "statuscode"]], "StatusCodes": [[23, "statuscodes"]], "StatusResult": [[39, "statusresult"], [40, "statusresult"]], "String": [[39, "string"]], "Structure of a protocol message": [[6, "structure-of-a-protocol-message"]], "StructureDefinition": [[39, "structuredefinition"], [40, "structuredefinition"]], "StructureDescription": [[39, "structuredescription"], [40, "structuredescription"]], "StructureField": [[39, "structurefield"], [40, "structurefield"]], "StructureType": [[39, "structuretype"], [40, "structuretype"]], "SubscribedDataSet": [[21, "subscribeddataset"]], "SubscribedDataSetMirrorDataType": [[39, "subscribeddatasetmirrordatatype"], [40, "subscribeddatasetmirrordatatype"]], "Subscribing Fields": [[28, "subscribing-fields"]], "Subscription Service Set": [[6, "subscription-service-set"]], "SubscriptionAcknowledgement": [[39, "subscriptionacknowledgement"], [40, "subscriptionacknowledgement"]], "SubscriptionDiagnosticsDataType": [[39, "subscriptiondiagnosticsdatatype"], [40, "subscriptiondiagnosticsdatatype"]], "Subscriptions": [[4, "subscriptions"], [22, "subscriptions"]], "TCP Connection Manager": [[17, "tcp-connection-manager"]], "TargetVariablesDataType": [[39, "targetvariablesdatatype"], [40, "targetvariablesdatatype"]], "ThreeDCartesianCoordinates": [[39, "threedcartesiancoordinates"], [40, "threedcartesiancoordinates"]], "ThreeDFrame": [[39, "threedframe"], [40, "threedframe"]], "ThreeDOrientation": [[39, "threedorientation"], [40, "threedorientation"]], "ThreeDVector": [[39, "threedvector"], [40, "threedvector"]], "TimeString": [[39, "timestring"], [40, "timestring"]], "TimeZoneDataType": [[39, "timezonedatatype"], [40, "timezonedatatype"]], "Timed Callbacks": [[1, "timed-callbacks"], [22, "timed-callbacks"]], "Timer Policies": [[17, "timer-policies"]], "TimestampsToReturn": [[39, "timestampstoreturn"], [40, "timestampstoreturn"]], "TransferResult": [[39, "transferresult"], [40, "transferresult"]], "TransferSubscriptionsRequest": [[39, "transfersubscriptionsrequest"], [40, "transfersubscriptionsrequest"]], "TransferSubscriptionsResponse": [[39, "transfersubscriptionsresponse"], [40, "transfersubscriptionsresponse"]], "TranslateBrowsePathsToNodeIdsRequest": [[39, "translatebrowsepathstonodeidsrequest"], [40, "translatebrowsepathstonodeidsrequest"]], "TranslateBrowsePathsToNodeIdsResponse": [[39, "translatebrowsepathstonodeidsresponse"], [40, "translatebrowsepathstonodeidsresponse"]], "TransmitQosPriorityDataType": [[39, "transmitqosprioritydatatype"], [40, "transmitqosprioritydatatype"]], "Trigger Alarm events by changing States": [[29, "trigger-alarm-events-by-changing-states"]], "Triggering an event": [[31, "triggering-an-event"]], "TrustListDataType": [[39, "trustlistdatatype"], [40, "trustlistdatatype"]], "TrustListMasks": [[39, "trustlistmasks"], [40, "trustlistmasks"]], "Trustlist Helpers": [[5, "trustlist-helpers"], [41, "trustlist-helpers"]], "TsnFailureCode": [[39, "tsnfailurecode"], [40, "tsnfailurecode"]], "TsnListenerStatus": [[39, "tsnlistenerstatus"], [40, "tsnlistenerstatus"]], "TsnStreamState": [[39, "tsnstreamstate"], [40, "tsnstreamstate"]], "TsnTalkerStatus": [[39, "tsntalkerstatus"], [40, "tsntalkerstatus"]], "Tutorials": [[38, "tutorials"]], "UABinaryFileDataType": [[39, "uabinaryfiledatatype"], [40, "uabinaryfiledatatype"]], "UDP Connection Manager": [[17, "udp-connection-manager"]], "UInt16": [[39, "uint16"]], "UInt32": [[39, "uint32"]], "UInt64": [[39, "uint64"]], "UadpDataSetMessageContentMask": [[39, "uadpdatasetmessagecontentmask"], [40, "uadpdatasetmessagecontentmask"]], "UadpDataSetReaderMessageDataType": [[39, "uadpdatasetreadermessagedatatype"], [40, "uadpdatasetreadermessagedatatype"]], "UadpDataSetWriterMessageDataType": [[39, "uadpdatasetwritermessagedatatype"], [40, "uadpdatasetwritermessagedatatype"]], "UadpNetworkMessageContentMask": [[39, "uadpnetworkmessagecontentmask"], [40, "uadpnetworkmessagecontentmask"]], "UadpWriterGroupMessageDataType": [[39, "uadpwritergroupmessagedatatype"], [40, "uadpwritergroupmessagedatatype"]], "UnregisterNodesRequest": [[39, "unregisternodesrequest"], [40, "unregisternodesrequest"]], "UnregisterNodesResponse": [[39, "unregisternodesresponse"], [40, "unregisternodesresponse"]], "UnsignedRationalNumber": [[39, "unsignedrationalnumber"], [40, "unsignedrationalnumber"]], "Update the Server Certificate at Runtime": [[22, "update-the-server-certificate-at-runtime"]], "UpdateDataDetails": [[39, "updatedatadetails"], [40, "updatedatadetails"]], "UpdateEventDetails": [[39, "updateeventdetails"], [40, "updateeventdetails"]], "UpdateStructureDataDetails": [[39, "updatestructuredatadetails"], [40, "updatestructuredatadetails"]], "Updating variables manually": [[30, "updating-variables-manually"]], "UriString": [[39, "uristring"], [40, "uristring"]], "UserConfigurationMask": [[39, "userconfigurationmask"], [40, "userconfigurationmask"]], "UserIdentityToken": [[39, "useridentitytoken"], [40, "useridentitytoken"]], "UserManagementDataType": [[39, "usermanagementdatatype"], [40, "usermanagementdatatype"]], "UserNameIdentityToken": [[39, "usernameidentitytoken"], [40, "usernameidentitytoken"]], "UserTokenPolicy": [[39, "usertokenpolicy"], [40, "usertokenpolicy"]], "UserTokenType": [[39, "usertokentype"], [40, "usertokentype"]], "Using Alarms and Conditions Server": [[29, "using-alarms-and-conditions-server"]], "Using objects to structure information models": [[35, "using-objects-to-structure-information-models"]], "UtcTime": [[39, "utctime"], [40, "utctime"]], "Utility Functions": [[22, "utility-functions"]], "Value Callback": [[19, "value-callback"]], "ValueRank": [[5, "valuerank"], [6, "valuerank"]], "Variable Data Sources": [[30, "variable-data-sources"]], "Variable Value Callback": [[30, "variable-value-callback"]], "VariableAttributes": [[39, "variableattributes"], [40, "variableattributes"]], "VariableNode": [[6, "variablenode"], [19, "variablenode"]], "VariableTypeAttributes": [[39, "variabletypeattributes"], [40, "variabletypeattributes"]], "VariableTypeNode": [[6, "variabletypenode"], [19, "variabletypenode"]], "Variant": [[39, "variant"]], "Variants": [[26, "variants"]], "VersionTime": [[39, "versiontime"], [40, "versiontime"]], "View Service Set": [[6, "view-service-set"]], "ViewAttributes": [[39, "viewattributes"], [40, "viewattributes"]], "ViewDescription": [[39, "viewdescription"], [40, "viewdescription"]], "ViewNode": [[6, "viewnode"], [19, "viewnode"]], "Working with Data Types": [[26, "working-with-data-types"]], "Working with Objects and Object Types": [[35, "working-with-objects-and-object-types"]], "Working with Publish/Subscribe": [[27, "working-with-publish-subscribe"]], "Working with Variable Types": [[37, "working-with-variable-types"]], "Write Attribute": [[3, "write-attribute"]], "Write Attributes": [[2, "write-attributes"]], "Write Masks": [[5, "write-masks"]], "WriteRequest": [[39, "writerequest"], [40, "writerequest"]], "WriteResponse": [[39, "writeresponse"], [40, "writeresponse"]], "WriteValue": [[39, "writevalue"], [40, "writevalue"]], "WriterGroup": [[21, "writergroup"], [21, "id2"]], "WriterGroupDataType": [[39, "writergroupdatatype"], [40, "writergroupdatatype"]], "X509IdentityToken": [[39, "x509identitytoken"], [40, "x509identitytoken"]], "XML En/Decoding": [[39, "xml-en-decoding"]], "XML Nodeset Compiler": [[13, "xml-nodeset-compiler"]], "XVType": [[39, "xvtype"], [40, "xvtype"]], "XmlElement": [[39, "xmlelement"]], "open62541 Documentation": [[24, "open62541-documentation"]], "open62541 Features": [[12, "open62541-features"]]}, "docnames": ["building", "client", "client_highlevel", "client_highlevel_async", "client_subscriptions", "common", "core_concepts", "eventfilter_query/case_0", "eventfilter_query/case_1", "eventfilter_query/case_2", "eventfilter_query/case_3", "eventfilter_query/case_4", "index", "nodeset_compiler", "plugin", "plugin_accesscontrol", "plugin_certificategroup", "plugin_eventloop", "plugin_log", "plugin_nodestore", "plugin_securitypolicy", "pubsub", "server", "statuscodes", "toc", "tutorial_client_firststeps", "tutorial_datatypes", "tutorial_pubsub_publish", "tutorial_pubsub_subscribe", "tutorial_server_alarms_conditions", "tutorial_server_datasource", "tutorial_server_events", "tutorial_server_firststeps", "tutorial_server_method", "tutorial_server_monitoreditems", "tutorial_server_object", "tutorial_server_variable", "tutorial_server_variabletype", "tutorials", "types", "types_generated", "util"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["building.rst", "client.rst", "client_highlevel.rst", "client_highlevel_async.rst", "client_subscriptions.rst", "common.rst", "core_concepts.rst", "eventfilter_query/case_0.rst", "eventfilter_query/case_1.rst", "eventfilter_query/case_2.rst", "eventfilter_query/case_3.rst", "eventfilter_query/case_4.rst", "index.rst", "nodeset_compiler.rst", "plugin.rst", "plugin_accesscontrol.rst", "plugin_certificategroup.rst", "plugin_eventloop.rst", "plugin_log.rst", "plugin_nodestore.rst", "plugin_securitypolicy.rst", "pubsub.rst", "server.rst", "statuscodes.rst", "toc.rst", "tutorial_client_firststeps.rst", "tutorial_datatypes.rst", "tutorial_pubsub_publish.rst", "tutorial_pubsub_subscribe.rst", "tutorial_server_alarms_conditions.rst", "tutorial_server_datasource.rst", "tutorial_server_events.rst", "tutorial_server_firststeps.rst", "tutorial_server_method.rst", "tutorial_server_monitoreditems.rst", "tutorial_server_object.rst", "tutorial_server_variable.rst", "tutorial_server_variabletype.rst", "tutorials.rst", "types.rst", "types_generated.rst", "util.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 5, 6, 13, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35, 36, 37, 39, 41], "0": [0, 1, 4, 5, 6, 10, 11, 12, 13, 16, 17, 18, 19, 20, 21, 22, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41], "00": [19, 39], "000": [1, 21], "001": 21, "01": [5, 17, 19, 41], "010": 21, "011": 21, "02": [5, 13, 41], "03": [13, 20], "036": 39, "0370": [5, 41], "03u": 25, "04": [5, 41], "073": 39, "08": [5, 41], "09087e75": 39, "0db8": [5, 41], "0dfe": 39, "0u": 5, "0x00": 39, "0x00000000": 23, "0x00000080": 23, "0x00000400": 23, "0x002d0000": 23, "0x002e0000": 23, "0x002f0000": 23, "0x00300000": 23, "0x00960000": 23, "0x00a20000": 23, "0x00a30000": 23, "0x00a50000": 23, "0x00a60000": 23, "0x00a70000": 23, "0x00a80000": 23, "0x00a90000": 23, "0x00aa0000": 23, "0x00ba0000": 23, "0x00d90000": 23, "0x00dc0000": 23, "0x00dd0000": 23, "0x00df0000": 23, "0x00e00000": 23, "0x01": 39, "0x01160000": 23, "0x01170000": 23, "0x01180000": 23, "0x01u": 5, "0x02": 39, "0x40000000": 23, "0x406c0000": 23, "0x408f0000": 23, "0x40900000": 23, "0x40910000": 23, "0x40920000": 23, "0x40930000": 23, "0x40940000": 23, "0x40950000": 23, "0x40a40000": 23, "0x40bc0000": 23, "0x40c00000": 23, "0x40de0000": 23, "0x40e20000": 23, "0x80000000": 23, "0x80010000": 23, "0x80020000": 23, "0x80030000": 23, "0x80040000": 23, "0x80050000": 23, "0x80060000": 23, "0x80070000": 23, "0x80080000": 23, "0x80090000": 23, "0x800a0000": 23, "0x800b0000": 23, "0x800c0000": 23, "0x800d0000": 23, "0x800e0000": 23, "0x800f0000": 23, "0x80100000": 23, "0x80110000": 23, "0x80120000": 23, "0x80130000": 23, "0x80140000": 23, "0x80150000": 23, "0x80160000": 23, "0x80170000": 23, "0x80180000": 23, "0x80190000": 23, "0x801a0000": 23, "0x801b0000": 23, "0x801c0000": 23, "0x801d0000": 23, "0x801e0000": 23, "0x801f0000": 23, "0x80200000": 23, "0x80210000": 23, "0x80220000": 23, "0x80230000": 23, "0x80240000": 23, "0x80250000": 23, "0x80260000": 23, "0x80270000": 23, "0x80280000": 23, "0x802a0000": 23, "0x802b0000": 23, "0x802c0000": 23, "0x80310000": 23, "0x80320000": 23, "0x80330000": 23, "0x80340000": 23, "0x80350000": 23, "0x80360000": 23, "0x80370000": 23, "0x80380000": 23, "0x80390000": 23, "0x803a0000": 23, "0x803b0000": 23, "0x803c0000": 23, "0x803d0000": 23, "0x803e0000": 23, "0x803f0000": 23, "0x80400000": 23, "0x80410000": 23, "0x80420000": 23, "0x80430000": 23, "0x80440000": 23, "0x80450000": 23, "0x80460000": 23, "0x80470000": 23, "0x80480000": 23, "0x80490000": 23, "0x804a0000": 23, "0x804b0000": 23, "0x804c0000": 23, "0x804d0000": 23, "0x804e0000": 23, "0x804f0000": 23, "0x80500000": 23, "0x80510000": 23, "0x80520000": 23, "0x80530000": 23, "0x80540000": 23, "0x80550000": 23, "0x80560000": 23, "0x80570000": 23, "0x80580000": 23, "0x80590000": 23, "0x805a0000": 23, "0x805b0000": 23, "0x805c0000": 23, "0x805d0000": 23, "0x805e0000": 23, "0x805f0000": 23, "0x80600000": 23, "0x80610000": 23, "0x80620000": 23, "0x80630000": 23, "0x80640000": 23, "0x80650000": 23, "0x80660000": 23, "0x80670000": 23, "0x80680000": 23, "0x80690000": 23, "0x806a0000": 23, "0x806b0000": 23, "0x806d0000": 23, "0x806e0000": 23, "0x806f0000": 23, "0x80700000": 23, "0x80710000": 23, "0x80720000": 23, "0x80730000": 23, "0x80740000": 23, "0x80750000": 23, "0x80760000": 23, "0x80770000": 23, "0x80780000": 23, "0x80790000": 23, "0x807a0000": 23, "0x807b0000": 23, "0x807c0000": 23, "0x807d0000": 23, "0x807e0000": 23, "0x807f0000": 23, "0x80800000": 23, "0x80810000": 23, "0x80820000": 23, "0x80830000": 23, "0x80840000": 23, "0x80850000": 23, "0x80860000": 23, "0x80870000": 23, "0x80880000": 23, "0x80890000": 23, "0x808a0000": 23, "0x808b0000": 23, "0x808c0000": 23, "0x808d0000": 23, "0x808e0000": 23, "0x80970000": 23, "0x80980000": 23, "0x80990000": 23, "0x809a0000": 23, "0x809b0000": 23, "0x809d0000": 23, "0x809e0000": 23, "0x809f0000": 23, "0x80a00000": 23, "0x80a10000": 23, "0x80ab0000": 23, "0x80ac0000": 23, "0x80ad0000": 23, "0x80ae0000": 23, "0x80af0000": 23, "0x80b00000": 23, "0x80b10000": 23, "0x80b20000": 23, "0x80b30000": 23, "0x80b40000": 23, "0x80b50000": 23, "0x80b60000": 23, "0x80b70000": 23, "0x80b80000": 23, "0x80b90000": 23, "0x80bb0000": 23, "0x80bd0000": 23, "0x80be0000": 23, "0x80bf0000": 23, "0x80c10000": 23, "0x80c20000": 23, "0x80c30000": 23, "0x80c40000": 23, "0x80c50000": 23, "0x80c60000": 23, "0x80c80000": 23, "0x80c90000": 23, "0x80ca0000": 23, "0x80cb0000": 23, "0x80cc0000": 23, "0x80cd0000": 23, "0x80ce0000": 23, "0x80cf0000": 23, "0x80d00000": 23, "0x80d10000": 23, "0x80d20000": 23, "0x80d30000": 23, "0x80d40000": 23, "0x80d50000": 23, "0x80d60000": 23, "0x80d70000": 23, "0x80d80000": 23, "0x80da0000": 23, "0x80db0000": 23, "0x80e10000": 23, "0x80e30000": 23, "0x80e40000": 23, "0x80e50000": 23, "0x80e60000": 23, "0x810d0000": 23, "0x810e0000": 23, "0x810f0000": 23, "0x81100000": 23, "0x81110000": 23, "0x81120000": 23, "0x81130000": 23, "0x81140000": 23, "0x81150000": 23, "0x81190000": 23, "0x811a0000": 23, "0x811b0000": 23, "0x811c0000": 23, "0x811d0000": 23, "0x811e0000": 23, "0x811f0000": 23, "0x81200000": 23, "0xffff0000": 39, "1": [0, 4, 5, 6, 7, 9, 10, 11, 13, 17, 19, 20, 21, 25, 26, 27, 28, 29, 30, 31, 33, 35, 36, 37, 39, 40, 41], "10": [0, 4, 5, 9, 10, 11, 18, 19, 20, 24, 27, 28, 39, 40], "100": [0, 1, 18, 19, 21, 22, 27, 28, 29, 31, 34, 39], "1000": 22, "10000": 4, "10001": 6, "1000ll": 39, "1001": [13, 35], "1002": 13, "100kb": [0, 12], "100n": 17, "1024": [39, 40], "1048576": [39, 40], "10ll": 39, "10u": 5, "11": [5, 7, 9, 19, 39, 40], "11644473600ll": 39, "11u": 5, "12": [0, 5, 13, 17, 19, 39, 40], "1234": 26, "127": 39, "128": [19, 39, 40], "12u": 5, "13": [5, 7, 8, 9, 10, 11, 19, 39, 40], "131072": [39, 40], "13u": 5, "14": [0, 5, 6, 7, 8, 9, 10, 11, 19, 21, 39, 40], "147": 39, "14u": 5, "15": [5, 19, 39, 40], "15000": 22, "15u": 5, "16": [5, 19, 39, 40], "1601": 39, "16384": [39, 40], "16777216": [39, 40], "16u": 5, "17": [5, 19, 39, 40], "17u": 5, "18": [5, 39, 40], "18446744073709551615ull": 39, "1883": 17, "18u": 5, "19": [5, 39, 40], "1970": 39, "19u": 5, "1e9a461f5b58": 13, "1ll": 39, "1u": 5, "2": [0, 5, 6, 7, 10, 11, 13, 16, 19, 21, 26, 27, 28, 29, 33, 36, 37, 39, 40, 41], "20": [5, 10, 39, 40], "200": [0, 18], "2001": [5, 13, 41], "2008": 13, "200m": 22, "2011": 13, "2013": 0, "2015": [0, 32], "2018": 16, "2019": 39, "2024": 16, "2041": [7, 8, 9, 10, 11], "2048": [39, 40], "2097152": [39, 40], "20u": 5, "21": [5, 39, 40], "2147483647l": 39, "2147483648ll": 39, "21u": 5, "22": [5, 27, 28, 39, 40], "223": 39, "2234": [27, 28], "224": [27, 28], "2253": 22, "22u": 5, "23": [5, 17, 39, 40, 41], "23u": 5, "24": [5, 39, 40], "24u": 5, "25": [5, 39, 40], "250": 4, "255": 39, "256": [39, 40], "25u": 5, "26": [5, 39], "262144": [39, 40], "26501220": [39, 40], "26501348": [39, 40], "26501356": [39, 40], "26503268": [39, 40], "26537060": [39, 40], "26571383": [39, 40], "26632548": [39, 40], "27": [5, 39], "28": 39, "28600438": [39, 40], "29": 39, "294": 39, "295": 39, "296": 13, "297": 13, "2d": 37, "2dpoint": 37, "2u": 5, "2x3": 26, "3": [0, 5, 6, 9, 12, 13, 17, 18, 19, 21, 22, 26, 27, 28, 29, 39, 40, 41], "30": [10, 39], "300": [0, 18], "3000": 35, "3035": [7, 9], "31": 39, "32": [19, 39, 40], "32767": 39, "32768": [39, 40], "33": [13, 20], "33554431": [39, 40], "33554432": [39, 40], "34": 39, "345": [5, 41], "36": 39, "37": [12, 13, 39], "372": 39, "3u": 5, "4": [0, 5, 6, 9, 10, 13, 18, 19, 21, 22, 26, 28, 36, 39, 40, 41], "40": 13, "400": [0, 17, 18], "4001": 13, "4096": [39, 40], "4194304": [39, 40], "42": [26, 36, 39], "4294967295ul": 39, "43": 36, "443": 22, "446": 39, "45": [5, 13, 17, 41], "46": 13, "47": 13, "483": 39, "4840": [1, 22, 25, 27, 28, 32], "49": 6, "499b": 39, "4b8f": 39, "4u": 5, "5": [0, 5, 9, 19, 21, 22, 26, 33, 39, 40, 41], "50": 35, "500": [0, 4, 18], "5000": [9, 10, 11], "50000": 28, "5001": [8, 9, 10], "5002": 9, "5003": [7, 9], "5004": 9, "50831": 22, "512": [39, 40], "524288": [39, 40], "535": 39, "551": 39, "56": 6, "58": 13, "592": [7, 9, 10, 11], "595": [7, 8, 9, 10, 11], "5u": 5, "6": [0, 5, 6, 9, 17, 19, 22, 26, 39, 40, 41], "60": [22, 39, 40], "600": [0, 18], "6001": 13, "6002": 13, "6003": 13, "6004": 13, "6005": 13, "6006": 13, "601": [10, 11], "615": 39, "62541": [6, 12, 27, 28, 31, 33], "63": [6, 13, 39, 40], "64": [39, 40], "647": 39, "648": 39, "64kb": [17, 22], "65": 39, "65535": 39, "65536": [39, 40], "67": [5, 17, 41], "68": 13, "6u": 5, "7": [0, 5, 6, 9, 13, 19, 21, 22, 26, 39, 40, 41], "7001": 13, "7002": 13, "709": 39, "7334": [5, 41], "744": 39, "745238c6aeae": 39, "75": 1, "767": 39, "768": 39, "775": 39, "78": 13, "7u": 5, "8": [0, 5, 9, 19, 26, 39, 40], "807": 39, "808": 39, "8192": [39, 40], "8388608": [39, 40], "854": 39, "85a3": [5, 41], "870a": 39, "89": [5, 17, 41], "8a2e": [5, 41], "8e5e": 39, "8u": 5, "9": [5, 6, 9, 19, 26, 39, 40, 41], "9223372036854775807ll": 39, "954f": 39, "967": 39, "98": 12, "99": [0, 10, 11], "9u": 5, "A": [0, 1, 5, 6, 13, 17, 18, 19, 21, 22, 23, 26, 27, 29, 33, 34, 39, 41], "AND": [10, 11], "ANDed": 5, "And": [4, 6, 13, 17, 24, 35], "As": [5, 6, 12, 13, 30, 39, 41], "At": [1, 6, 12, 21, 35], "But": [0, 1, 4, 5, 6, 17, 19, 21, 32, 35, 39], "By": [0, 19, 29], "FOR": [7, 9, 10, 11], "For": [0, 1, 3, 5, 6, 12, 13, 15, 17, 19, 20, 21, 22, 28, 30, 32, 35, 39, 41], "If": [1, 2, 3, 5, 6, 13, 16, 17, 19, 20, 21, 22, 27, 29, 37, 39, 41], "In": [0, 5, 6, 13, 17, 19, 21, 22, 25, 29, 30, 31, 32, 35, 37, 39, 41], "It": [0, 1, 5, 6, 12, 13, 17, 19, 20, 21, 22, 23, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "NOT": [5, 17, 41], "No": [0, 5, 17, 21, 23, 29, 39, 41], "Not": [0, 22, 23, 39], "ON": [0, 13], "OR": [7, 9], "ORed": 19, "Of": 35, "On": [6, 22, 39], "One": [13, 23, 33], "Or": 1, "Such": 1, "That": [4, 13, 17, 19, 21, 22, 27, 32, 39], "The": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "Their": 39, "Then": [0, 5, 6, 17, 19, 20, 21, 22, 39, 41], "There": [6, 13, 19, 22, 23], "These": [6, 21, 22, 23, 27, 35, 39], "To": [0, 5, 13, 17, 19, 21, 22, 29, 31, 32, 39, 41], "With": [0, 6, 30, 32], "__main__": 13, "__ua_client_addnod": 2, "__ua_client_addnode_async": 3, "__ua_client_asyncservic": [1, 3, 4], "__ua_client_call_async": 3, "__ua_client_connect": 1, "__ua_client_readattribut": 2, "__ua_client_servic": [1, 4], "__ua_client_writeattribut": 2, "__ua_client_writeattribute_async": 3, "__ua_server_addnod": 22, "__ua_server_read": 22, "__ua_server_writ": 22, "_begin": 22, "_clear": [1, 22], "_copi": 1, "_delet": [1, 22], "_finish": 22, "_free": 17, "_init": [26, 39], "_start": 17, "_ua_begin_decl": 16, "_unregisterdiscoveri": 22, "a2": [5, 41], "a_pubsubdatasetreader_createdatasetmirror": 21, "ab": [5, 17, 41], "abandon": 23, "abl": [6, 13, 21, 22, 23], "abort": [1, 5, 17, 19], "about": [1, 4, 20, 21, 22, 27, 34, 39], "abov": [0, 5, 13, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41], "absolut": [5, 19, 39], "abstract": [1, 6, 13, 21, 31], "ac": 15, "accept": [5, 17, 22, 23, 41], "access": [0, 1, 6, 12, 14, 17, 19, 20, 21, 23, 24, 36, 39], "accesscontrol": [1, 22], "accesshistorydatacap": 22, "accesshistoryeventscap": 22, "accesslevel": [3, 5, 6, 13, 19, 22, 29, 30, 36, 37, 39, 40, 41], "accesslevelex": [3, 6, 22], "accesslevelextyp": 24, "accessleveltyp": 24, "accessrestrict": 6, "accessrestrictiontyp": 24, "accommod": 32, "accompani": 6, "accord": [5, 6, 13, 18, 19, 22, 32, 41], "accordingli": [1, 15, 17, 21], "account": [1, 18, 22], "achiev": 2, "ack": [6, 17, 29], "ackedst": [22, 29], "ackedstatefield": 29, "acknowledg": [6, 23, 29], "acquir": 20, "act": [5, 17, 41], "action": [1, 6, 23], "activ": [0, 1, 6, 15, 17, 22, 23, 29], "activatesess": [6, 15, 23], "activatesessionrequest": 24, "activatesessionrespons": 24, "activest": [22, 29], "activestatefield": 29, "activestateid": 29, "activestateidfield": 29, "actual": [0, 6, 17, 19, 22, 29, 39], "actualsessiontimeout": [39, 40], "ad": [1, 6, 12, 13, 15, 17, 19, 21, 22, 24, 25, 29, 31, 32, 34, 37, 38, 39], "adapt": [6, 32], "add": [0, 1, 5, 6, 13, 19, 21, 22, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "add_execut": 0, "addcondition_1": 29, "addcondition_2": 29, "addconditionsourceobject": 29, "addcurrenttimedatasourcevari": 30, "addcurrenttimeexternaldatasourc": 30, "addcurrenttimevari": 30, "addcustomcallback": 21, "addcycliccallback": 17, "adddatasetfield": 27, "adddatasetread": 28, "adddatasetwrit": 27, "adddelayedcallback": 17, "adddiagnosticinfo": [39, 40], "adddiagnosticinfoss": [39, 40], "addednodeid": [19, 39, 40], "addgenerateeventmethod": 31, "addhelloworldmethod": 33, "addincint32arraymethod": 33, "addit": [0, 1, 5, 12, 13, 15, 17, 19, 20, 21, 24, 26, 27, 31, 39, 41], "addition": [1, 5, 6, 13, 22, 26, 41], "additionalhead": [39, 40], "additionali": [5, 41], "additionalinfo": 39, "additionalparameterstyp": 24, "addmatrixvari": 36, "addmonitoreditemtocurrenttimevari": 34, "addneweventtyp": 31, "addnod": [5, 6, 19, 22, 35, 41], "addnodescount": [39, 40], "addnodesitem": 24, "addnodesrequest": 24, "addnodesrespons": 24, "addnodesresult": 24, "addpublisheddataset": 27, "addpubsubconnect": [27, 28], "addpumpobjectinst": 35, "addpumptypeconstructor": 35, "addreadergroup": 28, "addrefer": 6, "addreferencescount": [39, 40], "addreferencesitem": 24, "addreferencesrequest": 24, "addreferencesrespons": 24, "address": [5, 6, 17, 21, 22, 23, 25, 27, 28, 29, 39, 40, 41], "addressspac": [6, 21, 28], "addresult": [21, 39, 40], "addresultss": [39, 40], "addsubscribedvari": 28, "addtimedcallback": 17, "addtotrustlist": 16, "addvaluecallbacktocurrenttimevari": 30, "addvari": [36, 37], "addvariable_1_triggeralarmofcondition_1": 29, "addvariable_2_changeseverityofcondition_2": 29, "addvariable_3_returncondition_1_tonormalst": 29, "addvariablefail": 37, "addvariabletype2dpoint": 37, "addwritergroup": 27, "adjust": [0, 1, 4, 5, 22, 32, 39, 41], "admin": 22, "advanc": [0, 24], "advantag": [6, 19], "aes256": 6, "affect": [13, 17, 23, 39, 40], "affectedtyp": [39, 40], "after": [0, 1, 5, 6, 13, 17, 19, 21, 22, 30, 39, 41], "afterward": [19, 21, 39], "afterwrit": 21, "afterwritecallbackvariable_1": 29, "afterwritecallbackvariable_2": 29, "afterwritecallbackvariable_3": 29, "afterwritetim": 30, "ag": 23, "again": [17, 23, 29, 39], "against": [6, 37], "aggreg": [5, 23, 41], "aggregateconfigur": 24, "aggregatefilt": 24, "aggregatefilterresult": 24, "aggregatetyp": [39, 40], "aggregatetypes": [39, 40], "agnost": [17, 21], "ahead": [3, 21, 22, 32], "alarm": [24, 38], "algorithm": [6, 20, 39, 40], "alia": [13, 39, 40], "alias": 13, "aliasnam": [39, 40], "aliasnamedatatyp": 24, "aliv": [6, 17], "all": [0, 1, 2, 3, 5, 6, 12, 13, 15, 17, 19, 21, 22, 23, 27, 28, 29, 31, 32, 33, 35, 36, 37, 39, 41], "alloc": [1, 5, 16, 17, 19, 20, 21, 22, 23, 26, 39, 41], "allocnetworkbuff": 17, "allow": [0, 1, 5, 6, 12, 13, 15, 17, 19, 21, 22, 23, 30, 37, 39, 41], "allowaddnod": 15, "allowaddrefer": 15, "allowallcertificateuri": 22, "allowbrowsenod": 15, "allowdeletenod": 15, "allowdeleterefer": 15, "allowemptyvari": 22, "allowhistoryupdatedeleterawmodifi": 15, "allowhistoryupdateupdatedata": 15, "allownonepolicypassword": 22, "allowtransfersubscript": 15, "alon": 27, "along": [13, 21], "alphabeticcod": [39, 40], "alreadi": [1, 5, 13, 16, 17, 19, 21, 22, 23, 25, 27, 35, 39, 41], "also": [0, 1, 5, 6, 12, 13, 16, 17, 19, 21, 22, 29, 32, 36, 39, 41], "altern": [0, 1, 19, 32], "although": [6, 13, 29], "alwai": [0, 1, 2, 5, 6, 13, 19, 20, 22, 33, 39, 41], "amalgam": [13, 32], "amb": 13, "amend": 6, "among": 23, "amqp": [17, 21], "an": [0, 1, 2, 3, 5, 6, 12, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41], "angl": [5, 41], "ani": [1, 4, 5, 6, 12, 13, 17, 19, 21, 22, 23, 25, 26, 31, 32, 33, 39, 41], "annot": 24, "annotationtim": [39, 40], "announc": [17, 22], "anonym": 6, "anonymousidentitytoken": 24, "anoth": [1, 6, 15, 22, 23, 29], "answer": [1, 25, 36], "anyth": 6, "anywai": 19, "apart": 39, "api": [0, 1, 3, 6, 12, 13, 17, 21, 22, 23, 24, 25, 27, 28], "app": 0, "appear": [13, 17, 23], "append": 39, "appl": 0, "appli": [6, 13, 19, 21, 22, 23], "applic": [0, 1, 2, 6, 12, 13, 17, 19, 21, 22, 23, 29, 30, 32, 37], "applicationdescript": [1, 22, 23, 24], "applicationdescripton": 1, "applicationinstancecertif": [20, 24], "applicationnam": [39, 40], "applicationtyp": [22, 24], "applicationuri": [1, 16, 22, 39, 40], "appropri": [1, 6, 22, 23, 25], "approxim": 22, "apt": 0, "ar": [0, 1, 2, 3, 4, 5, 6, 12, 13, 15, 17, 18, 19, 20, 21, 22, 23, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "arch": 24, "architectur": [17, 19, 24, 30, 39], "archiv": 0, "archlinux": 0, "arg": [0, 18], "argc": [13, 27, 28], "argument": [1, 3, 5, 6, 13, 17, 21, 22, 23, 24, 31, 33, 41], "argv": [13, 27, 28], "around": 39, "arp": [5, 41], "arrai": [1, 3, 5, 13, 17, 19, 22, 24, 25, 26, 36, 37, 38, 41], "arraydim": [36, 37], "arraydimens": [3, 6, 13, 19, 22, 26, 33, 36, 37, 39, 40], "arraydimensionss": [19, 26, 33, 36, 37, 39, 40], "arraylength": [33, 39], "arrays": 39, "arriv": [1, 22, 30], "arrow": 6, "artefact": 24, "artifact": 0, "ascend": 13, "ask": 22, "assert": 0, "assign": [19, 21, 22, 23, 35], "associ": [6, 16, 17, 21, 22, 39], "associatedserv": 13, "assum": [0, 13, 19, 30, 32, 35, 39], "assumpt": 19, "asymmetr": [6, 20], "asymmetricmodul": 20, "async": [1, 19, 21, 24], "asynchron": [0, 4, 5, 6, 12, 17, 22, 23, 24], "asyncoperationnotifycallback": 22, "asyncoperationtimeout": 22, "atom": [0, 21, 39], "attach": [1, 4, 13, 15, 17, 19, 21, 22, 30, 33], "attack": [5, 41], "attempt": [1, 6, 13, 22, 39], "attent": [6, 22, 39], "attibuteid": 22, "attr": [2, 3, 22, 29, 30, 31, 36], "attr_id": 3, "attr_typ": [3, 22], "attr_typedesc": 3, "attrbiut": 24, "attribut": [1, 4, 13, 14, 20, 23, 24, 25, 31, 36, 37, 38], "attributeid": [2, 3, 4, 7, 8, 9, 10, 11, 22, 27, 28, 34, 36, 39, 40], "attributemask": 19, "attributeoperand": 24, "attributetyp": [2, 3, 19, 22], "attributevalu": [39, 40], "attributevaluess": [39, 40], "attributewritemask": 24, "attrid": 5, "audiodatatyp": 24, "audit": 6, "auditentryid": [39, 40], "aur": 0, "authent": [1, 6, 15], "authenticationmechan": [39, 40], "authenticationprofileuri": [39, 40], "authenticationtoken": [1, 6, 39, 40], "author": [6, 16], "authorit": 6, "authsecuritypolici": 1, "authsecuritypoliciess": 1, "authsecuritypolicyuri": 1, "auto": [1, 6, 17, 22, 39], "autogener": [21, 23], "autoid": 13, "autom": 32, "automat": [0, 1, 4, 6, 16, 17, 19, 21, 22, 24, 28, 29, 31, 35], "avail": [0, 1, 5, 6, 17, 21, 22, 23, 25, 26, 28, 39], "availabl": 23, "availablesequencenumb": [39, 40], "availablesequencenumberss": [39, 40], "avoid": [1, 21, 22], "awai": 22, "axisinform": 24, "axisscaleenumer": 24, "axisscaletyp": [39, 40], "axisstep": [39, 40], "axisstepss": [39, 40], "b": [5, 13, 39, 40, 41], "b3blbjyyntqxiq": 39, "back": [4, 17, 22], "backend": [0, 19, 21, 30], "backendtyp": [19, 30], "background": [1, 2, 4, 12, 17, 19, 22], "backward": 22, "bacnet": 13, "bad": [22, 23, 39], "bad_requestcancelledbycli": 6, "badconnectionclos": 17, "badtypemismatch": 13, "balanc": 22, "band": 20, "barebon": 0, "base": [0, 1, 5, 6, 12, 13, 14, 15, 17, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 37, 41], "base64": 39, "basedatatyp": [5, 22, 39, 40, 41], "basedatavari": 6, "baseeventtyp": [5, 31, 41], "basenam": 13, "basetim": [17, 21], "basic": [0, 1, 6, 24, 25, 31, 32, 35, 38], "basic128rsa15": 12, "basic256": 12, "basic256sha256": [6, 12], "batch": [17, 27], "bc": 39, "bd": 22, "becaus": [2, 13, 21, 22, 23, 37, 39], "becom": [5, 17, 39, 41], "been": [1, 4, 5, 6, 12, 13, 19, 22, 23, 30, 31], "befor": [1, 4, 6, 13, 17, 19, 20, 21, 22, 23, 29, 30, 39], "beforehand": 13, "beforereadtim": 30, "beforewrit": 21, "begin": [6, 19, 39], "behalf": 15, "behav": 29, "behavior": 22, "behaviour": [6, 22, 23], "behind": 19, "being": [5, 6, 13, 19, 21, 23, 28, 30], "belong": [6, 13, 17, 20, 26], "below": [0, 1, 5, 6, 13, 17, 18, 21, 22, 36, 41], "benefit": 13, "besid": [1, 12, 22, 29], "best": [6, 13], "better": 1, "between": [4, 5, 6, 13, 17, 19, 21, 22, 23, 26, 27, 28, 32, 39], "beyond": 23, "big": 21, "bigger": 22, "binari": [6, 12, 13, 16, 19, 24], "binaryencodingid": 39, "bit": [17, 19, 20, 21, 39], "bitfield": [6, 14, 24, 39], "bitfieldmaskdatatyp": 24, "blacklist": 13, "blacklistfil": 13, "blob": 13, "block": [1, 5, 17, 20, 21, 22, 23, 41], "blog": 13, "blue": 6, "bnf": [5, 41], "bodi": [6, 7, 8, 9, 10, 11, 12, 13, 39, 40], "boiler": [5, 41], "bool": [15, 17, 39], "boolean": [3, 6, 13, 17, 24, 28, 31], "booltoggl": 28, "bootstrap": 19, "borrow": 39, "both": [1, 5, 6, 15, 17, 19, 21, 22, 25, 39, 41], "bottom": 6, "bound": [17, 19, 23], "box": [6, 32], "bp": 35, "bpr": 35, "br": 26, "bracket": [5, 41], "branch": [0, 23], "break": 22, "brew": 0, "brief": [1, 21], "broke": 6, "broken": [1, 5], "broker": [6, 17, 21], "brokerconnectiontransportdatatyp": 24, "brokerdatasetreadertransportdatatyp": 24, "brokerdatasetwritertransportdatatyp": 24, "brokerless": 21, "brokertransportqualityofservic": 24, "brokerwritergrouptransportdatatyp": 24, "brows": [5, 6, 15, 19, 23, 24, 32, 41], "browsecallback": 3, "browsecount": [39, 40], "browsedescript": [22, 24], "browsedirect": 24, "browsenam": [2, 3, 5, 6, 13, 19, 22, 33, 39, 40, 41], "browsenext": 6, "browsenextcallback": 3, "browsenextcount": [39, 40], "browsenextrequest": 24, "browsenextrespons": 24, "browsepath": [5, 7, 8, 9, 10, 11, 22, 24, 41], "browsepathresult": 24, "browsepaths": [22, 39, 40], "browsepathss": [39, 40], "browsepathtarget": 24, "browserequest": 24, "browserespons": 24, "browseresult": 24, "browseresultmask": 24, "bsd": [13, 17, 39], "bubbl": 22, "buf": [5, 17, 41], "buffer": [17, 19, 20, 21, 39], "buflen": [5, 41], "bufsiz": 17, "bug": 12, "bugfix": 12, "bugtrack": 12, "build": [13, 22, 24, 35, 38, 39], "build_opt": 0, "build_shared_lib": 0, "builddat": [39, 40], "buildinfo": 24, "buildnumb": [39, 40], "buildopen62541": 0, "built": [0, 12, 25, 26, 39], "builtin": [0, 24], "builtintyp": [28, 39, 40], "busi": 23, "byte": [1, 3, 5, 6, 17, 20, 21, 22, 24, 41], "bytestr": [0, 7, 8, 9, 10, 11, 17, 24, 26], "c": [0, 12, 13, 16, 21, 22, 25, 27, 28, 29, 32, 39, 40], "c496578a": 39, "c99": [0, 12, 25, 32, 39], "ca": 13, "cach": 21, "calcul": 21, "call": [0, 1, 4, 5, 6, 12, 13, 15, 17, 19, 20, 21, 22, 23, 24, 27, 28, 29, 30, 32, 33, 34, 38, 39, 41], "callabl": 6, "callback": [0, 2, 3, 4, 6, 13, 14, 15, 17, 24, 29, 31, 33, 34, 38], "callbackcontext": [2, 22], "callbackid": [1, 17, 21, 22], "callbacktestvariablenam": 29, "callbacktyp": 22, "callcount": [39, 40], "caller": [19, 20, 23], "callmethodrequest": [22, 24], "callmethodresult": [22, 24], "callrequest": [22, 24], "callrespons": 24, "can": [0, 1, 2, 3, 4, 5, 6, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 39, 41], "cancel": [1, 3, 6, 17, 22, 23], "cancelcount": [1, 39, 40], "cancelrequest": 24, "cancelrespons": 24, "cannot": [1, 4, 6, 13, 17, 19, 22, 23, 29, 35, 39], "cap": 22, "cap_net_admin": 17, "capabl": [1, 6, 17, 21, 22], "car": 6, "care": [0, 13, 21, 22], "carri": [3, 6, 19, 22], "cartesiancoordin": [39, 40], "case": [0, 2, 5, 13, 15, 17, 19, 20, 21, 22, 29, 31, 32, 39], "case_0": 7, "case_1": 8, "case_2": 9, "case_3": 10, "case_4": 11, "cast": [17, 19], "categori": 18, "caus": [0, 6, 13, 22, 39], "cb": [17, 22], "cc": [0, 1, 22], "cc0": [1, 12, 22], "ccmake": 0, "cczero": 13, "cd": 0, "central": [13, 17], "cert": 22, "certain": [6, 22], "certgroup": 16, "certif": [1, 5, 6, 12, 16, 20, 23, 24, 41], "certifc": 22, "certificatedata": [39, 40], "certificategroupid": [16, 20, 22], "certificatesigningalgorithm": 20, "certificatethumbprint": 20, "certificatetypeid": [20, 22], "certificateverif": 1, "cf": [5, 17, 22, 41], "cfg": 21, "chain": 23, "chanc": 22, "chang": [0, 1, 4, 6, 12, 16, 19, 21, 22, 23, 24, 25, 27, 30, 31, 34, 36, 38, 39], "changecustomcallback": 21, "channel": [1, 6, 12, 20, 21, 22, 23], "channelabortcount": 5, "channelcontext": 20, "channelid": [39, 40], "channellifetim": [39, 40], "channelmodul": 20, "channelpurgecount": 5, "channelsecuritytoken": 24, "channelst": 1, "channeltimeoutcount": 5, "char": [1, 5, 7, 8, 9, 10, 11, 13, 18, 21, 22, 26, 27, 28, 35, 39, 41], "charact": [5, 17, 39, 41], "cheap": 17, "check": [0, 1, 4, 5, 6, 13, 17, 19, 21, 22, 33, 36, 39, 41], "checkout": 0, "child": [2, 6, 12, 19, 22, 33, 35], "childid": [2, 22], "children": [6, 13, 22, 29, 35], "choic": 1, "choos": 6, "chunk": [6, 12, 22, 23], "ciphertext": 20, "clamp": 23, "clang": [22, 32], "clash": 1, "class": 23, "classif": 39, "claus": 22, "clean": [1, 17, 18, 19, 22, 25, 35, 39], "cleanup": [15, 17, 22, 39], "clear": [1, 15, 16, 17, 18, 19, 20, 22, 39], "cleartext": 6, "client": [0, 3, 4, 5, 6, 12, 15, 16, 17, 18, 19, 21, 22, 23, 24, 29, 30, 31, 32, 34, 35, 36, 38, 39, 41], "client_config_default": [1, 25, 33], "client_highlevel": 25, "client_subscript": 34, "clientcertif": [39, 40], "clientconfig": [1, 21], "clientconnectiontim": [39, 40], "clientcontext": 1, "clientdescript": [1, 22, 39, 40], "clienthandl": [4, 39, 40], "clientlastcontacttim": [39, 40], "clientnonc": [39, 40], "clientprotocolvers": [39, 40], "clientsid": 25, "clientsignatur": [39, 40], "clientsoftwarecertif": [39, 40], "clientsoftwarecertificatess": [39, 40], "clientuserid": 22, "clientuseridhistori": [39, 40], "clientuseridhistorys": [39, 40], "clientuseridofsess": [39, 40], "clock": [17, 30, 39], "clock_gettim": 17, "clock_monotonic_raw": 17, "clock_realtim": 17, "clock_t": 39, "clone": 13, "close": [1, 5, 6, 17, 22, 23], "closeconnect": 17, "closesecurechannel": [6, 22], "closesecurechannelrequest": 24, "closesecurechannelrespons": 24, "closesess": [6, 15, 22], "closesessionrequest": 24, "closesessionrespons": 24, "cm": 17, "cmake": [13, 24], "cmake_build_typ": 0, "cmake_minimum_requir": 0, "cmakelist": 13, "cmd": 0, "cnc": 13, "code": [0, 1, 2, 5, 12, 13, 16, 17, 19, 20, 21, 22, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "collect": [22, 23, 27], "colon": [5, 39, 41], "com": [0, 13], "combin": [6, 12, 17, 19, 22, 23, 24, 39], "come": [1, 6, 17, 22, 23, 39], "comfort": 13, "comma": [5, 39, 41], "command": [0, 13, 18, 32], "comment": [29, 39], "commentfield": 29, "commentvalu": 29, "commercialkitchenequip": 13, "common": [3, 6, 12, 13, 19, 24, 35], "commonli": 21, "commun": [0, 6, 12, 21, 22, 23], "companion": [6, 12, 24], "compar": [5, 20, 21, 22, 26, 39, 41], "comparecertif": 20, "comparecertificatethumbprint": 20, "comparison": 19, "compat": [0, 17, 22, 23, 39], "compil": [0, 5, 12, 24, 25, 30, 32, 39, 41], "complain": 19, "complet": [1, 21, 23], "complex": 24, "complexnumbertyp": 24, "complianc": 12, "compliant": 31, "compon": [0, 5, 6, 12, 21, 29, 41], "composit": 6, "compress": 19, "concept": [12, 24], "concern": 30, "concis": 22, "concret": 21, "condit": [0, 21, 23, 24, 34, 38, 39], "conditionid": 22, "conditioninstance_1": 29, "conditioninstance_2": 29, "conditionnam": 22, "conditionrefresh": 29, "conditionsourc": [22, 29], "conditionsourceobject": 29, "conditiontyp": 22, "conditionvariabletyp": 29, "confidenti": 6, "config": [0, 1, 19, 21, 22, 24], "configur": [0, 5, 6, 16, 17, 18, 21, 23, 24, 27, 28, 38, 39, 41], "configurationel": [39, 40], "configurationmask": [39, 40], "configurationproperti": [39, 40], "configurationpropertiess": [39, 40], "configurationresult": [39, 40], "configurationresultss": [39, 40], "configurationvers": [21, 39, 40], "configurationversiondatatyp": 24, "configureds": [39, 40], "confirm": [23, 29], "confirmedst": [22, 29], "confirmedstatefield": 29, "confiugr": [1, 22], "conform": [0, 6, 12, 17, 22], "congest": 17, "connect": [0, 2, 6, 12, 14, 20, 23, 24, 25, 27, 28, 38, 39, 40], "connectedto": 6, "connectioncallback": 17, "connectionconfig": [21, 27, 28], "connectioncontext": 17, "connectionid": [17, 21, 27], "connectionidentifi": [21, 28], "connectionindex": [39, 40], "connectionmanag": 17, "connectionproperti": [21, 39, 40], "connectionpropertiess": [39, 40], "connectionss": [39, 40], "connectiontransportset": 21, "connectivitycheckinterv": 1, "connectstatu": 1, "conserv": [19, 22], "consid": [1, 2, 6, 13, 19, 21, 22, 39], "consider": 0, "consist": [0, 1, 5, 6, 13, 17, 18, 19, 22, 23, 36, 41], "const": [1, 2, 3, 4, 5, 15, 16, 17, 18, 19, 20, 21, 22, 25, 29, 30, 31, 33, 34, 35, 39, 41], "constain": 21, "constant": [5, 21, 41], "constrain": [1, 6, 37], "constraint": [19, 23, 33, 35, 36, 37], "construct": [6, 19], "constructor": [6, 12, 14, 22, 24, 35], "consum": [21, 30], "consumpt": 12, "contain": [1, 3, 4, 5, 6, 12, 13, 17, 19, 20, 21, 22, 24, 25, 26, 27, 28, 33, 35, 39, 41], "containsnoloop": [3, 6, 19, 22, 39, 40], "content": [1, 5, 18, 19, 20, 21, 22, 23, 26, 27, 28, 32, 39, 41], "contentfilt": 24, "contentfilterel": 24, "contentfilterelementresult": 24, "contentfilterresult": 24, "context": [1, 4, 5, 6, 14, 15, 16, 17, 18, 20, 21, 22, 24, 30, 33, 34, 35, 41], "continu": [4, 5, 6, 12, 15, 23, 27, 30], "continuationpoint": [22, 24], "continuationpointss": [39, 40], "contradict": 22, "contrast": [13, 22], "contribut": 24, "contributor": 12, "control": [1, 12, 14, 17, 19, 21, 22, 24], "convei": 31, "conveni": [1, 2, 3, 13, 18, 22, 24, 39], "convent": [17, 35, 39], "convers": [6, 39], "convert": [5, 39, 41], "copi": [0, 1, 5, 12, 13, 16, 17, 19, 21, 22, 25, 26, 30, 33, 35, 37, 39, 41], "copyright": 16, "core": [12, 19, 21, 24, 32], "correct": [13, 19, 23, 39], "correctli": 19, "correspond": [3, 6, 13, 19, 20, 22, 27, 37, 39], "could": [1, 6, 13, 19, 22, 23, 35, 39], "council": 12, "count": [21, 39], "counter": [22, 24], "coupl": 21, "cours": 35, "cover": [6, 17, 35], "coverag": 0, "cp": 0, "cpu": 39, "cr": 3, "crankshaft": 6, "crash": 19, "creat": [0, 1, 5, 6, 7, 8, 9, 10, 11, 12, 15, 17, 18, 19, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 34, 35, 37, 39, 41], "createcallback": 4, "createclientnam": [39, 40], "createdat": [39, 40], "creatednodeid": 13, "createev": 31, "createmonitor": 21, "createmonitoreditem": 6, "createmonitoreditemscount": [39, 40], "createmonitoreditemsrequest": 24, "createmonitoreditemsrespons": 24, "createoptionalchild": 19, "createsess": 6, "createsessionid": [39, 40], "createsessionrequest": 24, "createsessionrespons": 24, "createsigningrequest": 20, "createsubscript": 6, "createsubscriptioncount": [39, 40], "createsubscriptionrequest": 24, "createsubscriptionrespons": 24, "creation": [4, 6, 21, 27, 28, 37], "creativ": 13, "creativecommon": 13, "credenti": 6, "criteria": [6, 22, 23, 39, 40], "criteriatyp": [39, 40], "critic": [1, 23], "crypto": [1, 20], "cryptograph": [5, 39, 41], "cryptographi": [6, 24], "cryptomodul": 20, "csr": [20, 22], "csv": [13, 23], "ctrl": [13, 22, 32], "ctt": 0, "cumulatedchannelcount": 5, "cumulatedsessioncount": [5, 39, 40], "cumulatedsubscriptioncount": [39, 40], "currenc": [39, 40], "currencyunittyp": 24, "current": [0, 1, 4, 5, 6, 12, 13, 17, 19, 21, 22, 23, 25, 28, 30, 32, 34, 39, 41], "currentchannelcount": 5, "currentkeepalivecount": [39, 40], "currentlifetimecount": [39, 40], "currentmonitoreditemscount": [39, 40], "currentnam": 30, "currentnodeid": 30, "currentpublishrequestsinqueu": [39, 40], "currentsessioncount": [5, 39, 40], "currentsubscriptioncount": [39, 40], "currentsubscriptionscount": [39, 40], "currenttim": [39, 40], "currenttimenodeid": 34, "curs": 0, "custom": [0, 6, 12, 13, 18, 19, 24, 33, 39], "custom_datatyp": [1, 22], "customdatatyp": [1, 22], "customtyp": 39, "cxx": 0, "cycl": 17, "cyclic": [1, 17, 22], "cyclicdataset": [39, 40], "cypher": 20, "d": [17, 26], "dai": [25, 39], "daili": 0, "data": [0, 2, 5, 12, 13, 15, 17, 18, 19, 20, 21, 23, 24, 25, 27, 28, 29, 31, 33, 36, 37, 38, 41], "data1": [5, 39, 41], "data2": [5, 39, 41], "data3": [5, 39, 41], "data4": [5, 39, 41], "dataarrai": 39, "dataarrays": 39, "databas": 23, "datachang": [4, 19, 22], "datachangefilt": 24, "datachangenotif": 24, "datachangenotificationcallback": 34, "datachangenotificationscount": [39, 40], "datachangetrigg": 24, "datadiagnosticinfo": [39, 40], "datadiagnosticinfoss": [39, 40], "dataencod": [39, 40], "datagram": [21, 27], "datagramconnectiontransport2datatyp": 24, "datagramconnectiontransportdatatyp": 24, "datagramdatasetreadertransportdatatyp": 24, "datagramqo": [39, 40], "datagramqoss": [39, 40], "datagramwritergrouptransport2datatyp": 24, "datagramwritergrouptransportdatatyp": 24, "dataset": [21, 28], "datasetclass": [39, 40], "datasetclassess": [39, 40], "datasetclassid": [39, 40], "datasetfield": [24, 27], "datasetfieldconfig": [21, 27], "datasetfieldcontentmask": [21, 24], "datasetfieldflag": 24, "datasetfieldid": [27, 39, 40], "datasetfieldtyp": [21, 27], "datasetfold": [39, 40], "datasetfolders": [39, 40], "datasetmessag": [21, 28], "datasetmessagecontentmask": [39, 40], "datasetmetadata": [21, 28, 39, 40], "datasetmetadatatyp": 24, "datasetmirror": 21, "datasetnam": [21, 39, 40], "datasetoffset": [39, 40], "datasetord": [39, 40], "datasetorderingtyp": 24, "datasetread": [0, 24, 28, 39, 40], "datasetreaderconfig": 21, "datasetreaderdatatyp": 24, "datasetreaderid": 28, "datasetreaderidentifi": 21, "datasetreaderproperti": [39, 40], "datasetreaderpropertiess": [39, 40], "datasetreaderss": [39, 40], "datasetsourc": [39, 40], "datasetwrit": [24, 27, 39, 40], "datasetwriterconfig": [21, 27], "datasetwriterdatatyp": 24, "datasetwriterid": [21, 27, 28, 39, 40], "datasetwriterproperti": [21, 39, 40], "datasetwriterpropertiess": [39, 40], "datasetwriterss": [39, 40], "datasetwritertyp": 21, "datasourc": [13, 19, 22, 30], "datastatuscod": [39, 40], "datastatuscodess": [39, 40], "datatoreturn": [39, 40], "datatoreturns": [39, 40], "datatyp": [1, 3, 5, 6, 13, 19, 22, 26, 28, 33, 36, 37, 39, 40, 41], "datatypeattribut": 24, "datatypedefinit": 6, "datatypedescript": 24, "datatypeid": [39, 40], "datatypenod": [14, 24], "datatypeschemahead": 24, "datavalu": [2, 6, 19, 22, 24, 30, 40], "datavaluess": [39, 40], "datavari": 6, "date": [1, 16, 17, 22, 25, 39], "datestr": 24, "datetim": [17, 24, 28, 30], "datetime_localtimeutcoffset": 17, "datetime_now": 17, "datetime_nowmonoton": 17, "daylightsavinginoffset": [39, 40], "dbl_max": 39, "dbl_min": 39, "dc": 17, "dcmake_build_typ": 13, "dcmake_install_prefix": 0, "de": [20, 23], "deactiv": 29, "deadband": 23, "deadbandtyp": 24, "deadbandvalu": [39, 40], "deal": 22, "dealloc": 39, "deauthent": 15, "debian": 24, "debug": [13, 24], "debuild": 0, "decid": 21, "decimaldatatyp": 24, "decimalstr": 24, "declar": [19, 24, 39], "decod": [1, 13, 21, 22, 23, 24, 27, 28], "decodedlength": 39, "decreas": 39, "decrypt": [1, 16, 20, 21, 22], "dedic": [1, 12, 21], "deep": [1, 5, 19, 21, 22, 39, 41], "default": [0, 1, 2, 4, 6, 13, 17, 18, 19, 21, 22, 24, 32, 36, 37, 39], "defaultencodingid": [39, 40], "defaultsecuritykeyservic": [39, 40], "defaultsecuritykeyservicess": [39, 40], "defin": [0, 1, 2, 3, 4, 5, 6, 12, 13, 16, 17, 18, 19, 20, 21, 22, 23, 26, 27, 28, 30, 31, 33, 34, 35, 36, 39, 40, 41], "defineobjecttyp": 35, "definit": [0, 2, 6, 12, 13, 19, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "degre": 1, "dei": 17, "delai": [1, 6, 17, 21, 22], "delet": [1, 4, 5, 6, 15, 19, 20, 21, 23, 24, 27, 28, 31, 32, 39, 41], "deleteattimedatacap": 22, "deleteattimedetail": 24, "deletebidirect": [2, 22, 39, 40], "deletecallback": 4, "deletecontext": 20, "deleteeventcap": 22, "deleteeventdetail": 24, "deleteeventnod": 22, "deletemonitor": 21, "deletemonitoreditem": 6, "deletemonitoreditemscount": [39, 40], "deletemonitoreditemsrequest": 24, "deletemonitoreditemsrespons": 24, "deletenod": [6, 19], "deletenodescount": [39, 40], "deletenodesitem": 24, "deletenodesrequest": 24, "deletenodesrespons": 24, "deleterawcap": 22, "deleterawmodifieddetail": 24, "deleterefer": [6, 22], "deletereferencescount": [39, 40], "deletereferencesitem": 24, "deletereferencesrequest": 24, "deletereferencesrespons": 24, "deletesubscript": [6, 39, 40], "deletesubscriptionscount": [39, 40], "deletesubscriptionsrequest": 24, "deletesubscriptionsrespons": 24, "deletetargetrefer": [2, 39, 40], "deliv": [22, 23], "delta": 33, "demo": 27, "demonstr": [27, 28], "denomin": [39, 40], "denot": 26, "dep": 13, "depend": [0, 1, 5, 6, 12, 13, 17, 19, 20, 22, 23, 29], "depends_n": 13, "depends_target": 13, "depends_typ": 13, "deprec": [13, 17, 20], "der": [16, 20, 24], "deref": 13, "deregist": [17, 22], "deregistereventsourc": 17, "deregisterinterrupt": 17, "deregistr": 17, "deriv": [23, 35, 39], "describ": [0, 5, 6, 13, 17, 21, 27, 28, 39, 41], "descript": [1, 3, 6, 13, 19, 21, 24, 28, 31, 33, 36, 39, 40], "design": [1, 17], "destin": [1, 19, 39], "destroi": [19, 21, 22], "destructor": [6, 12, 14, 22, 24, 35], "detach": 15, "detail": [1, 2, 6, 12, 13, 17, 20, 22, 23, 24, 27, 32, 39], "detect": [6, 22, 35], "determin": [13, 22, 23, 39], "dev": [0, 17], "develop": [0, 6, 12, 17, 19, 32], "devic": [6, 12, 17, 23, 27, 28, 35], "devicetyp": 35, "devicetypeid": 35, "dexpi": 13, "di": 13, "diagnost": [17, 39], "diagnosticinfo": [24, 40], "diagnosticinfoss": [39, 40], "diagnosticslevel": 24, "dialog": 23, "did": 23, "differ": [0, 1, 3, 4, 13, 17, 19, 21, 22, 28, 30, 36, 39], "different": 1, "differenti": [6, 39], "digit": [5, 17, 41], "dimens": [24, 26, 33, 36, 37, 39], "dimension": [6, 26, 33, 39], "dimensionss": 39, "direct": [6, 17, 19, 21, 23], "directli": [1, 4, 22, 27, 39], "directori": 0, "disabl": [0, 1, 6, 17, 21, 22, 23, 29, 39], "disablecount": [39, 40], "disabledmonitoreditemcount": [39, 40], "discard": [6, 19], "discardedmessagecount": [39, 40], "discardoldest": [4, 39, 40], "disciplin": 17, "disconnect": [1, 6, 23, 25], "discourag": 13, "discov": 6, "discoveri": [0, 24], "discoveryaddress": [39, 40], "discoveryannouncer": [39, 40], "discoverycleanuptimeout": 22, "discoveryconfigur": [39, 40], "discoveryconfigurations": [39, 40], "discoverymaxmessages": [39, 40], "discoveryprofileuri": [39, 40], "discoveryserv": 22, "discoveryserverurl": 22, "discoveryurl": [6, 23, 39, 40], "discoveryurlss": [39, 40], "discrep": 17, "discuss": [6, 12], "dispatch": [1, 39], "displai": [0, 6], "displaynam": [3, 6, 13, 19, 22, 28, 29, 30, 31, 33, 35, 36, 37, 39, 40], "disregard": [5, 39], "dissemin": 12, "distinct": 28, "distinguish": 17, "distribut": [0, 12, 16, 21], "dive": 39, "dll": 0, "dn": [5, 41], "do": [1, 6, 12, 13, 19, 21, 22, 23, 31, 34], "doc": [0, 39], "doc_pdf": 0, "docker": 24, "document": [0, 5, 12, 17, 32, 39, 41], "doe": [0, 1, 4, 5, 6, 13, 16, 17, 19, 22, 23, 31, 32, 34, 37, 39, 41], "doesn": [1, 13, 22], "domain": [6, 12, 17], "domin": 23, "don": [1, 2, 4, 5, 19, 20, 22, 32, 33, 39, 41], "done": [0, 1, 13, 19, 20, 21], "doubl": [3, 6, 17, 21, 24, 36, 37], "doublecomplexnumbertyp": 24, "down": [1, 5, 6, 22, 23, 41], "downdload": 32, "download": [0, 12, 13], "downtim": 1, "drive": [12, 32], "driven": 1, "drop": 17, "dry": 17, "dsf": 27, "dsfid": 21, "dsrid": 21, "dst": [1, 5, 19, 21, 39, 41], "dsw": 27, "dswid": 21, "dt": 25, "dtattr": 35, "dua_build_exampl": 13, "dua_information_model_autoload": 13, "dua_namespace_zero": 13, "due": [0, 23, 39], "dump": 0, "duplex": 24, "duplic": 19, "durat": 24, "durationstr": 24, "dure": [1, 4, 6, 13, 17, 19, 22, 27, 37], "dv": 26, "dynam": [0, 19, 20, 22, 26, 39], "e": [1, 5, 6, 12, 13, 17, 19, 21, 22, 23, 25, 26, 27, 39, 41], "each": [1, 2, 3, 5, 6, 12, 13, 17, 19, 20, 21, 22, 23, 28, 30, 33, 34, 35, 39, 41], "earli": [1, 22], "easi": [13, 25], "easiest": 2, "easili": 13, "easy_instal": 0, "eccencryptedsecret": 24, "ecomponenttyp": 21, "ed": [19, 39], "edit": [0, 19, 23], "effect": [6, 13, 17], "effici": [6, 21], "eg": 0, "egcc": 0, "eight": 6, "either": [1, 6, 17, 19, 22, 23, 39], "el": 17, "elaps": [1, 17], "electr": 6, "element": [1, 5, 6, 7, 8, 9, 10, 11, 23, 27, 33, 35, 39, 40], "elementdiagnosticinfo": [39, 40], "elementdiagnosticinfoss": [39, 40], "elementindex": [39, 40], "elementoperand": 24, "elementresult": [39, 40], "elementresultss": [39, 40], "elementss": [35, 39, 40], "elig": 17, "els": [13, 18, 22, 25, 27, 28, 29, 31], "email": 12, "embed": [0, 12, 21, 39], "emit": [12, 22, 24, 38], "emonitoringtyp": 21, "empti": [1, 5, 13, 17, 19, 21, 22, 37, 39, 41], "en": [13, 20, 22, 24, 28, 29, 30, 31, 33, 35, 36, 37], "enabl": [0, 6, 17, 21, 22, 23, 27, 28, 29, 32, 37, 39, 40], "enablecount": [39, 40], "enabledeltafram": 21, "enabledst": [22, 29], "enabledstatefield": 29, "enabledstateid": 29, "enabledstateidfield": 29, "enableinformationmodelmethod": 21, "enableretransmissionqueu": 22, "encapsul": [21, 27], "encod": [6, 12, 13, 19, 20, 23, 24, 26, 27, 40], "encodingmimetyp": [21, 27], "encount": [13, 22], "encrypt": [0, 6, 12, 20, 21, 24], "encryptingkei": [20, 21], "encryptionalgorithm": [20, 39, 40], "end": [5, 6, 21, 22, 23, 39, 41], "endif": [1, 2, 5, 15, 16, 17, 18, 19, 20, 21, 22, 23, 26, 39, 41], "endpoint": [1, 6, 15, 20, 22, 24, 39, 40], "endpointconfigur": 24, "endpointdescript": [1, 15, 24], "endpointdescriptionss": 1, "endpointss": [22, 39, 40], "endpointtyp": 24, "endpointurl": [1, 5, 21, 39, 40, 41], "endpointurllist": [39, 40], "endpointurllistdatatyp": 24, "endpointurllists": [39, 40], "endtim": [2, 39, 40], "endtimestamp": [2, 15], "enforc": 37, "engineeringunit": [23, 39, 40], "enough": [4, 17, 23, 31], "enqueu": 22, "ensur": [1, 5, 6, 19, 22, 39, 41], "entail": 6, "enter": 29, "enteringackedstatecallback": 29, "enteringconfirmedstatecallback": 29, "enteringenabledstatecallback": 29, "entir": [5, 6, 17, 26, 39, 41], "entiti": 27, "entri": [5, 19, 21, 23, 33, 39, 41], "entropi": [5, 41], "enum": [5, 17, 18, 19, 21, 22, 39, 40], "enumdatatyp": [39, 40], "enumdatatypess": [39, 40], "enumdefinit": 24, "enumdescript": 24, "enumer": 24, "enumfield": 24, "enumvaluetyp": 24, "environ": [0, 17, 25, 32], "eo": 39, "ephemeralkeytyp": 24, "epilogu": 22, "epoch": 39, "epol": 17, "eq": 26, "equal": [1, 5, 6, 39, 41], "equival": [17, 22, 23], "error": [0, 1, 2, 5, 6, 13, 17, 19, 20, 21, 22, 23, 27, 28, 36, 39, 41], "errorcount": [39, 40], "errror": 20, "escap": 24, "especi": [1, 6, 13, 22, 35], "essenti": 0, "establish": [1, 5, 6, 12, 17, 22, 23], "etc": [0, 17, 22], "eth": [5, 27, 28, 41], "eth0": 17, "ethernet": [6, 14, 24, 28], "ethertyp": 17, "euinform": 24, "eurang": [39, 40], "evalu": 22, "even": [6, 13, 32, 39], "event": [0, 1, 4, 5, 6, 12, 14, 19, 21, 23, 24, 34, 38, 39, 40, 41], "eventdata": [39, 40], "eventdatas": [39, 40], "eventfield": [4, 22, 39, 40], "eventfieldlist": 24, "eventfieldss": [39, 40], "eventfilt": [5, 7, 8, 9, 10, 11, 22, 24, 41], "eventfilterresult": 24, "eventid": [22, 31, 39, 40], "eventidss": [39, 40], "eventloop": [1, 17, 21, 24], "eventlop": [14, 24], "eventmessag": 31, "eventnodeid": [22, 31], "eventnotfi": 21, "eventnotifi": [3, 4, 6, 19, 22, 24, 29, 39, 40], "eventnotificationlist": 24, "eventnotificationscount": [39, 40], "eventnotifiertyp": 24, "eventqueueoverflowcount": [39, 40], "eventsever": 31, "eventsourc": 17, "eventsourcenam": [17, 31], "eventsourcetyp": 17, "eventss": [39, 40], "eventtempl": 21, "eventtim": 31, "eventtyp": [7, 8, 9, 10, 11, 22, 23, 31], "eventu": [19, 22], "everi": [0, 1, 4, 5, 6, 17, 18, 19, 21, 22, 26, 30, 33, 35, 36, 39, 41], "everywher": 17, "ex": [0, 25, 32], "exact": [6, 19, 39], "exactli": [4, 27, 35], "examin": [13, 32], "exampl": [1, 3, 6, 12, 13, 15, 17, 18, 19, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 35, 37, 38, 39], "example_nodeset": 13, "exce": [6, 23], "exceed": 23, "except": [1, 19, 26], "exceptiondeviationformat": 24, "exchang": [6, 12, 21, 32], "exclud": [5, 41], "execut": [0, 1, 3, 5, 6, 17, 19, 22, 23, 30, 31, 32, 33, 39, 40, 41], "exist": [1, 5, 6, 12, 13, 19, 21, 22, 23, 27, 39, 41], "existingnodesetxml": 13, "exit": 13, "exit_failur": [27, 28], "exit_success": [27, 28], "expandedid": 19, "expandednodeid": [6, 19, 24], "expect": [17, 19, 22, 23], "expectedencod": 21, "experiment": [0, 24], "expert": 13, "expir": [16, 21, 22, 23], "expirydatetim": 16, "explain": [0, 1], "explicitli": [1, 22, 33], "expon": [39, 40], "export": [0, 13], "expos": [1, 6, 19, 22, 29], "express": [21, 24, 39], "extend": [5, 6, 21, 22, 27, 39, 41], "extendedflags1": 21, "extens": [5, 6, 13, 21, 23, 27, 39, 41], "extensionfield": [39, 40], "extensionfieldss": [39, 40], "extensionobject": [13, 24], "extern": [0, 1, 5, 6, 13, 17, 19, 21, 22, 30, 39, 41], "externaldatavalu": 21, "externaleventloop": [1, 22], "externalnodeid": 19, "externalvalu": 30, "extract": [17, 39], "f": [5, 41], "f2a9603db28a": 39, "facet": 12, "factori": 17, "fail": [1, 5, 13, 17, 19, 22, 23, 25, 29, 31, 37, 39, 41], "failur": [6, 20, 23, 39], "fairli": 13, "fals": [1, 13, 17, 22, 29, 35, 36, 39], "far": 6, "fast": [13, 19, 21], "faster": 6, "fatal": 0, "fdi": 13, "fdt": 13, "featur": [6, 21, 22, 24, 39], "few": 17, "field": [1, 13, 19, 21, 22, 23, 24, 29, 31, 38, 39, 40], "fieldaddresult": 21, "fieldaddresultss": 21, "fieldconfig": 21, "fielddevic": 13, "fieldflag": [39, 40], "fieldid": 21, "fieldmetadata": 24, "fieldnam": 22, "fieldnamealia": [21, 27], "fieldssiz": [28, 39, 40], "fieldtargetdatatyp": [21, 24], "fig": [6, 13], "figur": [6, 21, 27], "file": [0, 13, 16, 18, 22, 23, 25, 30, 32, 39], "file_bsd": 13, "file_csv": 13, "file_n": 13, "filehead": [39, 40], "fileheaders": [39, 40], "files_bsd": 13, "fill": [4, 20, 22], "filltestdatasetmetadata": 28, "filter": [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 17, 21, 22, 23, 28, 31, 39, 40, 41], "filteroper": [7, 8, 9, 10, 11, 24], "filteroperand": [7, 8, 9, 10, 11, 39, 40], "filteroperandss": [39, 40], "filterresult": [39, 40], "final": [13, 19], "find": [0, 5, 13, 22, 35, 41], "find_packag": 0, "findserv": [1, 6], "findserversonnetwork": 6, "findserversonnetworkrequest": [22, 24], "findserversonnetworkrespons": 24, "findserversrequest": [22, 24], "findserversrespons": 24, "finish": [1, 17, 22, 23], "first": [0, 1, 5, 6, 12, 13, 17, 19, 20, 22, 31, 32, 36, 39, 41], "fit": [19, 32, 39], "five": 21, "fix": [13, 19, 21, 39], "flag": [0, 13, 17, 21, 22, 27, 39], "flavour": 6, "flexibl": [2, 32], "float": [6, 24], "flow": [1, 17, 22], "flt_max": 39, "flt_min": 39, "focu": [6, 35], "focus": 13, "folder": [0, 1, 13, 22, 32], "folderbrowsenam": 28, "folderid": 28, "foldernam": 28, "follow": [0, 1, 2, 3, 4, 5, 6, 12, 13, 17, 18, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "footprint": 0, "forbid": 36, "forc": 1, "forget": [19, 22], "form": [5, 6, 16, 21, 41], "format": [0, 1, 5, 16, 18, 19, 22, 23, 39, 41], "forward": [1, 4, 17, 19, 22, 24, 39], "found": [0, 1, 5, 13, 19, 20, 22, 23, 25, 27, 39, 41], "foundat": [0, 12], "foundindex": 22, "founduri": 22, "four": [28, 39], "frame": [17, 22], "framework": [0, 6, 32], "fraunhof": 16, "free": [1, 12, 17, 20, 22, 39], "freed": [1, 5, 17, 19, 22, 39, 41], "freedom": 1, "freenetworkbuff": 17, "frequent": 22, "fresh": [0, 17, 19, 39], "freshli": 19, "from": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 35, 37, 39, 41], "frontend": 32, "frozen": 21, "full": [0, 1, 6, 13, 19, 22, 26], "fulli": [1, 5, 17], "function": [0, 5, 6, 12, 13, 17, 19, 20, 21, 24, 25, 26, 27, 29, 30, 35, 36, 37, 39, 41], "functon": 17, "further": [6, 20, 24, 30, 38, 39], "furthermor": [0, 1, 6, 12, 22, 35], "futur": [13, 39], "g": [0, 1, 5, 6, 12, 13, 17, 19, 21, 22, 26, 27, 39, 41], "gatewayserveruri": [39, 40], "gcc": [0, 22, 25, 32], "gear": 6, "gener": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 17, 19, 20, 21, 22, 23, 24, 26, 27, 29, 32, 37, 38], "generate_datatyp": 13, "generateattr": 31, "generatechildnodeid": 19, "generateeventmethodcallback": 31, "generatekei": 20, "generatenonc": 20, "genericattribut": 24, "genericattributevalu": 24, "get": [0, 1, 2, 4, 16, 17, 19, 20, 21, 22, 24, 30, 32, 35], "getendpoint": [1, 6], "getendpointsrequest": [22, 24], "getendpointsrespons": 24, "getlocalkeylength": 20, "getlocalsignatures": 20, "getnod": 19, "getnodecopi": 19, "getnodefromptr": 19, "getreferencetypeid": 19, "getrejectedlist": 16, "getremoteblocks": 20, "getremotekeylength": 20, "getremoteplaintextblocks": 20, "getremotesignatures": 20, "getsecuritykei": [20, 21], "gettrustlist": 16, "getuseraccesslevel": 15, "getuserexecut": 15, "getuserexecutableonobject": 15, "getuserrightsmask": 15, "giraud": 16, "git": [0, 13], "github": [0, 13], "give": [1, 6, 13, 31], "given": [1, 5, 6, 13, 19, 20, 21, 22, 32, 37, 39, 41], "glass": 13, "global": [13, 14, 17, 22, 24, 39], "glue": [21, 27], "go": [2, 4, 21, 30, 31, 32, 34], "goal": [17, 32], "gok3k": 13, "good": [1, 3, 12, 17, 22, 23, 28, 31, 36, 39], "grace": 5, "gracefulli": 17, "graf": 16, "grant": 15, "graph": 6, "graphic": [0, 27, 32, 35], "graphviz": 0, "greater": 1, "greaterthan": 11, "green": 6, "grei": 6, "group": [0, 5, 16, 17, 20, 21, 27, 28, 41], "grouphead": 27, "groupindex": [39, 40], "groupproperti": [21, 39, 40], "grouppropertiess": [39, 40], "groupvers": [39, 40], "gui": [0, 13, 32], "guid": [0, 5, 24, 26, 32, 41], "h": [0, 1, 13, 16, 17, 18, 22, 25, 26, 27, 28, 30, 32, 33, 34, 36, 37], "ha": [1, 4, 5, 6, 12, 13, 16, 17, 19, 20, 21, 22, 23, 26, 28, 30, 31, 35, 39, 41], "had": 23, "half": 0, "halt": 23, "hand": [5, 41], "handl": [0, 1, 2, 6, 13, 17, 19, 21, 24, 27, 38], "handler": 18, "handshak": 6, "happen": [17, 22], "hard": [5, 13, 21, 22, 41], "hardwar": [0, 21], "harmon": 5, "hasadditionalinfo": 39, "haschild": [5, 41], "hascompon": [6, 13, 29], "haseventsourc": [22, 29], "hash": [6, 13, 19, 39], "hasinnerdiagnosticinfo": 39, "hasinnerstatuscod": 39, "hasinterfac": 6, "haslocal": 39, "haslocalizedtext": 39, "hasmodelingrul": 19, "hasmodellingrul": [13, 22, 35], "hasnamespaceuri": 39, "hasproperti": [5, 6, 13, 22, 41], "hasreftre": 19, "hasserverpicosecond": 39, "hasservertimestamp": [26, 39], "hassourcepicosecond": [26, 39], "hassourcetimestamp": 39, "hasstatu": [26, 36, 39], "hassubtyp": [6, 13, 19], "hassymbolicid": 39, "hastypedef": 22, "hastypedefinit": [6, 13, 35], "hasvalu": [19, 26, 30, 36, 39], "have": [0, 1, 2, 3, 5, 6, 12, 13, 17, 19, 20, 21, 22, 23, 25, 31, 32, 33, 34, 35, 36, 37, 39, 41], "have_nodeiter_callback": [2, 22], "head": 19, "header": [0, 1, 6, 13, 22, 23], "headerlayouturi": [39, 40], "healthi": 1, "heap": [26, 39], "heatsensor": [5, 41], "hel": 6, "hello": [24, 38, 39], "helloattr": 33, "helloworldmethodcallback": 33, "help": [13, 24, 32], "helper": [6, 24], "henc": [1, 17, 22], "here": [0, 1, 5, 6, 13, 15, 20, 22, 27, 41], "hexadecim": [5, 17, 41], "hexdump": 0, "hi": [17, 21], "hide": 39, "hierarch": [6, 22], "hierarchi": [5, 6, 19, 22, 24, 37, 38, 41], "hierarchialreferencetyp": 22, "hierarchicalrefer": [5, 22, 41], "high": [1, 22, 39, 40], "higher": [1, 5, 17, 39], "highest": 39, "highlevel": [1, 24], "highli": 13, "highlight": 6, "histor": [1, 3, 5, 6, 15, 19, 23, 24, 39, 40], "histori": 23, "historian": 23, "historizingen": 22, "historydata": 24, "historydatabas": 22, "historyev": 24, "historyeventfieldlist": 24, "historymodifieddata": 24, "historyread": 6, "historyreadcount": [39, 40], "historyreaddetail": [39, 40], "historyreadrequest": 24, "historyreadrespons": 24, "historyreadresult": 24, "historyreadvalueid": 24, "historyupd": 6, "historyupdatecount": [39, 40], "historyupdatedetail": 24, "historyupdatedetailss": [39, 40], "historyupdaterequest": 24, "historyupdaterespons": 24, "historyupdateresult": 24, "historyupdatetyp": 24, "hold": [21, 25, 26, 31], "homebrew": 0, "hook": 22, "hope": 1, "host": [1, 5, 6, 17, 41], "hostnam": [5, 6, 17, 22, 23, 41], "hour": [25, 39], "housekeep": 1, "how": [0, 1, 5, 6, 13, 17, 21, 22, 30, 36, 39], "howev": [1, 6, 13, 21, 22, 29, 39], "html": 0, "http": [0, 6, 12, 13, 16, 27, 28, 32, 39], "human": [0, 22, 39], "humand": 39, "hyphen": [5, 17, 41], "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "i4aa": 13, "ia": 13, "id": [0, 1, 6, 13, 17, 19, 21, 22, 23, 24, 27, 28, 29, 31, 39, 41], "id1": 26, "id2": 26, "id3": 26, "id4": 26, "id497799835": 0, "ident": [1, 6, 13, 20, 22, 23, 39], "identifi": [1, 5, 6, 13, 17, 19, 20, 21, 22, 26, 27, 29, 30, 31, 33, 35, 39, 40, 41], "identifiertyp": 39, "identitycriteriatyp": 24, "identitymappingruletyp": 24, "identitytoken": 1, "idfield": 29, "idroot": 19, "idtreeentri": 19, "idtyp": [21, 24, 27, 28], "idvalu": 29, "iec": 12, "ieee": 39, "ifdef": [1, 5, 15, 19, 20, 21, 22, 26, 39, 41], "ifndef": [2, 5, 16, 22, 23, 41], "ignor": [1, 13], "ignorefil": 13, "ijt": 13, "illeg": 6, "im": 17, "imagebmp": 24, "imagegif": 24, "imagejpg": 24, "imagepng": 24, "imagin": 21, "imaginari": [39, 40], "immedi": [6, 13, 17, 19], "immut": 19, "impact": [5, 17], "implement": [0, 1, 2, 5, 6, 12, 14, 19, 20, 22, 23, 24, 30, 32, 36, 39, 41], "impli": [5, 41], "implicit": 6, "import": [6, 13, 17, 19, 29], "impos": 23, "improv": [5, 12, 41], "inact": 29, "inactivitycallback": 1, "inaddr_ani": 17, "inbuf": 39, "incattr": 33, "incint32arraymethodcallback": 33, "incint32arrayvalu": 33, "includ": [0, 1, 2, 5, 12, 13, 16, 22, 25, 26, 27, 28, 30, 32, 33, 34, 36, 37, 39, 41], "includesourcetimestamp": 19, "includesubtyp": [35, 39, 40], "incom": [1, 6, 17, 32], "incomplet": 23, "increas": [24, 38, 39], "increat": 33, "increment": 33, "incur": 19, "indatatyp": [2, 3], "independ": [6, 12, 17, 21, 22], "index": [2, 5, 6, 7, 9, 10, 11, 13, 19, 22, 23, 24, 41], "indexrang": [2, 5, 7, 8, 9, 10, 11, 39, 40, 41], "indic": [1, 2, 3, 4, 5, 6, 13, 17, 19, 20, 22, 35, 39, 41], "indirect": 19, "indirectli": 27, "individu": [0, 1, 6, 12, 17, 22, 34], "induc": 6, "industri": [12, 30], "infer": 13, "infinit": 13, "influenc": [0, 21], "info": [0, 13], "inform": [0, 1, 5, 12, 13, 17, 19, 20, 24, 26, 27, 28, 30, 31, 32, 33, 36, 38, 39, 41], "informationmodel": 0, "infrastructur": [12, 21], "inherit": [12, 13, 19, 35], "init": 13, "initi": [0, 1, 5, 6, 12, 13, 17, 19, 20, 21, 22, 23, 28, 36, 39, 41], "initialhashvalu": 39, "inlin": [19, 22, 39], "innerdiagnosticinfo": 39, "innerstatuscod": 39, "inp": [7, 8, 9, 10, 11], "input": [2, 3, 6, 7, 8, 9, 10, 11, 19, 21, 22, 23, 31, 33, 39], "inputargu": [6, 22, 33, 39, 40], "inputargumentdiagnosticinfo": [39, 40], "inputargumentdiagnosticinfoss": [39, 40], "inputargumentresult": [39, 40], "inputargumentresultss": [39, 40], "inputargumentsoutnewnodeid": 22, "inputargumentsrequestednewnodeid": 22, "inputargumentss": [22, 39, 40], "inputarrai": 33, "inputprocidedbi": 13, "inputs": [2, 3, 19, 31, 33], "inputstr": 33, "insert": [5, 6, 15, 19, 22, 23, 39, 41], "insertannotationscap": 22, "insertdatacap": 22, "inserteventcap": 22, "insertnod": 19, "insid": [17, 19, 21, 24, 27, 29], "inspect": [13, 27], "instal": [0, 32], "instanc": [1, 5, 6, 17, 20, 21, 22, 24, 29, 35, 37, 39, 41], "instancedeclar": 22, "instanceinfo": 17, "instanti": [1, 6, 12, 13, 17, 19, 22, 24, 33, 37, 38], "instead": [0, 1, 6, 13, 21, 22, 33, 34, 39], "instruct": [0, 32], "int": [5, 13, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41], "int16": 24, "int16_t": 39, "int32": [3, 6, 17, 22, 24, 25, 26, 28, 33, 36], "int32_t": 39, "int64": [10, 11, 24, 28], "int64_t": 39, "int8_t": 39, "intact": 1, "integ": [19, 26, 33, 36, 39], "integerid": 24, "integr": [6, 12, 32, 35], "intend": [0, 19, 21, 39], "interact": [6, 12, 19, 24, 26, 39], "intercept": 17, "interest": [2, 6, 21, 28, 29, 31, 34], "interfac": [0, 6, 17, 21, 22, 27, 28, 37, 39], "interfaceadminstatu": 24, "interfaceoperstatu": 24, "intern": [0, 1, 5, 6, 13, 16, 17, 19, 21, 22, 23, 25, 29, 30, 31, 32, 33, 39, 41], "interoper": 22, "interpret": 37, "interrupt": [0, 14, 22, 23, 24], "interruptcontext": 17, "interrupthandl": 17, "interruptmanag": 17, "interv": [1, 17, 19, 21, 22, 34, 39], "interval_m": [1, 17, 21, 22], "intial": 1, "introduc": [5, 6], "introduct": 24, "introspect": 6, "invalid": [1, 5, 23, 41], "invari": 39, "invers": [5, 41], "inversenam": [3, 6, 13, 19, 22, 39, 40], "invit": 12, "invocationcreationtim": [39, 40], "invok": [6, 22], "iosb": 16, "ip": [5, 17, 26, 41], "ipv4": 17, "ipv6": [5, 17, 41], "irc": 12, "isa95": 13, "isabstract": [3, 6, 13, 19, 22, 39, 40], "isarrai": 39, "isasync": 22, "isconnect": 21, "isdeletemodifi": [15, 39, 40], "isdynam": [19, 22], "isforward": [2, 13, 19, 22, 39, 40], "isinvers": [2, 19, 22, 35, 39, 40], "iso": 6, "ison": 13, "isonlin": [39, 40], "isopt": [39, 40], "isreadmodifi": [39, 40], "isserverannounc": 22, "issu": [1, 6, 12, 19, 24], "issuedidentitytoken": 24, "issuedtokentyp": [39, 40], "issuer": 23, "issuercertif": [39, 40], "issuercertificatess": [39, 40], "issuercrl": [39, 40], "issuercrlss": [39, 40], "issuerendpointurl": [39, 40], "istxtreceiv": 22, "istypeof": 19, "item": [4, 6, 15, 22, 23, 29, 31], "itemstempl": 21, "itemstocr": [39, 40], "itemstocreates": [39, 40], "itemstomodifi": [39, 40], "itemstomodifys": [39, 40], "itemtomonitor": [4, 39, 40], "iter": [1, 2, 17, 19, 21, 22], "its": [1, 5, 6, 12, 13, 15, 17, 19, 20, 21, 22, 23, 30, 32, 35, 37, 39, 41], "itself": [0, 5, 12, 13, 19, 39, 41], "itun": 0, "iv": 20, "j": [19, 26], "jan": 39, "januari": 39, "job": 13, "jobcontrol": 13, "joint": 17, "jointli": [6, 12], "json": 24, "json5": 39, "jsondatasetmessagecontentmask": 24, "jsondatasetreadermessagedatatyp": 24, "jsondatasetwritermessagedatatyp": 24, "jsonnetworkmessagecontentmask": 24, "jsonwritergroupmessagedatatyp": 24, "just": [0, 6, 13, 17, 22, 30, 35, 39], "keep": [1, 4, 6, 17, 18, 22, 39], "keepalivecountlimit": 22, "keepalivetim": [21, 39, 40], "keepset": 19, "kei": [1, 6, 13, 16, 17, 20, 21, 24, 39, 40], "kept": [13, 19, 39], "kerbero": 6, "kernel": 17, "keyframecount": [21, 27, 39, 40], "keylifetim": [21, 39, 40], "keynonc": [20, 21], "keysiz": 16, "keystorag": 21, "keyvaluemap": [5, 41], "keyvaluepair": 24, "keyword": 13, "kind": [19, 39], "king": 35, "know": [6, 17], "knowledg": [6, 21], "known": [0, 1, 3, 6, 17, 19, 20, 21, 26, 32, 39], "kqueue": 17, "l": 0, "languag": [5, 12, 13, 22, 33, 41], "larg": [6, 12, 23], "larger": [5, 6, 41], "largest": 22, "last": [0, 3, 5, 13, 17, 21, 22, 23, 31, 39, 41], "lastcounterresettim": [39, 40], "lastmethodcal": [39, 40], "lastmethodcalltim": [39, 40], "lastmethodinputargu": [39, 40], "lastmethodinputargumentss": [39, 40], "lastmethodinputvalu": [39, 40], "lastmethodinputvaluess": [39, 40], "lastmethodoutputargu": [39, 40], "lastmethodoutputargumentss": [39, 40], "lastmethodoutputvalu": [39, 40], "lastmethodoutputvaluess": [39, 40], "lastmethodreturnstatu": [39, 40], "lastmethodsessionid": [39, 40], "lasttransitiontim": [39, 40], "late": 17, "latepublishrequestcount": [39, 40], "later": [1, 5, 6, 13, 15, 21, 22, 27, 35, 39], "latest": [1, 22], "latex": 0, "latter": 6, "launchpad": 0, "law": 22, "layer": [5, 6, 12, 19, 22, 23, 28, 32, 39, 41], "layout": [6, 21, 35, 39], "ld": [0, 1], "lead": [5, 13, 22, 39, 41], "leak": 39, "leap": 39, "learn": 6, "least": [1, 23], "leav": [5, 41], "left": [5, 6, 19, 31, 37, 39, 41], "legal": 23, "legibl": 39, "length": [5, 6, 13, 20, 22, 23, 26, 28, 33, 39, 41], "less": [0, 2, 5, 6, 19, 21, 22, 23], "let": 13, "level": [0, 1, 6, 17, 18, 21, 23, 24], "lexer": [5, 41], "lh": [5, 41], "li": [1, 22], "lib": [0, 13], "liber": 22, "libmbedtl": 0, "libopen62541": 0, "librari": [1, 12, 24, 25, 32], "libressl": 0, "libsubunit": 0, "licens": [1, 12, 13, 16, 22, 23], "lifecycl": [6, 14, 17, 21, 24, 35, 38, 39], "lifetim": 1, "lifetimecountlimit": 22, "light": 6, "like": [1, 5, 7, 8, 9, 10, 11, 13, 17, 21, 22, 29, 39, 41], "likelihood": 22, "likewis": 13, "limit": [1, 6, 23, 24], "limitalarmtyp": 22, "limitst": 22, "limitvalu": 22, "line": [6, 13, 26], "linear": [5, 19, 41], "link": [0, 1, 6, 13, 17, 19, 21, 22, 27, 28, 39], "linkedstandalonesubscribeddatasetnam": 21, "linkstoadd": [39, 40], "linkstoadds": [39, 40], "linkstoremov": [39, 40], "linkstoremoves": [39, 40], "linux": [0, 17], "list": [0, 1, 5, 6, 12, 13, 17, 19, 21, 22, 23, 28, 36, 39, 41], "listen": [1, 17, 22, 32], "listenhostnam": 1, "listenhostnameslength": 1, "listern": 32, "listofextensionobject": 13, "liter": [13, 23], "literaloperand": 24, "live": [6, 17], "load": [0, 13], "local": [1, 5, 6, 13, 17, 19, 20, 24, 28, 38, 39, 41], "localcertif": 20, "localconnectionconfig": 1, "localeid": [1, 22, 24], "localeidss": [1, 39, 40], "localhost": [1, 22, 25, 32], "localizedtext": [3, 6, 19, 22, 24], "localmaxchunkcount": [5, 41], "localmaxmessages": [5, 41], "localtim": 27, "locat": [1, 5, 21, 22, 27, 39, 41], "lock": 19, "log": [0, 1, 5, 6, 14, 16, 17, 19, 22, 24], "log_stdout": [25, 26, 27, 28, 30, 33, 34, 36, 37], "logcontext": 18, "logger": [1, 5, 16, 17, 18, 20, 41], "logic": [6, 22, 29, 39], "login": [6, 15], "long": [21, 22], "longer": [1, 6, 13, 17, 19, 22, 23, 39], "look": [0, 7, 8, 9, 10, 11, 13, 17, 22, 27, 36, 39], "lookup": [1, 5, 19, 21, 22, 41], "loop": [1, 6, 12, 14, 22, 24, 30], "loopback": 17, "lopen62541": [0, 25, 32], "loss": 22, "lost": [1, 23], "lot": [0, 30, 31, 35], "low": [12, 23, 39, 40], "lower": [23, 39], "lowest": 19, "lowlevel": 32, "lt": 39, "ltd": 35, "lws2_32": [25, 32], "m": [1, 4, 6, 17, 21, 22, 32, 34], "mac": [5, 17, 41], "machin": [6, 23], "machineri": 13, "machinetool": 13, "machinevis": 13, "macro": [0, 3, 6, 18, 24], "made": [1, 19, 21, 26], "mai": [0, 1, 4, 5, 6, 13, 17, 19, 20, 21, 22, 23, 33, 39, 41], "mail": 12, "main": [1, 6, 13, 17, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37], "mainli": [0, 13], "mainloop": 32, "maintain": 6, "major": 12, "majorvers": [39, 40], "make": [0, 1, 2, 6, 13, 19, 20, 21, 22, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39], "makecertificatethumbprint": 20, "makefil": 0, "malloc": [19, 21, 39], "man": 17, "manag": [0, 1, 5, 6, 12, 14, 19, 21, 24, 30, 32], "mandat": [6, 39], "mandatori": [5, 6, 19, 22, 23, 35, 41], "mani": [0, 2, 3, 4, 6, 13, 23, 31, 39], "manifest": 22, "manner": 29, "manual": [0, 1, 13, 19, 20, 22, 23, 24, 29, 32, 35, 38, 39], "manuallydefinepump": 35, "manufactur": 35, "manufacturernam": [13, 35, 39, 40], "manufacturernameid": 35, "map": [1, 13, 17, 19, 21, 22, 24, 28], "mappinguri": [39, 40], "mapsiz": [5, 41], "mark": [0, 12, 16, 22, 35], "mask": [6, 19, 24, 41], "master": [0, 17], "match": [1, 5, 6, 13, 19, 20, 22, 23, 28, 37, 39, 41], "matrix": [26, 36, 39], "matrix_dim": 26, "max": [5, 13, 17, 22, 23, 39, 41], "max_string_length": 13, "maxag": [39, 40], "maxarraylength": [39, 40], "maxasyncoperationqueues": 22, "maxbuffers": [39, 40], "maxbytestringlength": [39, 40], "maxdatasetstoreturn": [39, 40], "maxencapsulateddatasetmessagecount": 21, "maxeventspernod": 22, "maxfuturekeycount": [21, 39, 40], "maximum": [0, 6, 13, 19, 20, 21, 23], "maxkeepalivecount": [1, 39, 40], "maxlifetimecount": [39, 40], "maxmessages": [39, 40], "maxmonitoreditem": 22, "maxmonitoreditemcount": [39, 40], "maxmonitoreditemspercal": 22, "maxmonitoreditemspersubscript": 22, "maxnetworkmessages": [39, 40], "maxnodesperbrows": 22, "maxnodespermethodcal": 22, "maxnodespernodemanag": 22, "maxnodesperread": 22, "maxnodesperregisternod": 22, "maxnodespertranslatebrowsepathstonodeid": 22, "maxnodesperwrit": 22, "maxnotificationsperpublish": [4, 22, 39, 40], "maxpastkeycount": [21, 39, 40], "maxpublishreqpersess": 22, "maxrecordstoreturn": [1, 39, 40], "maxrefer": 22, "maxreferencespernod": 22, "maxreferencestoreturn": [39, 40], "maxrejectedlists": [1, 22], "maxrequestmessages": [39, 40], "maxresponsemessages": [39, 40], "maxretransmissionqueues": 22, "maxreturndatavalu": 22, "maxreturneventvalu": 22, "maxsecurechannel": 22, "maxsecuritytokenlifetim": 22, "maxsess": 22, "maxsessiontimeout": 22, "maxstringlength": [21, 39, 40], "maxsubscript": 22, "maxsubscriptionspersess": 22, "maxtrustlists": [1, 22], "mbed": 0, "mbedtl": 0, "mdn": 22, "mdnsconfig": 22, "mdnsdiscoveryconfigur": 24, "mdnsenabl": 22, "mdnsinterfaceip": 22, "mdnsipaddresslist": 22, "mdnsipaddresslists": 22, "mdnsservernam": [39, 40], "me": 0, "mean": [1, 5, 6, 13, 17, 22, 27, 31, 39, 41], "meaning": 6, "measur": [0, 30, 39], "mechan": [1, 6, 13, 15, 17, 21, 22, 34], "medium": 13, "meet": 23, "mega": 35, "member": [0, 19, 21, 26, 35, 39], "membernam": 39, "memberss": 39, "membertyp": 39, "memcpi": [21, 33], "memori": [1, 5, 16, 17, 19, 20, 22, 23, 26, 30, 39, 41], "memset": [19, 27, 28, 39], "memsiz": 39, "mental": 19, "messag": [0, 1, 5, 7, 8, 9, 10, 11, 12, 13, 17, 18, 20, 21, 22, 23, 24, 26, 27, 28, 29, 31, 32, 39, 40], "messagefield": 29, "messagereceivetimeout": [0, 21, 39, 40], "messagerepeatcount": [39, 40], "messagerepeatdelai": [39, 40], "messagesecuritymod": 24, "messageset": [21, 27, 39, 40], "messagevalu": 29, "meta": [12, 21, 22, 28], "metadata": [6, 13, 21, 28], "metadataproperti": [39, 40], "metadatapropertiess": [39, 40], "metadataqueuenam": [39, 40], "metadataupdatetim": [39, 40], "method": [0, 1, 5, 12, 13, 15, 17, 19, 20, 21, 23, 24, 26, 29, 34, 38, 39, 41], "methodattribut": 24, "methodcallback": [13, 22], "methodcontext": [15, 19, 31, 33], "methodid": [2, 3, 15, 19, 31, 33, 39, 40], "methodnod": [13, 14, 22, 24, 33], "methodnodeid": 22, "methodstocal": [39, 40], "methodstocalls": [39, 40], "micro": 12, "microsec": 39, "microsoft": 0, "middlewar": 21, "might": [0, 5, 6, 17, 23, 35, 39], "millisec": [25, 39], "min": [5, 25, 39, 41], "mind": 39, "mingw": [0, 25, 32], "mingw32": 32, "minim": 24, "minimum": 18, "minimumsamplinginterv": [3, 6, 19, 39, 40], "miniumsamplinginterv": 22, "minorvers": [39, 40], "minsizerel": 0, "minut": 22, "mirror": [0, 21], "misbehav": 5, "misc": [0, 1, 24], "miss": [12, 17, 22, 23], "mitig": [5, 41], "mkdir": 0, "mnattr": 35, "mode": [6, 23], "model": [0, 5, 12, 13, 19, 23, 24, 26, 27, 28, 29, 30, 32, 33, 36, 38, 41], "modelattr": 35, "modelchangestructuredatatyp": 24, "modelchangestructureverbmask": 24, "modelinfo": 13, "modellingrul": 22, "modellingrulesoninst": 22, "modelnam": [13, 35], "modif": [17, 25], "modifi": [0, 1, 5, 6, 19, 22, 41], "modificationinfo": 24, "modificationinfoss": [39, 40], "modificationtim": [39, 40], "modifii": [1, 22], "modifycount": [39, 40], "modifycycliccallback": 17, "modifymonitoreditem": 6, "modifymonitoreditemscount": [39, 40], "modifymonitoreditemsrequest": 24, "modifymonitoreditemsrespons": 24, "modifysubscript": 6, "modifysubscriptioncount": [39, 40], "modifysubscriptionrequest": 24, "modifysubscriptionrespons": 24, "modul": [17, 20], "moment": 13, "moncontext": 4, "monid": 4, "monitor": [0, 4, 6, 12, 21, 22, 23, 29, 31, 34], "monitoreditem": [1, 12, 15, 19, 24, 38, 39, 40], "monitoreditemcontext": [22, 34], "monitoreditemcount": [39, 40], "monitoreditemcreaterequest": 24, "monitoreditemcreateresult": 24, "monitoreditemid": [4, 22, 34, 39, 40], "monitoreditemidss": [39, 40], "monitoreditemmodifyrequest": 24, "monitoreditemmodifyresult": 24, "monitoreditemnotif": 24, "monitoreditemregistercallback": 22, "monitoreditemss": [39, 40], "monitoringinterfac": 21, "monitoringmod": [4, 22, 24], "monitoringparamet": 24, "monitoringqueueoverflowcount": [39, 40], "monoton": 17, "monrequest": 34, "month": [25, 39], "more": [0, 1, 2, 4, 6, 12, 13, 17, 21, 22, 23, 25, 27, 35, 39], "moredataavail": 2, "morenotif": [39, 40], "most": [0, 1, 3, 5, 6, 13, 17, 19, 22, 32, 39], "mostli": [0, 22], "motor": 6, "motorrpm": [13, 35], "motortemperaturevariabletyp": 6, "mount": 23, "move": [1, 22, 23, 39], "mozilla": [12, 16], "mpl": 16, "mplv2": 12, "mqtt": [6, 14, 21, 24], "msg": [17, 18], "mt": 0, "much": [6, 13, 39], "multi": [0, 1, 6, 22, 33], "multicast": [0, 6, 17, 21, 27], "multidimension": 39, "multipl": [0, 17, 19, 21, 22, 23, 24, 39], "multithread": 0, "must": [1, 5, 6, 13, 17, 19, 21, 22, 25, 27, 28, 32, 39, 41], "mutex": [0, 17], "mutlipl": 13, "my": [5, 22, 41], "myclient": 25, "myinput": 33, "myinteg": 36, "myintegernam": 36, "myintegernodeid": 36, "myn": 13, "myoutput": 33, "myserv": 32, "mystr": 36, "myvar": 36, "n": [0, 5, 6, 7, 8, 9, 10, 11, 13, 19, 25, 26, 27, 28, 30, 36, 39, 41], "n1": 39, "n2": 39, "name": [0, 1, 3, 5, 7, 8, 9, 10, 11, 13, 16, 17, 21, 22, 23, 27, 28, 33, 35, 39, 40, 41], "nameroot": 19, "namespac": [0, 2, 5, 13, 19, 22, 26, 39, 40, 41], "namespace0": 0, "namespace_map": 13, "namespaceindex": [2, 5, 22, 26, 28, 29, 39, 41], "namespacess": [39, 40], "namespaceuri": [2, 13, 19, 22, 39, 40], "namespaceuriss": [39, 40], "nametreeentri": 19, "namingruletyp": 24, "nan": 39, "nanosec": 39, "nanosecond": 39, "nativ": 19, "natur": [1, 39], "navig": 6, "necessari": [1, 6, 12, 13, 20, 21, 23, 27, 28, 31], "necessarili": [1, 17, 39], "need": [0, 1, 2, 6, 12, 13, 17, 19, 20, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 34, 36, 39], "neg": 39, "negoti": 22, "negotiationstatu": 24, "neither": 39, "nest": 6, "net": 0, "network": [1, 5, 6, 12, 17, 19, 21, 23, 24, 28, 32, 36, 39, 41], "networkaddressdatatyp": 24, "networkaddressurl": [27, 28], "networkaddressurldatatyp": 24, "networkgroupdatatyp": 24, "networkinterfac": [27, 28, 39, 40], "networklay": 22, "networkmessag": [20, 21, 27, 28], "networkmessagecontentmask": [27, 39, 40], "networkmessagenumb": [39, 40], "networkpath": [39, 40], "networkpathss": [39, 40], "neventfield": 4, "never": [13, 19], "new": [0, 1, 4, 6, 12, 13, 15, 16, 17, 19, 20, 21, 22, 27, 28, 30, 31, 32, 35, 36, 37, 39], "newaccesslevel": 2, "newaccesslevelex": 2, "newarraydimens": 2, "newarraydimensionss": 2, "newbrowsenam": 2, "newcertif": [20, 22], "newcontainsnoloop": 2, "newcontext": 20, "newdatatyp": 2, "newdescript": 2, "newdisplaynam": 2, "newelem": 39, "newer": [0, 32], "neweventnotifi": 2, "newexecut": 2, "newhistor": 2, "newinversenam": 2, "newisabstract": 2, "newli": [13, 17, 21, 22], "newlin": 39, "newmininterv": 2, "newnod": [19, 28], "newnodeclass": 2, "newnodeid": 2, "nework": 17, "newprivatekei": [20, 22], "newsessioncontext": 15, "newsessionid": 15, "newsiz": 39, "newsymmetr": 2, "newuseraccesslevel": 2, "newuserexecut": 2, "newuserwritemask": 2, "newvalu": 2, "newvaluerank": 2, "newwritemask": 2, "next": [1, 6, 13, 17, 19, 21, 22, 27, 39], "nextcyclictim": 17, "nextsequencenumb": [39, 40], "node": [0, 1, 4, 12, 13, 14, 15, 21, 23, 24, 25, 26, 30, 31, 33, 34, 35, 36, 37, 39], "nodeattribut": 24, "nodeattributesmask": 24, "nodeclass": [2, 3, 19, 22, 24, 26], "nodeclassmask": [22, 39, 40], "nodeconstructorcontext": 19, "nodecontext": [15, 19, 22, 29, 30, 34, 35], "nodehead": 19, "nodeid": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 19, 21, 22, 23, 24, 25, 29, 30, 34, 35, 36, 38, 40, 41], "nodeidcontext": 22, "nodelifecycl": 22, "nodemanag": [1, 24], "nodepoint": 19, "noderefer": 24, "nodes": 13, "nodeset": [0, 12, 24], "nodeset2": [0, 13], "nodeset2_v1": 13, "nodeset_compil": 13, "nodesetinject": 24, "nodesetinjector": 13, "nodesetxml": 13, "nodestoadd": [39, 40], "nodestoadds": [39, 40], "nodestobrows": [39, 40], "nodestobrowses": [39, 40], "nodestodelet": [39, 40], "nodestodeletes": [39, 40], "nodestor": [13, 14, 22, 24], "nodestoread": [26, 39, 40], "nodestoreads": [26, 39, 40], "nodestoregist": [39, 40], "nodestoregisters": [39, 40], "nodestounregist": [39, 40], "nodestounregisters": [39, 40], "nodestowrit": [39, 40], "nodestowrites": [39, 40], "nodetyp": [39, 40], "nodetypedescript": 24, "nodetypess": [39, 40], "nodeusercontext": 19, "nodevers": [5, 41], "noel": 16, "non": [0, 1, 3, 5, 13, 17, 19, 21, 22, 23, 39, 41], "nonc": [20, 22, 23], "none": [1, 6, 17, 20, 22], "nonewsess": 1, "nonscalar": 19, "nor": 39, "noreconnect": 1, "normal": [1, 4, 17, 19, 21, 23, 29], "normalizedstr": 24, "nosess": 1, "notabl": [6, 22], "note": [0, 1, 3, 4, 5, 6, 13, 15, 17, 19, 21, 22, 33, 36, 39, 41], "noteset": 13, "noth": [19, 22, 23], "notif": [4, 6, 12, 19, 22, 23, 29, 34], "notifi": [1, 21, 22, 34], "notificationdata": [39, 40], "notificationdatas": [39, 40], "notificationmessag": [6, 24], "notificationread": 19, "notificationscount": [39, 40], "notifylifecyclest": 22, "now": [0, 1, 13, 19, 22, 27, 30, 31, 32, 35, 36, 37], "np": 19, "nr": 39, "ns0": [0, 13, 19], "nsctx": 19, "nsindex": 39, "nsu": 39, "null": [1, 3, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 20, 21, 22, 23, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39, 41], "number": [0, 1, 6, 17, 19, 20, 22, 23, 24, 28, 39], "numer": [6, 17, 19, 22, 23, 29, 39, 40], "numericcod": [39, 40], "numericrang": [5, 22, 24, 41], "numvaluespernod": [2, 39, 40], "o": [6, 24, 25, 32], "o0": 0, "o2": 0, "oattr": [28, 35], "object": [0, 1, 6, 12, 15, 19, 20, 21, 23, 24, 27, 29, 31, 38, 39], "object_attr": [13, 29], "objectattribut": [19, 22, 24], "objectcontext": [15, 19, 31, 33], "objectid": [2, 3, 13, 15, 19, 22, 31, 33, 39, 40], "objectnod": [5, 14, 22, 24, 31, 41], "objecttyp": [6, 13, 19, 22, 31, 35], "objecttypeattribut": 24, "objecttypenod": [14, 24], "observ": [22, 24, 29, 38], "obtain": [6, 16, 23], "occur": [1, 17, 19, 20, 22, 23, 39], "octet": 39, "off": 0, "offici": [0, 13, 19, 39], "offnormalalarmtyp": 29, "offset": [21, 39, 40], "often": [5, 6, 35, 41], "oftyp": [7, 8, 9, 10, 11], "old": 22, "oldcertif": 22, "oldsessioncontext": 15, "oldsessionid": 15, "omit": [5, 13, 19, 21, 35, 39, 41], "onc": [1, 2, 17, 19, 22, 31, 32], "one": [1, 4, 5, 6, 13, 16, 17, 19, 20, 21, 22, 23, 27, 30, 32, 39, 41], "ongo": 6, "onli": [0, 1, 3, 4, 5, 6, 12, 13, 17, 19, 20, 21, 22, 23, 28, 29, 31, 32, 36, 39, 41], "onread": [19, 29, 30], "onto": 31, "onward": 17, "onwrit": [19, 29, 30], "opaqu": [5, 17], "opaquenumericrang": 24, "opc": [0, 1, 2, 3, 4, 5, 13, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 39, 41], "opcfound": [6, 12, 13, 27, 28, 39], "open": [0, 1, 5, 6, 12, 17, 18, 19, 21, 22, 27], "open62541": [6, 13, 16, 17, 19, 23, 25, 26, 27, 28, 30, 32, 33, 34, 36, 37, 39], "open62541_cmake_flag": 0, "open62541sampleappl": 0, "open626541": 19, "openbsd": 24, "openconnect": 17, "openfilemod": 24, "opensc": 13, "opensecurechannel": 6, "opensecurechannelrequest": 24, "opensecurechannelrespons": 24, "openssl": 0, "oper": [0, 1, 2, 4, 5, 6, 12, 15, 17, 19, 20, 21, 23, 24, 30, 39, 41], "operand": 23, "operanddiagnosticinfo": [39, 40], "operanddiagnosticinfoss": [39, 40], "operandstatuscod": [39, 40], "operandstatuscodess": [39, 40], "operatio": 23, "operationresult": [39, 40], "operationresultss": [39, 40], "operationtimeout": [39, 40], "opn": 1, "optim": [0, 5, 31, 41], "option": [1, 3, 5, 6, 13, 17, 19, 21, 22, 24, 28, 32, 39, 41], "optionset": 24, "order": [0, 1, 6, 13, 19, 22, 24, 31, 32, 39], "org": [0, 6, 12, 13, 16, 27, 28, 32, 39], "organ": [12, 19], "orient": [6, 12, 21, 35, 39, 40], "origin": [1, 5, 6, 17, 19, 22, 39, 41], "originid": 22, "other": [1, 6, 13, 15, 17, 19, 21, 22, 23, 25, 26, 27, 39], "otherwis": [1, 13, 17, 19, 20, 21, 22, 39], "our": [0, 12, 13, 30, 31, 39], "out": [0, 2, 5, 6, 13, 17, 19, 20, 22, 23, 26, 27, 29, 32, 39, 41], "outaccesslevel": [2, 22], "outaccesslevelex": [2, 22], "outarraydimens": [2, 22], "outarraydimensionss": 2, "outbrowsenam": [2, 22], "outbuf": 39, "outconditionid": 22, "outcontainsnoloop": [2, 22], "outdat": 22, "outdatatyp": [2, 22], "outderkei": 16, "outdescript": [2, 22], "outdisplaynam": [2, 22], "outev": 22, "outeventid": 22, "outeventnotifi": [2, 22], "outexecut": [2, 22], "outgo": 27, "outhistor": [2, 22], "outhostnam": [5, 41], "outid": 31, "outinversenam": [2, 22], "outisabstract": [2, 22], "outisarrai": 39, "outmembertyp": 39, "outmethodcallback": 22, "outminimumsamplinginterv": 22, "outminsamplinginterv": 2, "outnewnodeid": [2, 3, 22], "outnod": 19, "outnodeclass": [2, 22], "outnodeid": [2, 22, 29], "outoffset": 39, "outoptionalvari": 22, "outpath": [5, 41], "outport": [5, 41], "output": [1, 2, 3, 5, 6, 13, 16, 19, 20, 21, 22, 31, 33, 39, 41], "outputargu": [6, 13, 22, 33, 39, 40], "outputargumentsoutnewnodeid": 22, "outputargumentsrequestednewnodeid": 22, "outputargumentss": [22, 39, 40], "outputarrai": 33, "outputfil": 13, "outputs": [2, 19, 31, 33], "outsid": [16, 17, 19, 23], "outsourc": 22, "outstand": [1, 6, 24], "outstandingpublishrequest": 1, "outsymmetr": [2, 22], "outuseraccesslevel": 2, "outuserexecut": 2, "outuserwritemask": 2, "outvalu": [1, 2, 22], "outvaluerank": [2, 22], "outwritemask": [2, 22], "over": [2, 6, 17, 19, 21, 22, 23, 27, 28, 35, 36, 39], "overal": [3, 5, 19], "overflow": 23, "overhead": 22, "overlay": 39, "overrid": [0, 22], "overridden": [1, 23], "overridevalu": [39, 40], "overridevaluehandl": 24, "overwrit": [1, 20, 22], "overwritten": [5, 21, 22, 23, 39, 41], "own": [0, 1, 13, 17, 19, 21, 30, 31, 32, 39], "p": [5, 21, 39, 41], "p1": [19, 39], "p2": [19, 39], "packag": [17, 24, 27], "packet": [6, 17, 22, 27], "packml": 13, "pad": 39, "page": 17, "pagin": 1, "pair": [6, 22], "paradigm": [13, 35], "parallel": [0, 17], "param": [1, 2, 5, 17, 19, 20, 21, 22, 39, 41], "paramat": 17, "paramet": [1, 4, 6, 13, 17, 20, 21, 22, 23, 24, 27, 28, 39, 40], "parameterss": [39, 40], "parent": [6, 13, 19, 21, 22, 23, 35], "parentnodeid": [2, 3, 13, 22, 29, 30, 36, 39, 40], "parentnodenam": [39, 40], "parentreferencenodeid": [29, 30, 36], "pars": [0, 13, 22, 24, 39], "parser": 24, "parsingresult": 24, "parsingresultss": [39, 40], "part": [1, 3, 5, 6, 13, 17, 20, 21, 22, 23, 27, 32, 39, 41], "part3": 6, "part6": 20, "partial": 1, "particip": 21, "particular": [6, 22], "pass": [0, 1, 13, 15, 17, 19, 20, 21, 22, 23, 31], "passiv": 17, "password": [1, 6, 16, 17, 24, 39, 40], "passwordoptionsmask": 24, "past": [1, 17, 22], "path": [0, 5, 6, 7, 8, 9, 10, 11, 13, 21, 22, 23, 41], "pattern": [6, 26], "payload": 6, "payloadhead": 27, "pcp": [5, 17, 41], "pd": [21, 27], "pdf": 0, "pdsconfig": 21, "pdsid": 21, "pem": [1, 16, 22], "pend": [1, 3], "per": [13, 17, 22, 37], "percentdatabad": [39, 40], "percentdatagood": [39, 40], "perform": [0, 1, 5, 21, 22, 23, 36, 39], "performinsertreplac": [15, 39, 40], "performupdatetyp": 24, "period": [1, 17, 19, 21, 22], "permiss": [21, 23, 39, 40], "permissiontyp": 24, "permit": [6, 22, 23, 39], "perspect": [6, 17], "physic": [6, 24, 38], "pico": 17, "picosecond": 17, "piec": 13, "ping": 17, "pinputdimens": 33, "pip": 0, "pkc": [20, 24], "pkg": 0, "pkg_add": 0, "pkg_check_modul": 0, "pkgconfig": 0, "pki": 16, "place": [2, 13, 19, 20, 22], "plain": 22, "plaintext": 20, "platform": [12, 17, 22, 32], "plc": 13, "plcopen": 13, "pleas": [6, 13, 19, 22, 29], "plu": 12, "plug": 22, "plugin": [0, 1, 5, 12, 16, 17, 21, 22, 24, 25, 26, 27, 28, 30, 33, 34, 36, 37, 38, 41], "pmetadata": 28, "pnem": 13, "pnrio": 13, "point": [1, 5, 6, 12, 13, 17, 18, 19, 20, 21, 22, 23, 30, 35, 37, 39, 41], "pointer": [1, 3, 5, 13, 14, 16, 17, 20, 21, 22, 24, 33, 34, 39, 41], "pointerfre": 39, "pointtypeid": 37, "pointvariableid": 37, "polici": [1, 12, 14, 20, 21, 23, 24], "policycontext": 20, "policyid": [39, 40], "policyuri": 20, "poll": [17, 34], "port": [0, 1, 5, 6, 17, 22, 32, 41], "portablenodeid": 24, "portablequalifiednam": 24, "posit": [1, 5, 6, 13, 22, 41], "posix": [14, 22, 24, 32], "possess": 6, "possibl": [0, 1, 5, 6, 13, 17, 18, 19, 21, 22, 23, 37], "possibli": 23, "post": [13, 23], "postel": 22, "posx": 17, "potenti": 19, "poutputdimens": 33, "powerlink": 13, "ppa": 0, "practic": [6, 13, 19], "pre": [0, 5, 6, 21, 39, 41], "prealloc": 0, "prebuilt": 24, "precis": [17, 39], "preconfigur": 27, "predefin": 35, "prefer": [1, 22], "prefix": [5, 41], "preinstal": 0, "prepar": [22, 37], "prepare_packag": 0, "prepend": 33, "preprocess": 13, "presenc": 19, "present": [5, 13, 19, 22, 41], "presum": 2, "pretti": 39, "prettyprint": [26, 39], "prevent": [19, 39], "previou": [0, 5, 13, 22, 23, 25, 26, 27, 30, 41], "previous": 20, "primari": [21, 27], "primit": 6, "principl": [6, 29], "print": [13, 24, 39], "printf": [18, 26, 27, 28, 36], "prior": 13, "prioriti": [1, 4, 5, 17, 21, 39, 40, 41], "prioritylabel": [39, 40], "prioritymappingentrytyp": 24, "priorityvalue_dscp": [39, 40], "priorityvalue_pcp": [39, 40], "privat": [1, 6, 16, 17, 20, 24], "privatekei": 16, "privatekeypasswordcallback": [1, 22], "prix16": [5, 41], "prix32": [5, 41], "prix8": [5, 41], "probabl": 13, "problem": 23, "proced": 0, "procedur": 0, "proceed": 29, "process": [0, 1, 4, 6, 13, 17, 19, 21, 23, 24, 27, 28, 35, 38, 39], "processinginterv": [39, 40], "processingoffset": [39, 40], "processor": 19, "processs": 17, "produc": [20, 21, 32], "product": 0, "productnam": [39, 40], "producturi": [39, 40], "profant": 13, "profil": [12, 23, 27, 28], "profileuri": [39, 40], "profileuriss": [39, 40], "profinet": 13, "prognam": [27, 28], "program": [23, 33, 35], "programdiagnostic2datatyp": 24, "programdiagnosticdatatyp": 24, "progress": [17, 27], "project": [0, 12, 13], "project_source_dir": 13, "prologu": 22, "promiscu": 17, "promotedfield": [21, 27], "propabl": 13, "propag": 21, "proper": 17, "properti": [6, 22, 23, 39, 40], "propertiess": [39, 40], "propertynam": 22, "proprietari": 12, "protect": [0, 1, 13, 22], "protocol": [12, 17, 21, 22, 23, 24, 26, 39], "protocolvers": [5, 41], "prototyp": 22, "prove": 6, "provid": [0, 1, 3, 4, 5, 6, 12, 13, 17, 18, 19, 20, 21, 22, 23, 25, 28, 30, 32, 36, 37, 39, 41], "providesinputto": 13, "pseudo": [20, 22], "ptattr": 35, "ptp": 17, "ptp0": 17, "ptr": [19, 39], "ptr1": [5, 41], "ptr2": [5, 41], "public": [1, 6, 12, 13, 16, 19, 20, 22, 27], "publicdomain": 13, "publickei": [39, 40], "publish": [0, 6, 12, 17, 21, 23, 24, 28, 38], "publishcount": [39, 40], "publisheddata": [39, 40], "publisheddataitemsdatatyp": 24, "publisheddatas": [39, 40], "publisheddataset": [24, 27, 39, 40], "publisheddatasetconfig": [21, 27], "publisheddatasetcustomsourcedatatyp": 24, "publisheddatasetdatatyp": 24, "publisheddatasetfield": 28, "publisheddatasetid": 27, "publisheddatasetss": [39, 40], "publisheddatasettyp": [21, 27], "publishedeventsdatatyp": 24, "publishedvari": [27, 39, 40], "publishedvariabledatatyp": 24, "publisherid": [21, 27, 28, 39, 40], "publisheridentifi": 28, "publishingen": [4, 39, 40], "publishinginterv": [1, 21, 27, 39, 40], "publishingintervalcount": [39, 40], "publishingintervallimit": 22, "publishingoffset": [39, 40], "publishingoffsets": [39, 40], "publishparamet": [21, 27], "publishrequest": [4, 22, 24], "publishrequestcount": [39, 40], "publishrespons": [1, 4, 24], "publishsubscrib": 21, "publishtim": [39, 40], "pubsub": [5, 6, 14, 24, 27, 28], "pubsub_config_fastpath_fixed_offset": 21, "pubsubconfig": 22, "pubsubconfiguration2datatyp": 24, "pubsubconfigurationdatatyp": 24, "pubsubconfigurationrefdatatyp": 24, "pubsubconfigurationrefmask": 24, "pubsubconfigurationvaluedatatyp": 24, "pubsubconnect": [21, 27, 28], "pubsubconnectiondatatyp": 24, "pubsubdiagnosticscounterclassif": 24, "pubsuben": 22, "pubsubgroupdatatyp": 24, "pubsubkeypushtarget": [39, 40], "pubsubkeypushtargetdatatyp": 24, "pubsubkeypushtargetss": [39, 40], "pubsubmanagercallback": 21, "pubsubpublisheddataset": 21, "pubsubst": 24, "pull": [13, 21], "pump": [13, 35], "pump1": 13, "pump2": 35, "pump3": 35, "pump4": 35, "pump5": 35, "pumpid": 35, "pumptyp": 35, "pumptypeconstructor": 35, "pumptypeid": 35, "purchas": 12, "pure": [17, 19], "purpos": 6, "push": 6, "pushtargetfold": [39, 40], "pushtargetfolders": [39, 40], "pushtargetproperti": [39, 40], "pushtargetpropertiess": [39, 40], "put": [22, 29], "py": [0, 13], "python": [0, 13], "python3": 0, "q": 39, "qn": 39, "qoscategori": [39, 40], "qualifi": 39, "qualifiednam": [3, 5, 6, 24, 41], "qualiti": [23, 39], "queri": [1, 5, 7, 8, 9, 10, 11, 24, 25, 41], "querydatadescript": 24, "querydataset": 24, "querydatasetss": [39, 40], "queryfirst": 6, "queryfirstcount": [39, 40], "queryfirstrequest": 24, "queryfirstrespons": 24, "querynext": 6, "querynextcount": [39, 40], "querynextrequest": 24, "querynextrespons": 24, "querystr": 23, "question": [22, 39], "queu": [1, 23], "queue": [6, 17, 22, 23, 34], "queuenam": [39, 40], "queuesiz": [4, 39, 40], "queuesizelimit": 22, "quit": [13, 22], "quot": 39, "r": [0, 5, 41], "race": [0, 21], "rais": 23, "ram": 0, "random": [20, 22, 23, 24, 27, 31], "rang": [6, 17, 19, 21, 22, 23, 24, 29, 30], "rank": [6, 33, 37, 39], "rather": [6, 39], "rationalnumb": 24, "raw": [1, 2, 6, 12, 25, 36], "raw_dat": 25, "re": [1, 19, 22, 27], "reach": [12, 22, 23, 36], "read": [1, 5, 6, 17, 19, 23, 24, 25, 30, 36, 39, 41], "readabl": [0, 5, 22, 39], "readannotationdatadetail": 24, "readattimedetail": 24, "readcallback": 3, "readcount": [39, 40], "readcurrenttim": 30, "reader": [21, 28], "readerconfig": 28, "readergroup": [24, 28, 39, 40], "readergroup1": 28, "readergroupconfig": [21, 28], "readergroupdatatyp": 24, "readergroupid": 21, "readergroupidentifi": [21, 28], "readergroupss": [39, 40], "readeridentifi": [21, 28], "readeventdetail": 24, "readi": 22, "readprocesseddetail": 24, "readrawmodifieddetail": 24, "readrequest": [6, 24], "readrespons": 24, "readresult": 22, "readvalueid": [3, 22, 24], "real": [6, 21, 23, 39, 40], "realli": 22, "realloc": [5, 39, 41], "realtim": [0, 21], "reason": [13, 39], "reassembl": 6, "receipt": 6, "receiv": [0, 1, 13, 17, 20, 21, 22, 23, 28, 29, 31, 34, 39], "receiveoffset": [39, 40], "receiveqosprioritydatatyp": 24, "receiverindexrang": [39, 40], "receivetim": 31, "recent": [0, 17], "reciev": 4, "recogn": 23, "recommend": [0, 13, 19], "recompil": [0, 13], "reconnect": 1, "record": [1, 6, 22], "recordid": [39, 40], "recov": [1, 15], "recreat": 1, "recurs": [13, 19, 22], "recv": 17, "recvbuffers": [5, 41], "redescend": 13, "redirect": 30, "reduc": [0, 1, 6], "redundancysupport": 24, "redundantserverdatatyp": 24, "ref": [11, 19, 22], "ref_1": 7, "ref_2": 7, "refarrai": 19, "refer": [5, 6, 12, 13, 15, 19, 20, 23, 24, 26, 29, 33, 35, 39, 40, 41], "referenc": [2, 6, 19, 22, 23, 37], "referencedescript": 24, "referencedirect": 19, "referencednod": [39, 40], "referencednodeid": [39, 40], "referencednodeidss": [39, 40], "referencednodess": [39, 40], "referencenod": 24, "referencess": [19, 39, 40], "referencestoadd": [39, 40], "referencestoadds": [39, 40], "referencestodelet": [39, 40], "referencestodeletes": [39, 40], "referencetyp": [5, 6, 13, 14, 22, 24, 41], "referencetypeattribut": 24, "referencetypeid": [2, 3, 5, 19, 22, 35, 39, 40, 41], "referencetypeindex": 19, "referencetypenod": [14, 24], "referrencetyp": 19, "reflect": 22, "refresh": 23, "reftre": 19, "reftypeid": 22, "reftypeindex": 19, "regeneratekei": 22, "regist": [1, 5, 6, 12, 17, 24, 41], "register": 22, "registerednodeid": [39, 40], "registerednodeidss": [39, 40], "registeredserv": [1, 22, 24], "registeredserverss": 1, "registereventsourc": 17, "registerinterrupt": 17, "registernod": 6, "registernodescount": [39, 40], "registernodesrequest": 24, "registernodesrespons": 24, "registerserv": [6, 22], "registerserver2": 6, "registerserver2request": 24, "registerserver2respons": 24, "registerserverrequest": 24, "registerserverrespons": 24, "registr": 6, "regular": [1, 2, 17, 22, 32], "regularli": [17, 34], "reject": [15, 23], "rejectedchannelcount": 5, "rejectedlist": 16, "rejectedlists": 16, "rejectedrequestscount": [39, 40], "rejectedsessioncount": [5, 39, 40], "rel": [22, 23], "relat": [6, 12, 21, 23, 28, 29, 35], "relationship": 23, "relativepath": [22, 24, 35], "relativepathel": 24, "relax": 39, "releas": [0, 12, 17, 19, 27, 32, 39], "releasecontinuationpoint": [22, 39, 40], "releasenod": 19, "relev": [1, 17, 19, 22], "reli": 13, "relwithdebinfo": 0, "remain": [5, 17, 22, 41], "remainingpathindex": [39, 40], "rememb": 25, "remot": [1, 6, 17, 19, 20, 22, 23], "remotecertif": 20, "remotemaxchunkcount": [5, 41], "remotemaxmessages": [5, 41], "remov": [0, 1, 5, 6, 12, 13, 17, 19, 21, 22, 28, 39, 41], "removebranch": 22, "removecustomcallback": 21, "removecycliccallback": 17, "removedelayedcallback": 17, "removediagnosticinfo": [39, 40], "removediagnosticinfoss": [39, 40], "removefromtrustlist": 16, "removenod": 19, "removeresult": [39, 40], "removeresultss": [39, 40], "renew": [1, 6], "reopen": 6, "repeat": [1, 21, 22], "repeatedli": [1, 6, 22], "repetit": [1, 22], "replac": [0, 4, 6, 15, 17, 19, 22, 23, 35], "replacedatacap": 22, "replaceeventcap": 22, "replacenod": 19, "report": [4, 5, 6, 12, 41], "repositori": [0, 6, 13], "repres": [6, 19, 21, 22, 23, 29, 31, 33, 35, 37, 39], "represent": [0, 13, 14, 22, 24, 30, 31, 35, 39], "republish": 6, "republishcount": [39, 40], "republishmessagecount": [39, 40], "republishmessagerequestcount": [39, 40], "republishrequest": 24, "republishrequestcount": [39, 40], "republishrespons": 24, "reqid": 3, "reqtim": [39, 40], "reqtimess": [39, 40], "request": [1, 3, 4, 6, 12, 13, 19, 20, 21, 23, 24, 25, 30, 39], "requesteddeliveryguarante": [39, 40], "requestedkeycount": [39, 40], "requestedlifetim": [39, 40], "requestedlifetimecount": [4, 39, 40], "requestedmaxkeepalivecount": [4, 39, 40], "requestedmaxreferencespernod": [39, 40], "requestednewnodeid": [2, 3, 22, 39, 40], "requestedparamet": [4, 34, 39, 40], "requestedpublishinginterv": [4, 39, 40], "requestedsessiontimeout": [1, 39, 40], "requesthandl": [1, 39, 40], "requesthead": [1, 24, 26], "requestid": [1, 3, 4], "requesttyp": [1, 39, 40], "requethandl": 1, "requir": [0, 1, 6, 13, 16, 17, 19, 20, 21, 22, 23, 31, 32, 35, 37, 39], "reserv": [5, 41], "reset": [19, 21, 36, 39], "resid": 39, "resiz": 39, "resolv": [5, 22, 41], "resourc": [0, 12, 17, 23, 30], "resourceuri": [39, 40], "resp": 26, "respect": [6, 17, 19, 28, 29, 33], "respond": 6, "respons": [1, 3, 4, 6, 12, 22, 23, 29], "responsehead": 24, "responsetyp": 1, "rest": 13, "restrict": [1, 5, 41], "resuabl": 35, "result": [3, 5, 6, 13, 19, 20, 21, 22, 23, 35, 39, 40, 41], "resultmask": [39, 40], "resultss": [22, 39, 40], "retain": 29, "retainfield": 29, "retainvalu": 29, "retransmiss": [6, 23], "retransmitsequencenumb": [39, 40], "retriev": [1, 2, 6, 19, 20, 22, 23, 39], "retryinterv": [39, 40], "retun": 21, "return": [1, 2, 3, 4, 5, 6, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "returnbound": [2, 39, 40], "returndiagnost": [39, 40], "retval": [13, 25, 27, 28, 29, 31, 33, 36, 37], "reus": [6, 12, 17, 19, 39], "reusabl": 12, "revers": [1, 5, 6, 24, 41], "reversereconnectinterv": 22, "revis": 6, "revisedaggregateconfigur": [39, 40], "revisedcontinuationpoint": [39, 40], "revisedlifetim": [39, 40], "revisedlifetimecount": [39, 40], "revisedmaxkeepalivecount": [39, 40], "revisedprocessinginterv": [39, 40], "revisedpublishinginterv": [39, 40], "revisedqueues": [39, 40], "revisedsamplinginterv": [6, 39, 40], "revisedsessiontimeout": [39, 40], "revisedstarttim": [39, 40], "revok": 23, "rgid": 21, "rh": [5, 41], "right": [1, 5, 6, 13, 15, 19, 22, 34, 41], "rise": 6, "rk": 19, "roadmap": 12, "role": 21, "roleid": [39, 40], "rolepermiss": [6, 39, 40], "rolepermissionss": [39, 40], "rolepermissiontyp": 24, "rollov": 21, "rom": [0, 1, 22, 39], "rout": 21, "routin": 39, "rp": [5, 41], "rpe": 35, "rpm": 35, "rpmattr": 35, "rr": [3, 26], "rr2": 26, "rsa": 6, "rsaencryptedsecret": 24, "rsl": 13, "rt": 21, "rtd": 0, "rtfieldsourceen": 21, "rtinformationmodelnod": 21, "rtlevel": 21, "rtn": 29, "rtvaluesourc": 21, "rule": [18, 23, 24, 35], "rulehand": 5, "rulehandl": 16, "run": [0, 1, 13, 15, 17, 21, 22, 27, 28, 32, 35], "runtim": [0, 1, 6, 12, 13, 20, 21, 24, 27, 30, 35], "rvi": [3, 26], "s1": [13, 39], "s2": [26, 39], "s3": 26, "s4": 26, "safe": 39, "safeti": 13, "sai": [1, 33, 39], "said": 31, "same": [0, 1, 2, 5, 6, 13, 15, 17, 19, 22, 23, 31, 33, 35, 36, 39, 41], "sampl": [12, 19, 21, 22, 23], "samplinginterv": [4, 34, 39, 40], "samplingintervaldiagnosticsdatatyp": 24, "samplingintervalhint": [39, 40], "samplingintervallimit": 22, "samplingoffset": [39, 40], "sao": [5, 41], "satisfi": 0, "save": [13, 19, 23, 31], "saw": 30, "sbyte": 24, "sc": 22, "scada": 35, "scalabl": 21, "scalar": [1, 5, 6, 17, 21, 22, 25, 26, 28, 33, 37, 39, 41], "scale": [13, 39, 40], "scenario": 0, "schedul": [17, 22, 32], "schema": [6, 13, 23, 39], "schemaloc": [39, 40], "scheme": 12, "scope": 39, "script": 13, "sdk": [12, 19, 24, 33, 39], "sdsconfig": 21, "sdsid": 21, "search": [23, 39], "sec": [25, 39], "second": [0, 6, 17, 22, 31, 39], "secondstillshutdown": [39, 40], "secret": [5, 6, 20, 41], "section": [0, 1, 2, 5, 6, 13, 19, 22, 26, 32, 39, 41], "secur": [1, 6, 12, 20, 21, 23, 24], "securechannel": [1, 5, 15, 20, 22, 24], "securechannelid": 23, "securechannellifetim": 1, "securechannelnoncelength": 20, "securechannelpki": 22, "securechannelremotecertif": 15, "securitygroup": [24, 39, 40], "securitygroupconfig": 21, "securitygroupdatatyp": 24, "securitygroupfold": [39, 40], "securitygroupfoldernodeid": 21, "securitygroupfolders": [39, 40], "securitygroupfoldertyp": 21, "securitygroupid": [21, 39, 40], "securitygroupnam": 21, "securitygroupnodeid": 21, "securitygroupss": [39, 40], "securityhead": 20, "securitykei": 21, "securitykeyservic": [39, 40], "securitykeyservicess": [39, 40], "securitylevel": [20, 39, 40], "securitymod": [1, 6, 21, 22, 39, 40], "securitypolici": [1, 6, 14, 21, 22, 24], "securitypoliciess": [1, 21, 22], "securitypolicynon": 22, "securitypolicynonediscoveryonli": 22, "securitypolicyuri": [1, 21, 39, 40], "securityrejectedrequestscount": [39, 40], "securityrejectedsessioncount": [5, 39, 40], "securitytoken": [1, 39, 40], "securitytokenid": 21, "securitytokenlifetim": [39, 40], "securitytokenrequesttyp": 24, "see": [1, 2, 4, 5, 6, 12, 13, 17, 22, 26, 32, 36, 39, 41], "seed": [5, 20, 41], "seen": 13, "select": [1, 5, 6, 7, 8, 9, 10, 11, 17, 19, 21, 22, 24, 27, 41], "selectclaus": [7, 8, 9, 10, 11, 39, 40], "selectclausediagnosticinfo": [39, 40], "selectclausediagnosticinfoss": [39, 40], "selectclauseresult": [39, 40], "selectclauseresultss": [39, 40], "selectclausess": [39, 40], "selectedfield": [21, 39, 40], "selectedfieldss": [21, 39, 40], "self": 23, "semant": [5, 6, 12, 37, 41], "semanticchangestructuredatatyp": 24, "semanticversionstr": 24, "semaphor": [0, 22, 23], "semaphorefilepath": [22, 39, 40], "semicolon": [5, 41], "send": [4, 6, 17, 20, 21, 22, 27, 28, 39], "sendbuffers": [5, 41], "sender": 6, "sendinitialvalu": [39, 40], "sendwithconnect": 17, "sens": [19, 31], "sensibl": [2, 6, 32, 37], "sensit": 17, "sensor": [6, 22, 23], "sent": [1, 6, 17, 21, 22, 23, 28, 34, 39], "sentenc": 6, "separ": [5, 17, 39, 41], "sequenc": [22, 23, 39], "sequencenumb": [39, 40], "seri": [12, 32], "serial": [23, 39], "serv": 17, "server": [0, 2, 4, 5, 6, 12, 13, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 37, 38, 39, 40, 41], "server_config_default": [22, 26], "server_ctt": 12, "server_nodeset": 13, "server_pubsub": [27, 28], "servercap": [39, 40], "servercapabilitiess": [39, 40], "servercapabilityfilt": [1, 39, 40], "servercapabilityfilters": [1, 39, 40], "servercertif": [39, 40], "serverdescript": 1, "serverdiagnosticssummarydatatyp": [5, 24], "serverendpoint": [39, 40], "serverendpointss": [39, 40], "serverid": [39, 40], "serverindex": [19, 39], "servernam": [23, 39, 40], "servernamess": [39, 40], "servernonc": [1, 39, 40], "serveronnetwork": [1, 22, 24], "serveronnetworks": 1, "serverpicosecond": 39, "serverprotocolvers": [39, 40], "serversignatur": [39, 40], "serversoftwarecertif": [39, 40], "serversoftwarecertificatess": [39, 40], "serverss": [39, 40], "serverst": 24, "serverstatusdatatyp": 24, "servertimestamp": [22, 23, 29, 39], "servertyp": [13, 39, 40], "serveruri": [1, 23, 39, 40], "serveruriss": [1, 39, 40], "serverurl": [1, 22], "serverurlss": 22, "serverviewcount": [39, 40], "servic": [0, 2, 4, 5, 12, 19, 20, 21, 22, 23, 24, 25, 35, 36, 41], "servicecounterdatatyp": 24, "servicediagnost": [39, 40], "servicefault": 24, "serviceid": [39, 40], "servicelevel": [39, 40], "serviceresult": [39, 40], "session": [1, 5, 6, 12, 15, 17, 19, 23, 24], "sessionabortcount": [5, 39, 40], "sessionauthenticationtoken": 24, "sessioncontext": [15, 19, 22, 29, 30, 33, 35], "sessiondiagnosticsdatatyp": 24, "sessionhandl": [31, 33], "sessionid": [6, 15, 19, 22, 29, 30, 31, 33, 35, 39, 40], "sessionlessinvokerequesttyp": 24, "sessionlessinvokeresponsetyp": 24, "sessionlocaleid": 1, "sessionlocaleidss": 1, "sessionnam": [1, 22, 39, 40], "sessionpki": 22, "sessionsecuritydiagnosticsdatatyp": 24, "sessionst": 1, "sessiontimeoutcount": [5, 39, 40], "set": [0, 1, 4, 5, 12, 13, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 35, 36, 37, 38, 39, 41], "seta": 19, "setb": 19, "setlocalsymencryptingkei": 20, "setlocalsymiv": 20, "setlocalsymsigningkei": 20, "setmessagenonc": 20, "setmonitoringmod": 6, "setmonitoringmodecount": [39, 40], "setmonitoringmoderequest": 24, "setmonitoringmoderespons": 24, "setpublishingmod": 6, "setpublishingmodecount": [39, 40], "setpublishingmoderequest": 24, "setpublishingmoderespons": 24, "setremotesymencryptingkei": 20, "setremotesymiv": 20, "setremotesymsigningkei": 20, "setsecuritykei": 20, "settrigg": 6, "settriggeringcount": [39, 40], "settriggeringrequest": 24, "settriggeringrespons": 24, "settrustlist": 16, "setup": [1, 17, 22, 31], "setupenviron": 29, "setupev": 31, "sever": [1, 2, 4, 6, 7, 8, 9, 10, 11, 15, 17, 19, 22, 29, 31, 33, 39], "severityfield": 29, "severityvalu": 29, "severurl": 22, "sh": 0, "sha256": 6, "shall": [1, 5, 6, 13, 15, 17, 19, 21, 22, 35], "shallow": [1, 21, 22, 39], "share": [0, 17, 23, 35], "shell": 0, "shelv": 23, "shorter": 39, "shorthand": [26, 39], "shortlex": 39, "should": [0, 1, 13, 17, 19, 20, 21, 22, 23, 25, 29, 31, 32, 35, 39], "show": [6, 13, 21, 26, 28, 30, 31, 32, 36], "shown": [13, 22], "shut": [1, 22, 23], "shutdown": [1, 5, 22], "shutdowndelai": 22, "shutdownreason": [39, 40], "side": [2, 5, 12, 17, 20, 21, 27, 28, 41], "sigint": [13, 22], "sign": [1, 6, 13, 20, 24, 39], "signal": [13, 14, 22, 24], "signandencrypt": [1, 6], "signatur": [6, 12, 20, 23, 39, 40], "signaturealgorithm": 20, "signaturedata": 24, "signatures": 20, "signedsoftwarecertif": 24, "signingkei": [20, 21], "sigterm": 13, "similar": [3, 13, 19, 22, 25, 33, 35], "similarli": [17, 21], "similiar": 22, "simpl": [0, 6, 13, 24, 31, 38, 39], "simpleattributeoperand": [22, 24], "simplebrowsepath": [5, 41], "simpledatatyp": [39, 40], "simpledatatypess": [39, 40], "simpleeventtyp": 31, "simpler": 13, "simplest": [27, 28, 39], "simpletypedescript": 24, "simplfi": 22, "simpli": [19, 32, 35], "simplic": 30, "simplif": 22, "simplifi": [5, 13, 22, 39, 41], "sinc": [6, 13, 19, 20, 22, 31, 39], "singl": [0, 2, 3, 4, 5, 6, 13, 17, 19, 22, 32, 39, 41], "singli": [17, 19], "situat": [20, 30, 35], "six": [5, 17, 41], "size": [1, 5, 6, 12, 17, 20, 21, 22, 23, 24, 26, 28, 39, 41], "size_t": [1, 2, 3, 4, 5, 15, 16, 17, 19, 20, 21, 22, 28, 31, 33, 39, 40, 41], "sizeof": [19, 27, 28, 39], "sk": [20, 21], "skip": 13, "sksclientconfig": 21, "skspullrequeststatu": 21, "slash": [5, 41], "sleep": 17, "sln": 0, "slow": [19, 23], "small": [0, 5, 19, 39, 41], "smaller": 39, "smallest": 39, "snippet": [13, 30], "so": [0, 1, 5, 6, 13, 17, 18, 19, 20, 21, 22, 23, 25, 29, 30, 31, 33, 34, 35, 37, 39, 41], "so_prior": 17, "soap": [6, 12], "socket": [1, 5, 17, 22], "sockprior": 17, "sof_txtime_report_error": 17, "soft": 29, "soften": 5, "softwar": [0, 6, 12, 21, 23], "softwarecertif": 6, "softwarevers": [39, 40], "sole": 17, "solut": [31, 35], "solv": 19, "some": [0, 1, 6, 12, 13, 17, 19, 22, 25, 26, 35, 39], "sometim": 6, "soon": 6, "sourc": [0, 1, 6, 12, 13, 14, 16, 19, 21, 23, 24, 29, 32, 38, 39], "sourceid": 22, "sourcenam": 31, "sourcenod": [22, 31], "sourcenodeid": [2, 19, 22, 39, 40], "sourcepicosecond": 39, "sourcetimestamp": [19, 22, 23, 29, 30, 39], "space": [0, 6, 19, 22, 23, 29, 37, 39], "spec": [5, 24], "special": [6, 19, 22, 39], "specif": [1, 5, 6, 12, 13, 15, 17, 19, 20, 21, 22, 29, 31, 32, 36, 39], "specifi": [0, 1, 5, 6, 13, 19, 20, 21, 22, 23, 31, 39, 41], "specifiedattribut": [39, 40], "specifiedlist": [39, 40], "specifii": 22, "speed": 19, "sphinx": 0, "sphinx_rtd_them": 0, "split": [3, 5, 6, 12, 22, 41], "src": [1, 5, 19, 21, 39, 41], "srv": 22, "ss": 22, "stabl": [0, 19], "stack": [2, 5, 12, 13, 22, 23], "stai": 17, "stand": 17, "standalonesubscribeddataset": 21, "standalonesubscribeddatasetdatatyp": 24, "standalonesubscribeddatasetrefdatatyp": 24, "standard": [0, 1, 2, 5, 6, 12, 13, 19, 20, 21, 22, 23, 27, 29, 39, 41], "start": [0, 1, 5, 6, 12, 17, 19, 22, 23, 24, 30, 32, 39, 41], "startingnod": [35, 39, 40], "startingrecordid": [1, 39, 40], "startmonitor": 21, "startpump": 13, "starttim": [2, 39, 40], "starttimestamp": [2, 15], "state": [1, 6, 17, 18, 21, 22, 23, 24, 31, 33, 35, 38, 39, 40, 41], "statecallback": [1, 21, 22], "statechangecallback": 21, "static": [0, 4, 13, 17, 18, 19, 22, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39], "staticvaluesourc": 21, "statist": 24, "statu": [1, 2, 3, 17, 19, 21, 22, 23, 25, 28, 35, 36, 37, 39, 40], "statusattr": 35, "statuschangecallback": 4, "statuschangenotif": 24, "statuscod": [0, 1, 3, 15, 22, 24, 29, 31, 35, 36, 40], "statusid": 35, "statusresult": 24, "std": [0, 21, 25, 32], "stdio": [13, 26, 27, 28, 36], "stdlib": [26, 27, 28], "stdout": 18, "step": [0, 20, 22, 30, 32], "still": [1, 3, 6, 13, 22, 23, 30, 39], "stop": [5, 13, 17, 22, 23, 32, 39, 41], "stophandl": 13, "stopmonitor": 21, "stoppump": 13, "storag": [0, 5, 6, 19, 41], "storagetyp": [19, 39], "store": [4, 5, 6, 13, 14, 16, 17, 20, 21, 22, 24, 30, 33, 39, 41], "str": [5, 39, 41], "straightforward": 32, "strcmp": [27, 28], "stream": [23, 39], "strength": 20, "strict": [22, 39], "stride": 39, "string": [1, 7, 8, 9, 10, 11, 13, 17, 18, 21, 22, 24, 26, 33, 36, 37], "stringnodeid": 39, "stringtabl": [39, 40], "stringtables": [39, 40], "strip": 0, "strlen": [26, 39], "strncmp": [27, 28], "struct": [1, 2, 5, 15, 16, 17, 18, 19, 20, 21, 22, 39, 40, 41], "structur": [0, 1, 3, 5, 13, 19, 21, 22, 23, 24, 26, 36, 38, 39, 41], "structuredatatyp": [39, 40], "structuredatatypess": [39, 40], "structuredefinit": 24, "structuredescript": 24, "structurefield": 24, "structuretyp": 24, "studio": [0, 32], "style": 0, "sub": [1, 21, 23], "subcod": 39, "subcontext": [1, 4], "subfold": 13, "subid": 4, "subject": 16, "subjectnam": [16, 20, 22], "submit": [6, 22], "submodul": 13, "subnet": 17, "subscib": 21, "subscrib": [0, 5, 6, 17, 21, 23, 24, 38], "subscribeddataset": [24, 28, 39, 40], "subscribeddatasetdatatyp": 21, "subscribeddatasetmirror": 21, "subscribeddatasetmirrordatatyp": [21, 24], "subscribeddatasetmirrortyp": 21, "subscribeddatasetss": [39, 40], "subscribeddatasettarget": 21, "subscribeddatasettyp": 21, "subscribedvari": 28, "subscript": [0, 1, 12, 15, 23, 24, 34], "subscriptionacknowledg": 24, "subscriptionacknowledgementss": [39, 40], "subscriptioncontext": 4, "subscriptiondiagnosticsdatatyp": 24, "subscriptionid": [1, 4, 39, 40], "subscriptionidss": [39, 40], "subscriptioninactivitycallback": 1, "subscriptionsen": 22, "subsequ": 6, "subset": [1, 6, 12, 13, 19, 21, 39], "substanti": 19, "substitutevalu": [39, 40], "subsystem": [6, 14, 24], "subtyp": [5, 6, 19, 22, 41], "succe": [16, 17, 20, 22, 39], "succeed": [1, 2, 23, 39], "success": [1, 3, 22, 23, 39], "successfulli": [6, 13, 21, 22, 23], "sudo": 0, "suffici": 6, "sugar": 36, "suitabl": [19, 21], "supertyp": 6, "suppli": [20, 22, 23], "support": [0, 1, 5, 6, 12, 13, 15, 17, 19, 21, 22, 23, 32, 41], "suppos": 20, "suppress": 21, "sure": [0, 13, 22, 26, 29], "svr": 39, "switch": [1, 5, 6, 19, 21, 41], "switchfield": 39, "symbol": 0, "symbolicid": 39, "symmetr": [3, 6, 19, 20, 21, 22, 39, 40], "symmetricmodul": 20, "synchron": [1, 4, 17, 30], "synonym": 39, "syntact": 36, "syntax": [13, 22, 23], "system": [0, 5, 6, 12, 17, 21, 23, 26, 27, 30, 39, 41], "t": [1, 2, 4, 5, 13, 19, 20, 22, 29, 32, 33, 39, 41], "t_clear": 39, "t_copi": 39, "t_delet": 39, "t_equal": 39, "t_init": 39, "t_new": 39, "tabl": [5, 6, 20], "tag": [17, 19], "tai": 39, "take": [0, 1, 5, 6, 7, 8, 9, 10, 11, 13, 17, 18, 19, 21, 22, 27, 30, 32, 33, 36, 39], "taken": [0, 5, 22, 30, 41], "target": [1, 5, 6, 12, 13, 17, 19, 21, 22, 23, 28, 35, 39, 40, 41], "target_link_librari": 0, "target_suffix": 13, "targetbrowsenamehash": 19, "targetid": [19, 22, 35, 39, 40], "targetidhash": 19, "targetnam": [35, 39, 40], "targetnamehash": 19, "targetnodeclass": [2, 39, 40], "targetnodeid": [2, 19, 22, 28, 39, 40], "targetparentnodeid": 19, "targetserveruri": [2, 39, 40], "targetss": [19, 35, 39, 40], "targetvar": 28, "targetvari": [21, 28, 39, 40], "targetvariablecontext": 21, "targetvariableidentifi": 21, "targetvariablesdatatyp": [21, 24], "targetvariabless": [21, 39, 40], "targetvariablestyp": 21, "task": [1, 12, 24, 32, 38], "tboolvalu": 29, "tcp": [1, 5, 6, 12, 14, 22, 24, 25, 32, 41], "tcpbufsiz": 22, "tcpenabl": 22, "tcpmaxchunk": 22, "tcpmaxmsgsiz": 22, "tcpreuseaddr": [1, 22], "team": 0, "technic": [6, 19], "tell": [0, 13], "templat": 21, "tensor": 39, "term": [16, 33], "termin": [5, 6, 39], "test": [0, 6, 19, 26, 36, 39], "test2": 26, "test_nam": 0, "testid": 26, "text": [19, 22, 28, 39], "textual": [5, 6, 41], "than": [0, 1, 5, 6, 13, 15, 17, 22, 23, 35, 39], "thei": [6, 12, 13, 17, 19, 20, 22, 23, 30, 39], "them": [0, 1, 6, 13, 17, 22, 39], "theme": 0, "themselv": 6, "theori": 22, "therefor": [1, 19, 21, 22, 33], "theven": 17, "thi": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 19, 20, 21, 22, 23, 26, 27, 29, 30, 31, 32, 35, 36, 37, 39, 41], "thing": [22, 31], "third": 0, "those": [6, 13, 17, 19, 22, 39], "though": [6, 31], "thread": [0, 1, 5, 21, 22, 32, 41], "three": [6, 22, 32, 37, 39], "threedcartesiancoordin": 24, "threedfram": 24, "threedorient": 24, "threedvector": 24, "through": [6, 17, 22, 29, 32], "thu": [0, 13, 21, 22, 29], "thumbprint": [16, 20], "thumbprintlength": 20, "ticket": 23, "tight": 30, "time": [0, 2, 3, 5, 6, 13, 15, 17, 19, 21, 23, 24, 25, 29, 30, 31, 39, 41], "time_t": 39, "timedatasourc": 30, "timedcallback": 21, "timeout": [0, 1, 17, 22, 23, 32], "timeouthint": [1, 39, 40], "timer": [14, 21, 24], "timerpolici": [17, 21], "timestamp": [1, 2, 17, 18, 19, 21, 22, 23, 26, 39, 40], "timestampstoreturn": [2, 3, 4, 22, 24], "timestr": 24, "timezonedatatyp": 24, "titl": [39, 40], "tl": 0, "tmc": 13, "tmp": 33, "todo": [21, 22], "togeth": [1, 5, 6, 17, 22, 30, 35, 39, 41], "toggl": 0, "token": [1, 23], "tokendata": [39, 40], "tokenid": [23, 39, 40], "tokentyp": [39, 40], "too": [6, 23, 39], "tool": [0, 6, 12, 13, 21, 27], "toolkit": 32, "top": [6, 12, 39], "topic": [17, 39, 40], "toplevel": 27, "total": 39, "totalcount": [39, 40], "totalrequestcount": [39, 40], "tpm": 0, "trace": [0, 5, 41], "track": [5, 13, 22, 41], "trail": [5, 39, 41], "transfer": [1, 6, 15, 23], "transferredtoaltclientcount": [39, 40], "transferredtosameclientcount": [39, 40], "transferrequestcount": [39, 40], "transferresult": 24, "transfersubscript": 6, "transfersubscriptionscount": [39, 40], "transfersubscriptionsrequest": 24, "transfersubscriptionsrespons": 24, "transform": 13, "transit": [4, 22], "translat": [6, 12, 19, 30], "translatebrowsepathstonodeid": [6, 22], "translatebrowsepathstonodeidscount": [39, 40], "translatebrowsepathstonodeidsrequest": 24, "translatebrowsepathstonodeidsrespons": 24, "transmiss": [6, 20], "transmit": [22, 39], "transmitqosprioritydatatyp": 24, "transpar": 39, "transport": [1, 6, 17, 21, 22, 27, 28], "transportprofil": [27, 28], "transportprofileuri": [21, 27, 28, 39, 40], "transportprotocol": [39, 40], "transportset": [21, 39, 40], "treat": [5, 17, 41], "treatuncertainasbad": [39, 40], "tree": [6, 13, 19], "tri": [17, 39], "trigger": [1, 6, 17, 21, 22, 24, 30, 38, 39, 40], "triggerev": 31, "triggeringitemid": [39, 40], "tripl": [6, 12], "trivial": 32, "truck": [5, 41], "truckeventtyp": [5, 41], "true": [1, 4, 5, 13, 17, 19, 22, 26, 29, 30, 31, 33, 35, 36, 39, 41], "trust": [5, 22, 23, 27, 41], "trustedcertif": [39, 40], "trustedcertificatess": [39, 40], "trustedcrl": [39, 40], "trustedcrlss": [39, 40], "trustlist": [1, 16, 22, 24], "trustlistdatatyp": 24, "trustlistmask": 24, "try": [25, 39], "tsn": 17, "tsnfailurecod": 24, "tsnlistenerstatu": 24, "tsnstreamstat": 24, "tsntalkerstatu": 24, "ttl": 17, "turn": [33, 37], "tutori": [1, 13, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 35, 36, 37, 39], "tutorial_pubsub_connect": 27, "tutorial_pubsub_publish": 28, "tutorial_server_firststep": 0, "tutorial_server_method_async": 22, "twice": 6, "two": [3, 6, 13, 17, 21, 22, 28, 33, 39], "twostatevari": 22, "tx": 17, "txt": [13, 22], "txtime": 17, "type": [0, 2, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 21, 23, 24, 25, 27, 28, 30, 31, 33, 36, 38], "typecontext": 35, "typedef": [1, 2, 3, 4, 5, 16, 17, 18, 19, 20, 21, 22, 39, 40, 41], "typedefinit": [2, 3, 5, 13, 19, 22, 39, 40, 41], "typedefinitionid": [5, 7, 8, 9, 10, 11, 39, 40, 41], "typedefinitionnod": [5, 39, 40, 41], "typeid": [1, 7, 8, 9, 10, 11, 13, 22, 28, 33, 35, 36, 37, 39], "typekind": 39, "typenam": 39, "typenodecontext": 19, "typenodeid": 19, "types_arrai": 13, "typesarrai": 13, "typess": 39, "typic": [6, 17, 30], "u": [0, 13, 22, 25, 28, 30, 31, 33, 35, 36, 37], "ua": [0, 1, 2, 3, 4, 5, 12, 13, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 39], "ua_accesscontrol": [15, 22], "ua_accesslevelextyp": [39, 40], "ua_accesslevelextype_const": [39, 40], "ua_accesslevelextype_currentread": [39, 40], "ua_accesslevelextype_currentwrit": [39, 40], "ua_accesslevelextype_historyread": [39, 40], "ua_accesslevelextype_historywrit": [39, 40], "ua_accesslevelextype_non": [39, 40], "ua_accesslevelextype_nonatomicread": [39, 40], "ua_accesslevelextype_nonatomicwrit": [39, 40], "ua_accesslevelextype_nonvolatil": [39, 40], "ua_accesslevelextype_nosubdatatyp": [39, 40], "ua_accesslevelextype_semanticchang": [39, 40], "ua_accesslevelextype_statuswrit": [39, 40], "ua_accesslevelextype_timestampwrit": [39, 40], "ua_accesslevelextype_writefullarrayonli": [39, 40], "ua_accesslevelmask_currentread": 5, "ua_accesslevelmask_currentwrit": 5, "ua_accesslevelmask_historyread": 5, "ua_accesslevelmask_historywrit": 5, "ua_accesslevelmask_read": [5, 29, 30, 36, 37], "ua_accesslevelmask_semanticchang": 5, "ua_accesslevelmask_statuswrit": 5, "ua_accesslevelmask_timestampwrit": 5, "ua_accesslevelmask_writ": [5, 29, 30, 36, 37], "ua_accessleveltyp": [39, 40], "ua_accessleveltype_currentread": [39, 40], "ua_accessleveltype_currentwrit": [39, 40], "ua_accessleveltype_historyread": [39, 40], "ua_accessleveltype_historywrit": [39, 40], "ua_accessleveltype_non": [39, 40], "ua_accessleveltype_semanticchang": [39, 40], "ua_accessleveltype_statuswrit": [39, 40], "ua_accessleveltype_timestampwrit": [39, 40], "ua_accessrestrictiontyp": [39, 40], "ua_accessrestrictiontype_applyrestrictionstobrows": [39, 40], "ua_accessrestrictiontype_encryptionrequir": [39, 40], "ua_accessrestrictiontype_non": [39, 40], "ua_accessrestrictiontype_sessionrequir": [39, 40], "ua_accessrestrictiontype_signingrequir": [39, 40], "ua_activatesessionrequest": [39, 40], "ua_activatesessionrespons": [39, 40], "ua_additionalparameterstyp": [39, 40], "ua_addnodesitem": [15, 39, 40], "ua_addnodesrequest": [1, 39, 40], "ua_addnodesrespons": [1, 3, 39, 40], "ua_addnodesresult": [39, 40], "ua_addpublisheddatasetresult": 21, "ua_addreferencesitem": [15, 39, 40], "ua_addreferencesrequest": [1, 39, 40], "ua_addreferencesrespons": [1, 39, 40], "ua_aggregateconfigur": [39, 40], "ua_aggregatefilt": [39, 40], "ua_aggregatefilterresult": [39, 40], "ua_aliasnamedatatyp": [39, 40], "ua_annot": [39, 40], "ua_anonymousidentitytoken": [39, 40], "ua_applicationdescript": [1, 22, 39, 40], "ua_applicationinstancecertif": [39, 40], "ua_applicationtyp": [39, 40], "ua_applicationtype_cli": [39, 40], "ua_applicationtype_clientandserv": [39, 40], "ua_applicationtype_discoveryserv": [39, 40], "ua_applicationtype_serv": [39, 40], "ua_architecture_posix": 17, "ua_architecture_win32": 17, "ua_argu": [6, 22, 33, 39, 40], "ua_argument_init": 33, "ua_array_append": 39, "ua_array_appendcopi": 39, "ua_array_copi": 39, "ua_array_delet": 39, "ua_array_new": [26, 28, 39], "ua_array_res": 39, "ua_asyncoperationrequest": 22, "ua_asyncoperationrespons": 22, "ua_asyncoperationtyp": 22, "ua_asyncoperationtype_cal": 22, "ua_asyncoperationtype_invalid": 22, "ua_asyncoperationtype_read": 22, "ua_asyncoperationtype_writ": 22, "ua_attributeid": [2, 3, 5, 22], "ua_attributeid_": 3, "ua_attributeid_accesslevel": [2, 5, 22], "ua_attributeid_accesslevelex": [2, 5, 22], "ua_attributeid_accessrestrict": 5, "ua_attributeid_arraydimens": [5, 22], "ua_attributeid_browsenam": [2, 5, 22], "ua_attributeid_containsnoloop": [2, 5, 22], "ua_attributeid_datatyp": [2, 5, 22], "ua_attributeid_datatypedefinit": 5, "ua_attributeid_descript": [2, 5, 22], "ua_attributeid_displaynam": [2, 5, 22], "ua_attributeid_eventnotifi": [2, 5, 22], "ua_attributeid_execut": [2, 5, 22], "ua_attributeid_histor": [2, 5, 22], "ua_attributeid_invalid": 5, "ua_attributeid_inversenam": [2, 5, 22], "ua_attributeid_isabstract": [2, 5, 22], "ua_attributeid_minimumsamplinginterv": [2, 5, 22], "ua_attributeid_nam": 5, "ua_attributeid_nodeclass": [2, 5, 22], "ua_attributeid_nodeid": [2, 5, 22], "ua_attributeid_rolepermiss": 5, "ua_attributeid_symmetr": [2, 5, 22], "ua_attributeid_useraccesslevel": [2, 5], "ua_attributeid_userexecut": [2, 5], "ua_attributeid_userrolepermiss": 5, "ua_attributeid_userwritemask": [2, 5], "ua_attributeid_valu": [2, 4, 5, 22, 27, 28, 36], "ua_attributeid_valuerank": [2, 5, 22], "ua_attributeid_writemask": [2, 5, 22], "ua_attributeoperand": [39, 40], "ua_attributewritemask": [39, 40], "ua_attributewritemask_accesslevel": [39, 40], "ua_attributewritemask_accesslevelex": [39, 40], "ua_attributewritemask_accessrestrict": [39, 40], "ua_attributewritemask_arraydimens": [39, 40], "ua_attributewritemask_browsenam": [39, 40], "ua_attributewritemask_containsnoloop": [39, 40], "ua_attributewritemask_datatyp": [39, 40], "ua_attributewritemask_datatypedefinit": [39, 40], "ua_attributewritemask_descript": [39, 40], "ua_attributewritemask_displaynam": [39, 40], "ua_attributewritemask_eventnotifi": [39, 40], "ua_attributewritemask_execut": [39, 40], "ua_attributewritemask_histor": [39, 40], "ua_attributewritemask_inversenam": [39, 40], "ua_attributewritemask_isabstract": [39, 40], "ua_attributewritemask_minimumsamplinginterv": [39, 40], "ua_attributewritemask_nodeclass": [39, 40], "ua_attributewritemask_nodeid": [39, 40], "ua_attributewritemask_non": [39, 40], "ua_attributewritemask_rolepermiss": [39, 40], "ua_attributewritemask_symmetr": [39, 40], "ua_attributewritemask_useraccesslevel": [39, 40], "ua_attributewritemask_userexecut": [39, 40], "ua_attributewritemask_userwritemask": [39, 40], "ua_attributewritemask_valueforvariabletyp": [39, 40], "ua_attributewritemask_valuerank": [39, 40], "ua_attributewritemask_writemask": [39, 40], "ua_audiodatatyp": [39, 40], "ua_axisinform": [39, 40], "ua_axisscaleenumer": [39, 40], "ua_axisscaleenumeration_linear": [39, 40], "ua_axisscaleenumeration_ln": [39, 40], "ua_axisscaleenumeration_log": [39, 40], "ua_bitfieldmaskdatatyp": [39, 40], "ua_boolean": [1, 2, 3, 5, 13, 15, 19, 21, 22, 26, 29, 30, 35, 39, 40, 41], "ua_brokerconnectiontransportdatatyp": [39, 40], "ua_brokerdatasetreadertransportdatatyp": [39, 40], "ua_brokerdatasetwritertransportdatatyp": [39, 40], "ua_brokertransportqualityofservic": [39, 40], "ua_brokertransportqualityofservice_atleastonc": [39, 40], "ua_brokertransportqualityofservice_atmostonc": [39, 40], "ua_brokertransportqualityofservice_besteffort": [39, 40], "ua_brokertransportqualityofservice_exactlyonc": [39, 40], "ua_brokertransportqualityofservice_notspecifi": [39, 40], "ua_brokerwritergrouptransportdatatyp": [39, 40], "ua_browsedescript": [22, 39, 40], "ua_browsedirect": [19, 39, 40], "ua_browsedirection_both": [39, 40], "ua_browsedirection_forward": [39, 40], "ua_browsedirection_invalid": [39, 40], "ua_browsedirection_invers": [39, 40], "ua_browsenextrequest": [1, 3, 39, 40], "ua_browsenextrespons": [1, 3, 39, 40], "ua_browsepath": [22, 35, 39, 40], "ua_browsepath_init": 35, "ua_browsepathresult": [22, 35, 39, 40], "ua_browsepathresult_clear": 35, "ua_browsepathtarget": [39, 40], "ua_browserequest": [1, 3, 39, 40], "ua_browserespons": [1, 3, 39, 40], "ua_browseresult": [22, 39, 40], "ua_browseresultmask": [39, 40], "ua_browseresultmask_al": [39, 40], "ua_browseresultmask_browsenam": [39, 40], "ua_browseresultmask_displaynam": [39, 40], "ua_browseresultmask_isforward": [39, 40], "ua_browseresultmask_nodeclass": [39, 40], "ua_browseresultmask_non": [39, 40], "ua_browseresultmask_referencetypeid": [39, 40], "ua_browseresultmask_referencetypeinfo": [39, 40], "ua_browseresultmask_targetinfo": [39, 40], "ua_browseresultmask_typedefinit": [39, 40], "ua_build_exampl": 0, "ua_build_unit_test": 0, "ua_buildinfo": [39, 40], "ua_byt": [2, 3, 5, 15, 19, 20, 21, 22, 26, 33, 39, 40, 41], "ua_byte_max": 39, "ua_byte_min": 39, "ua_bytestr": [1, 5, 7, 8, 9, 10, 11, 15, 16, 17, 20, 21, 22, 39, 40, 41], "ua_bytestring_alloc": 39, "ua_bytestring_allocbuff": 39, "ua_bytestring_clear": [7, 8, 9, 10, 11], "ua_bytestring_frombase64": 39, "ua_bytestring_hash": 39, "ua_bytestring_memzero": [5, 41], "ua_bytestring_nul": 39, "ua_bytestring_tobase64": 39, "ua_calcsizebinari": 39, "ua_calcsizejson": 39, "ua_calcsizexml": 39, "ua_callback": 17, "ua_callmethodrequest": [22, 39, 40], "ua_callmethodresult": [22, 39, 40], "ua_calloc": 28, "ua_callrequest": [1, 39, 40], "ua_callrespons": [1, 3, 39, 40], "ua_cancelrequest": [39, 40], "ua_cancelrespons": [39, 40], "ua_certificategroup": [1, 16, 22], "ua_certificateutils_decryptprivatekei": 16, "ua_certificateutils_getexpirationd": 16, "ua_certificateutils_getkeys": 16, "ua_certificateutils_getsubjectnam": 16, "ua_certificateutils_getthumbprint": 16, "ua_certificateutils_verifyapplicationuri": 16, "ua_channelsecuritytoken": [39, 40], "ua_clear": 39, "ua_client": [1, 2, 3, 4, 5, 25], "ua_client_activatecurrentsess": 1, "ua_client_activatecurrentsessionasync": 1, "ua_client_activatesess": 1, "ua_client_activatesessionasync": 1, "ua_client_adddatatypenod": 2, "ua_client_adddatatypenode_async": 3, "ua_client_addmethodnod": 2, "ua_client_addmethodnode_async": 3, "ua_client_addobjectnod": 2, "ua_client_addobjectnode_async": 3, "ua_client_addobjecttypenod": 2, "ua_client_addobjecttypenode_async": 3, "ua_client_addrefer": 2, "ua_client_addreferencetypenod": 2, "ua_client_addreferencetypenode_async": 3, "ua_client_addrepeatedcallback": 1, "ua_client_addtimedcallback": 1, "ua_client_addvariablenod": 2, "ua_client_addvariablenode_async": 3, "ua_client_addvariabletypenod": 2, "ua_client_addvariabletypenode_async": 3, "ua_client_addviewnod": 2, "ua_client_addviewnode_async": 3, "ua_client_asyncwrit": 3, "ua_client_cal": 2, "ua_client_call_async": 3, "ua_client_cancelbyrequesthandl": 1, "ua_client_cancelbyrequestid": 1, "ua_client_changerepeatedcallbackinterv": 1, "ua_client_connect": [1, 25], "ua_client_connectasync": 1, "ua_client_connectsecurechannel": 1, "ua_client_connectsecurechannelasync": 1, "ua_client_connectusernam": 1, "ua_client_datachangenotificationcallback": 4, "ua_client_delet": [1, 25], "ua_client_deletemonitoreditemcallback": 4, "ua_client_deletenod": 2, "ua_client_deleterefer": 2, "ua_client_deletesubscriptioncallback": 4, "ua_client_disconnect": 1, "ua_client_disconnectasync": 1, "ua_client_disconnectsecurechannel": 1, "ua_client_disconnectsecurechannelasync": 1, "ua_client_eventnotificationcallback": 4, "ua_client_finddatatyp": 1, "ua_client_findserv": 1, "ua_client_findserversonnetwork": 1, "ua_client_foreachchildnodecal": 2, "ua_client_getconfig": [1, 25], "ua_client_getconnectionattribut": 1, "ua_client_getconnectionattribute_scalar": 1, "ua_client_getconnectionattributecopi": 1, "ua_client_getcontext": 1, "ua_client_getendpoint": 1, "ua_client_getsessionauthenticationtoken": 1, "ua_client_getst": 1, "ua_client_highlevel": 1, "ua_client_historyread_ev": 2, "ua_client_historyread_modifi": 2, "ua_client_historyread_raw": 2, "ua_client_historyupdate_deleteraw": 2, "ua_client_historyupdate_insert": 2, "ua_client_historyupdate_replac": 2, "ua_client_historyupdate_upd": 2, "ua_client_modifyasynccallback": 1, "ua_client_monitoreditems_createdatachang": 4, "ua_client_monitoreditems_createdatachanges_async": 4, "ua_client_monitoreditems_createev": 4, "ua_client_monitoreditems_createevents_async": 4, "ua_client_monitoreditems_delet": 4, "ua_client_monitoreditems_delete_async": 4, "ua_client_monitoreditems_deletesingl": 4, "ua_client_monitoreditems_modifi": 4, "ua_client_monitoreditems_modify_async": 4, "ua_client_monitoreditems_setmonitoringmod": 4, "ua_client_monitoreditems_setmonitoringmode_async": 4, "ua_client_monitoreditems_settrigg": 4, "ua_client_monitoreditems_settriggering_async": 4, "ua_client_namespacegetindex": 2, "ua_client_new": [1, 25], "ua_client_newwithconfig": 1, "ua_client_readaccesslevelattribut": 2, "ua_client_readaccesslevelattribute_async": 3, "ua_client_readaccesslevelexattribut": 2, "ua_client_readaccesslevelexattribute_async": 3, "ua_client_readarraydimensionsattribut": 2, "ua_client_readarraydimensionsattribute_async": 3, "ua_client_readattribute_async": 3, "ua_client_readbrowsenameattribut": 2, "ua_client_readbrowsenameattribute_async": 3, "ua_client_readcontainsnoloopsattribut": 2, "ua_client_readcontainsnoloopsattribute_async": 3, "ua_client_readdatatypeattribut": 2, "ua_client_readdatatypeattribute_async": 3, "ua_client_readdescriptionattribut": 2, "ua_client_readdescriptionattribute_async": 3, "ua_client_readdisplaynameattribut": 2, "ua_client_readdisplaynameattribute_async": 3, "ua_client_readeventnotifierattribut": 2, "ua_client_readeventnotifierattribute_async": 3, "ua_client_readexecutableattribut": 2, "ua_client_readexecutableattribute_async": 3, "ua_client_readhistorizingattribut": 2, "ua_client_readhistorizingattribute_async": 3, "ua_client_readinversenameattribut": 2, "ua_client_readinversenameattribute_async": 3, "ua_client_readisabstractattribut": 2, "ua_client_readisabstractattribute_async": 3, "ua_client_readminimumsamplingintervalattribut": 2, "ua_client_readminimumsamplingintervalattribute_async": 3, "ua_client_readnodeclassattribut": 2, "ua_client_readnodeclassattribute_async": 3, "ua_client_readnodeidattribut": 2, "ua_client_readsymmetricattribut": 2, "ua_client_readsymmetricattribute_async": 3, "ua_client_readuseraccesslevelattribut": 2, "ua_client_readuseraccesslevelattribute_async": 3, "ua_client_readuserexecutableattribut": 2, "ua_client_readuserexecutableattribute_async": 3, "ua_client_readuserwritemaskattribut": 2, "ua_client_readuserwritemaskattribute_async": 3, "ua_client_readvalueattribut": [2, 25], "ua_client_readvalueattribute_async": 3, "ua_client_readvaluerankattribut": 2, "ua_client_readvaluerankattribute_async": 3, "ua_client_readwritemaskattribut": 2, "ua_client_readwritemaskattribute_async": 3, "ua_client_removecallback": 1, "ua_client_removerepeatedcallback": 1, "ua_client_renewsecurechannel": 1, "ua_client_run_iter": [1, 4], "ua_client_sendasyncbrowsenextrequest": 3, "ua_client_sendasyncbrowserequest": 3, "ua_client_sendasyncreadrequest": 3, "ua_client_sendasyncwriterequest": 3, "ua_client_service_addnod": 1, "ua_client_service_addrefer": 1, "ua_client_service_brows": 1, "ua_client_service_browsenext": 1, "ua_client_service_cal": 1, "ua_client_service_deletenod": 1, "ua_client_service_deleterefer": 1, "ua_client_service_historyread": 1, "ua_client_service_historyupd": 1, "ua_client_service_queryfirst": 1, "ua_client_service_querynext": 1, "ua_client_service_read": [1, 25], "ua_client_service_registernod": 1, "ua_client_service_translatebrowsepathstonodeid": 1, "ua_client_service_unregisternod": 1, "ua_client_service_writ": 1, "ua_client_startlisteningforreverseconnect": 1, "ua_client_statuschangenotificationcallback": 4, "ua_client_subscriptions_cr": 4, "ua_client_subscriptions_create_async": 4, "ua_client_subscriptions_delet": 4, "ua_client_subscriptions_delete_async": 4, "ua_client_subscriptions_deletesingl": 4, "ua_client_subscriptions_modifi": 4, "ua_client_subscriptions_modify_async": 4, "ua_client_subscriptions_setpublishingmod": 4, "ua_client_writ": 25, "ua_client_writeaccesslevelattribut": 2, "ua_client_writeaccesslevelattribute_async": 3, "ua_client_writeaccesslevelexattribut": 2, "ua_client_writeaccesslevelexattribute_async": 3, "ua_client_writearraydimensionsattribut": 2, "ua_client_writebrowsenameattribut": 2, "ua_client_writebrowsenameattribute_async": 3, "ua_client_writecontainsnoloopsattribut": 2, "ua_client_writecontainsnoloopsattribute_async": 3, "ua_client_writedatatypeattribut": 2, "ua_client_writedatatypeattribute_async": 3, "ua_client_writedescriptionattribut": 2, "ua_client_writedescriptionattribute_async": 3, "ua_client_writedisplaynameattribut": 2, "ua_client_writedisplaynameattribute_async": 3, "ua_client_writeeventnotifierattribut": 2, "ua_client_writeeventnotifierattribute_async": 3, "ua_client_writeexecutableattribut": 2, "ua_client_writeexecutableattribute_async": 3, "ua_client_writehistorizingattribut": 2, "ua_client_writehistorizingattribute_async": 3, "ua_client_writeinversenameattribut": 2, "ua_client_writeinversenameattribute_async": 3, "ua_client_writeisabstractattribut": 2, "ua_client_writeisabstractattribute_async": 3, "ua_client_writeminimumsamplingintervalattribut": 2, "ua_client_writeminimumsamplingintervalattribute_async": 3, "ua_client_writenodeclassattribut": 2, "ua_client_writenodeclassattribute_async": 3, "ua_client_writenodeidattribut": 2, "ua_client_writenodeidattribute_async": 3, "ua_client_writesymmetricattribut": 2, "ua_client_writesymmetricattribute_async": 3, "ua_client_writeuseraccesslevelattribut": 2, "ua_client_writeuserexecutableattribut": 2, "ua_client_writeuserwritemaskattribut": 2, "ua_client_writevalueattribut": 2, "ua_client_writevalueattribute_async": 3, "ua_client_writevalueattribute_scalar": 2, "ua_client_writevalueattributeex": 2, "ua_client_writevaluerankattribut": 2, "ua_client_writevaluerankattribute_async": 3, "ua_client_writewritemaskattribut": 2, "ua_client_writewritemaskattribute_async": 3, "ua_clientasyncaddnodescallback": 3, "ua_clientasyncbrowsecallback": 3, "ua_clientasyncbrowsenextcallback": 3, "ua_clientasynccallcallback": 3, "ua_clientasyncoperationcallback": 3, "ua_clientasyncreadaccesslevelattributecallback": 3, "ua_clientasyncreadaccesslevelexattributecallback": 3, "ua_clientasyncreadattributecallback": 3, "ua_clientasyncreadbrowsenameattributecallback": 3, "ua_clientasyncreadcallback": 3, "ua_clientasyncreadcontainsnoloopsattributecallback": 3, "ua_clientasyncreaddatatypeattributecallback": 3, "ua_clientasyncreaddescriptionattributecallback": 3, "ua_clientasyncreaddisplaynameattributecallback": 3, "ua_clientasyncreadeventnotifierattributecallback": 3, "ua_clientasyncreadexecutableattributecallback": 3, "ua_clientasyncreadhistorizingattributecallback": 3, "ua_clientasyncreadinversenameattributecallback": 3, "ua_clientasyncreadisabstractattributecallback": 3, "ua_clientasyncreadminimumsamplingintervalattributecallback": 3, "ua_clientasyncreadnodeclassattributecallback": 3, "ua_clientasyncreadsymmetricattributecallback": 3, "ua_clientasyncreaduseraccesslevelattributecallback": 3, "ua_clientasyncreaduserexecutableattributecallback": 3, "ua_clientasyncreaduserwritemaskattributecallback": 3, "ua_clientasyncreadvalueattributecallback": 3, "ua_clientasyncreadvaluerankattributecallback": 3, "ua_clientasyncreadwritemaskattributecallback": 3, "ua_clientasyncservicecallback": [1, 3, 4], "ua_clientasyncwritecallback": 3, "ua_clientcallback": 1, "ua_clientconfig": [1, 21, 22], "ua_clientconfig_clear": 1, "ua_clientconfig_copi": 1, "ua_clientconfig_delet": 1, "ua_clientconfig_setauthenticationcert": 1, "ua_clientconfig_setauthenticationusernam": 1, "ua_clientconfig_setdefault": 25, "ua_clientreadarraydimensionsattributecallback": 3, "ua_closesecurechannelrequest": [39, 40], "ua_closesecurechannelrespons": [39, 40], "ua_closesessionrequest": [39, 40], "ua_closesessionrespons": [39, 40], "ua_complexnumbertyp": [39, 40], "ua_config": [0, 18], "ua_config_default": 22, "ua_configurationversiondatatyp": [21, 39, 40], "ua_connectionconfig": [1, 5, 41], "ua_connectionmanag": 17, "ua_connectionmanager_connectioncallback": 17, "ua_connectionmanager_new_mqtt": 17, "ua_connectionmanager_new_posix_ethernet": 17, "ua_connectionmanager_new_posix_tcp": 17, "ua_connectionmanager_new_posix_udp": 17, "ua_connectionst": [5, 17], "ua_connectionstate_clos": [5, 17], "ua_connectionstate_establish": [5, 17], "ua_connectionstate_open": [5, 17], "ua_constanttimeequ": [5, 41], "ua_contentfilt": [21, 39, 40], "ua_contentfilterel": [39, 40], "ua_contentfilterelementresult": [39, 40], "ua_contentfilterresult": [39, 40], "ua_continuationpoint": [39, 40], "ua_copi": [26, 39], "ua_count": [39, 40], "ua_createmonitoreditemsrequest": [4, 39, 40], "ua_createmonitoreditemsrespons": [4, 39, 40], "ua_createsessionrequest": [39, 40], "ua_createsessionrespons": [39, 40], "ua_createsubscriptionrequest": [4, 39, 40], "ua_createsubscriptionrequest_default": 4, "ua_createsubscriptionrequest_init": 4, "ua_createsubscriptionrespons": [4, 39, 40], "ua_currencyunittyp": [39, 40], "ua_datachangefilt": [39, 40], "ua_datachangenotif": [39, 40], "ua_datachangetrigg": [39, 40], "ua_datachangetrigger_statu": [39, 40], "ua_datachangetrigger_statusvalu": [39, 40], "ua_datachangetrigger_statusvaluetimestamp": [39, 40], "ua_datagramconnectiontransport2datatyp": [39, 40], "ua_datagramconnectiontransportdatatyp": [39, 40], "ua_datagramdatasetreadertransportdatatyp": [39, 40], "ua_datagramwritergrouptransport2datatyp": [39, 40], "ua_datagramwritergrouptransportdatatyp": [39, 40], "ua_datasetfieldconfig": [21, 27], "ua_datasetfieldconfig_clear": 21, "ua_datasetfieldcontentmask": [21, 39, 40], "ua_datasetfieldcontentmask_non": [39, 40], "ua_datasetfieldcontentmask_rawdata": [39, 40], "ua_datasetfieldcontentmask_serverpicosecond": [39, 40], "ua_datasetfieldcontentmask_servertimestamp": [39, 40], "ua_datasetfieldcontentmask_sourcepicosecond": [39, 40], "ua_datasetfieldcontentmask_sourcetimestamp": [39, 40], "ua_datasetfieldcontentmask_statuscod": [39, 40], "ua_datasetfieldflag": [39, 40], "ua_datasetfieldflags_non": [39, 40], "ua_datasetfieldflags_promotedfield": [39, 40], "ua_datasetfieldresult": 21, "ua_datasetfieldtyp": 21, "ua_datasetmetadatatyp": [21, 28, 39, 40], "ua_datasetmetadatatype_init": 28, "ua_datasetorderingtyp": [39, 40], "ua_datasetorderingtype_ascendingwriterid": [39, 40], "ua_datasetorderingtype_ascendingwriteridsingl": [39, 40], "ua_datasetorderingtype_undefin": [39, 40], "ua_datasetreaderconfig": [21, 28], "ua_datasetreaderconfig_clear": 21, "ua_datasetreaderconfig_copi": 21, "ua_datasetreaderdatatyp": [39, 40], "ua_datasetvariableconfig": 21, "ua_datasetwriterconfig": [21, 27], "ua_datasetwriterconfig_clear": 21, "ua_datasetwriterdatatyp": [39, 40], "ua_datasourc": [19, 22, 30], "ua_datatyp": [0, 1, 2, 3, 5, 6, 19, 22, 39, 41], "ua_datatype_getstructmemb": 39, "ua_datatype_isnumer": 39, "ua_datatypearrai": [1, 22, 39], "ua_datatypeattribut": [2, 3, 5, 22, 39, 40, 41], "ua_datatypeattributes_default": [5, 41], "ua_datatypedescript": [39, 40], "ua_datatypekind": 39, "ua_datatypekind_bitfieldclust": 39, "ua_datatypekind_boolean": 39, "ua_datatypekind_byt": 39, "ua_datatypekind_bytestr": 39, "ua_datatypekind_datavalu": 39, "ua_datatypekind_datetim": 39, "ua_datatypekind_decim": 39, "ua_datatypekind_diagnosticinfo": 39, "ua_datatypekind_doubl": 39, "ua_datatypekind_enum": 39, "ua_datatypekind_expandednodeid": 39, "ua_datatypekind_extensionobject": 39, "ua_datatypekind_float": 39, "ua_datatypekind_guid": 39, "ua_datatypekind_int16": 39, "ua_datatypekind_int32": 39, "ua_datatypekind_int64": 39, "ua_datatypekind_localizedtext": 39, "ua_datatypekind_nodeid": 39, "ua_datatypekind_optstruct": 39, "ua_datatypekind_qualifiednam": 39, "ua_datatypekind_sbyt": 39, "ua_datatypekind_statuscod": 39, "ua_datatypekind_str": 39, "ua_datatypekind_structur": 39, "ua_datatypekind_uint16": 39, "ua_datatypekind_uint32": 39, "ua_datatypekind_uint64": 39, "ua_datatypekind_union": 39, "ua_datatypekind_vari": 39, "ua_datatypekind_xmlel": 39, "ua_datatypememb": 39, "ua_datatypenod": 19, "ua_datatypeschemahead": [39, 40], "ua_datavalu": [2, 3, 4, 15, 19, 21, 22, 26, 29, 30, 34, 39, 40], "ua_datavalue_copyvariantrang": 39, "ua_datavalue_init": 26, "ua_datestr": [39, 40], "ua_datetim": [1, 2, 15, 16, 17, 21, 22, 25, 30, 31, 39, 40], "ua_datetime_fromstruct": 39, "ua_datetime_fromunixtim": 39, "ua_datetime_localtimeutcoffset": 39, "ua_datetime_msec": 39, "ua_datetime_now": [22, 26, 30, 31, 39], "ua_datetime_nowmonoton": 39, "ua_datetime_sec": 39, "ua_datetime_tostruct": [25, 39], "ua_datetime_tounixtim": 39, "ua_datetime_unix_epoch": 39, "ua_datetime_usec": 39, "ua_datetimestruct": [25, 39], "ua_deadbandtyp": [39, 40], "ua_deadbandtype_absolut": [39, 40], "ua_deadbandtype_non": [39, 40], "ua_deadbandtype_perc": [39, 40], "ua_debug": 0, "ua_debug_dump_pkg": 0, "ua_decimaldatatyp": [39, 40], "ua_decimalstr": [39, 40], "ua_decodebinari": 39, "ua_decodebinaryopt": 39, "ua_decodejson": 39, "ua_decodejsonopt": 39, "ua_decodexml": 39, "ua_decodexmlopt": 39, "ua_delayedcallback": 17, "ua_delet": 39, "ua_deleteattimedetail": [39, 40], "ua_deleteeventdetail": [39, 40], "ua_deletemonitoreditemsrequest": [4, 39, 40], "ua_deletemonitoreditemsrespons": [4, 39, 40], "ua_deletenodesitem": [15, 39, 40], "ua_deletenodesrequest": [1, 39, 40], "ua_deletenodesrespons": [1, 39, 40], "ua_deleterawmodifieddetail": [39, 40], "ua_deletereferencesitem": [15, 39, 40], "ua_deletereferencesrequest": [1, 39, 40], "ua_deletereferencesrespons": [1, 39, 40], "ua_deletesubscriptionsrequest": [4, 39, 40], "ua_deletesubscriptionsrespons": [4, 39, 40], "ua_deprec": 22, "ua_diagnosticinfo": [39, 40], "ua_diagnosticslevel": [39, 40], "ua_diagnosticslevel_advanc": [39, 40], "ua_diagnosticslevel_bas": [39, 40], "ua_diagnosticslevel_debug": [39, 40], "ua_diagnosticslevel_info": [39, 40], "ua_diagnosticslevel_log": [39, 40], "ua_doubl": [1, 2, 3, 17, 19, 21, 22, 26, 35, 36, 37, 39, 40], "ua_double_max": 39, "ua_double_min": 39, "ua_doublecomplexnumbertyp": [39, 40], "ua_duplex": [39, 40], "ua_duplex_ful": [39, 40], "ua_duplex_half": [39, 40], "ua_duplex_unknown": [39, 40], "ua_dur": [5, 21, 39, 40, 41], "ua_durationrang": [5, 22, 41], "ua_durationstr": [39, 40], "ua_eccencryptedsecret": [39, 40], "ua_elementoperand": [39, 40], "ua_empty_array_sentinel": 39, "ua_enable_amalgam": 0, "ua_enable_coverag": 0, "ua_enable_discoveri": [0, 22], "ua_enable_discovery_multicast": [0, 22], "ua_enable_discovery_semaphor": 0, "ua_enable_encrypt": [0, 1, 22], "ua_enable_encryption_tpm2": 0, "ua_enable_full_ns0": 0, "ua_enable_histor": [15, 22], "ua_enable_immutable_nod": 0, "ua_enable_json_encod": [26, 39], "ua_enable_methodcal": [0, 22], "ua_enable_nodemanag": 0, "ua_enable_pars": [0, 5, 22, 39, 41], "ua_enable_pubsub": [0, 21, 22], "ua_enable_pubsub_encrypt": [20, 21], "ua_enable_pubsub_file_config": 0, "ua_enable_pubsub_informationmodel": [0, 21], "ua_enable_pubsub_monitor": [0, 21], "ua_enable_pubsub_sk": 21, "ua_enable_queri": 1, "ua_enable_statuscode_descript": [0, 39], "ua_enable_subscript": [0, 15, 19, 22], "ua_enable_subscriptions_alarms_condit": [0, 22], "ua_enable_subscriptions_ev": [0, 5, 22, 41], "ua_enable_typedescript": [0, 39], "ua_enable_xml_encod": 39, "ua_encodebinari": 39, "ua_encodejson": 39, "ua_encodejsonopt": 39, "ua_encodexml": 39, "ua_encodexmlopt": 39, "ua_endpointconfigur": [39, 40], "ua_endpointdescript": [1, 15, 22, 39, 40], "ua_endpointtyp": [39, 40], "ua_endpointurllistdatatyp": [39, 40], "ua_entering_ackedst": [22, 29], "ua_entering_activest": 22, "ua_entering_confirmedst": [22, 29], "ua_entering_enabledst": [22, 29], "ua_enumdefinit": [39, 40], "ua_enumdescript": [39, 40], "ua_enumer": [39, 40], "ua_enumfield": [39, 40], "ua_enumvaluetyp": [39, 40], "ua_ephemeralkeytyp": [39, 40], "ua_equ": 39, "ua_euinform": [39, 40], "ua_eventfieldlist": [39, 40], "ua_eventfilt": [2, 5, 7, 8, 9, 10, 11, 22, 39, 40, 41], "ua_eventfilter_init": [7, 8, 9, 10, 11], "ua_eventfilter_pars": [5, 7, 8, 9, 10, 11, 41], "ua_eventfilterparseropt": [5, 41], "ua_eventfilterresult": [39, 40], "ua_eventloop": [1, 17, 21, 22], "ua_eventloop_findeventsourc": 17, "ua_eventloop_new_posix": 17, "ua_eventloopst": 17, "ua_eventloopstate_fresh": 17, "ua_eventloopstate_start": 17, "ua_eventloopstate_stop": 17, "ua_eventnotificationlist": [39, 40], "ua_eventnotifier_history_read": 5, "ua_eventnotifier_history_writ": 5, "ua_eventnotifier_subscribe_to_ev": 5, "ua_eventnotifiertyp": [39, 40], "ua_eventnotifiertype_historyread": [39, 40], "ua_eventnotifiertype_historywrit": [39, 40], "ua_eventnotifiertype_non": [39, 40], "ua_eventnotifiertype_subscribetoev": [39, 40], "ua_eventsourc": 17, "ua_eventsourcest": 17, "ua_eventsourcestate_fresh": 17, "ua_eventsourcestate_start": 17, "ua_eventsourcestate_stop": 17, "ua_eventsourcetyp": 17, "ua_eventsourcetype_connectionmanag": 17, "ua_eventsourcetype_interruptmanag": 17, "ua_exceptiondeviationformat": [39, 40], "ua_exceptiondeviationformat_absolutevalu": [39, 40], "ua_exceptiondeviationformat_percentofeurang": [39, 40], "ua_exceptiondeviationformat_percentofrang": [39, 40], "ua_exceptiondeviationformat_percentofvalu": [39, 40], "ua_exceptiondeviationformat_unknown": [39, 40], "ua_expandednodeid": [2, 19, 22, 39, 40], "ua_expandednodeid_bytestr": 39, "ua_expandednodeid_bytestring_alloc": 39, "ua_expandednodeid_hash": 39, "ua_expandednodeid_isloc": 39, "ua_expandednodeid_nodeid": 39, "ua_expandednodeid_nul": 39, "ua_expandednodeid_numer": [29, 35, 39], "ua_expandednodeid_ord": 39, "ua_expandednodeid_pars": 39, "ua_expandednodeid_print": 39, "ua_expandednodeid_str": 39, "ua_expandednodeid_string_alloc": 39, "ua_expandednodeid_string_guid": 39, "ua_extensionobject": [1, 2, 15, 21, 39, 40], "ua_extensionobject_clear": 1, "ua_extensionobject_decod": [27, 39], "ua_extensionobject_decoded_nodelet": 39, "ua_extensionobject_encoded_bytestr": 39, "ua_extensionobject_encoded_nobodi": 39, "ua_extensionobject_encoded_xml": 39, "ua_extensionobject_setvalu": [1, 39], "ua_extensionobject_setvaluecopi": 39, "ua_extensionobject_setvaluenodelet": 39, "ua_extensionobjectencod": 39, "ua_externalvaluecallback": 19, "ua_fals": [19, 27, 29, 39], "ua_fieldmetadata": [28, 39, 40], "ua_fieldmetadata_init": 28, "ua_fieldtargetdatatyp": [21, 39, 40], "ua_fieldtargetdatatype_clear": 28, "ua_fieldtargetdatatype_init": 28, "ua_fieldtargetvari": [21, 28], "ua_file_ns0": [0, 13], "ua_filteroper": [39, 40], "ua_filteroperator_and": [39, 40], "ua_filteroperator_between": [39, 40], "ua_filteroperator_bitwiseand": [39, 40], "ua_filteroperator_bitwiseor": [39, 40], "ua_filteroperator_cast": [39, 40], "ua_filteroperator_equ": [39, 40], "ua_filteroperator_greaterthan": [39, 40], "ua_filteroperator_greaterthanorequ": [39, 40], "ua_filteroperator_inlist": [39, 40], "ua_filteroperator_inview": [39, 40], "ua_filteroperator_isnul": [39, 40], "ua_filteroperator_lessthan": [39, 40], "ua_filteroperator_lessthanorequ": [39, 40], "ua_filteroperator_lik": [39, 40], "ua_filteroperator_not": [39, 40], "ua_filteroperator_oftyp": [39, 40], "ua_filteroperator_or": [39, 40], "ua_filteroperator_relatedto": [39, 40], "ua_finddatatyp": 39, "ua_finddatatypewithcustom": 39, "ua_findserversonnetworkrequest": [39, 40], "ua_findserversonnetworkrespons": [39, 40], "ua_findserversrequest": [39, 40], "ua_findserversrespons": [39, 40], "ua_float": [26, 39, 40], "ua_float_max": 39, "ua_float_min": 39, "ua_format": 18, "ua_fre": 28, "ua_generate_datatyp": 13, "ua_generate_nodeset": 13, "ua_generate_nodeset_and_datatyp": 13, "ua_genericattribut": [39, 40], "ua_genericattributevalu": [39, 40], "ua_getendpointsrequest": [39, 40], "ua_getendpointsrespons": [39, 40], "ua_globalnodelifecycl": [19, 22], "ua_guid": [5, 39, 40, 41], "ua_guid_nul": 39, "ua_guid_pars": 39, "ua_guid_print": 39, "ua_guid_random": [5, 41], "ua_has_getifaddr": 22, "ua_historicaliteratorcallback": 2, "ua_historydata": [39, 40], "ua_historydatabas": 22, "ua_historyev": [39, 40], "ua_historyeventfieldlist": [39, 40], "ua_historymodifieddata": [39, 40], "ua_historyreadrequest": [1, 39, 40], "ua_historyreadrespons": [1, 39, 40], "ua_historyreadresult": [39, 40], "ua_historyreadvalueid": [39, 40], "ua_historyupdatedetail": [39, 40], "ua_historyupdaterequest": [1, 39, 40], "ua_historyupdaterespons": [1, 39, 40], "ua_historyupdateresult": [39, 40], "ua_historyupdatetyp": [39, 40], "ua_historyupdatetype_delet": [39, 40], "ua_historyupdatetype_insert": [39, 40], "ua_historyupdatetype_replac": [39, 40], "ua_historyupdatetype_upd": [39, 40], "ua_identitycriteriatyp": [39, 40], "ua_identitycriteriatype_anonym": [39, 40], "ua_identitycriteriatype_appl": [39, 40], "ua_identitycriteriatype_authenticatedus": [39, 40], "ua_identitycriteriatype_groupid": [39, 40], "ua_identitycriteriatype_rol": [39, 40], "ua_identitycriteriatype_thumbprint": [39, 40], "ua_identitycriteriatype_usernam": [39, 40], "ua_identitycriteriatype_x509subject": [39, 40], "ua_identitymappingruletyp": [39, 40], "ua_idtyp": [39, 40], "ua_idtype_guid": [39, 40], "ua_idtype_numer": [39, 40], "ua_idtype_opaqu": [39, 40], "ua_idtype_str": [39, 40], "ua_imagebmp": [39, 40], "ua_imagegif": [39, 40], "ua_imagejpg": [39, 40], "ua_imagepng": [39, 40], "ua_index": [39, 40], "ua_init": [26, 39], "ua_inlin": [1, 2, 3, 4, 18, 19, 22, 39], "ua_int16": [39, 40], "ua_int16_max": 39, "ua_int16_min": 39, "ua_int32": [2, 3, 19, 22, 26, 33, 36, 39, 40], "ua_int32_copi": 26, "ua_int32_delet": 26, "ua_int32_max": 39, "ua_int32_min": 39, "ua_int32_new": [26, 39], "ua_int64": [17, 39, 40], "ua_int64_max": 39, "ua_int64_min": 39, "ua_integerid": [39, 40], "ua_interfaceadminstatu": [39, 40], "ua_interfaceadminstatus_down": [39, 40], "ua_interfaceadminstatus_test": [39, 40], "ua_interfaceadminstatus_up": [39, 40], "ua_interfaceoperstatu": [39, 40], "ua_interfaceoperstatus_dorm": [39, 40], "ua_interfaceoperstatus_down": [39, 40], "ua_interfaceoperstatus_lowerlayerdown": [39, 40], "ua_interfaceoperstatus_notpres": [39, 40], "ua_interfaceoperstatus_test": [39, 40], "ua_interfaceoperstatus_unknown": [39, 40], "ua_interfaceoperstatus_up": [39, 40], "ua_internal_deprec": 39, "ua_interruptcallback": 17, "ua_interruptmanag": 17, "ua_interruptmanager_new_posix": 17, "ua_issuedidentitytoken": [39, 40], "ua_jsondatasetmessagecontentmask": [39, 40], "ua_jsondatasetmessagecontentmask_datasetwriterid": [39, 40], "ua_jsondatasetmessagecontentmask_datasetwriternam": [39, 40], "ua_jsondatasetmessagecontentmask_messagetyp": [39, 40], "ua_jsondatasetmessagecontentmask_metadatavers": [39, 40], "ua_jsondatasetmessagecontentmask_non": [39, 40], "ua_jsondatasetmessagecontentmask_reversiblefieldencod": [39, 40], "ua_jsondatasetmessagecontentmask_sequencenumb": [39, 40], "ua_jsondatasetmessagecontentmask_statu": [39, 40], "ua_jsondatasetmessagecontentmask_timestamp": [39, 40], "ua_jsondatasetreadermessagedatatyp": [39, 40], "ua_jsondatasetwritermessagedatatyp": [39, 40], "ua_jsonnetworkmessagecontentmask": [39, 40], "ua_jsonnetworkmessagecontentmask_datasetclassid": [39, 40], "ua_jsonnetworkmessagecontentmask_datasetmessagehead": [39, 40], "ua_jsonnetworkmessagecontentmask_networkmessagehead": [39, 40], "ua_jsonnetworkmessagecontentmask_non": [39, 40], "ua_jsonnetworkmessagecontentmask_publisherid": [39, 40], "ua_jsonnetworkmessagecontentmask_replyto": [39, 40], "ua_jsonnetworkmessagecontentmask_singledatasetmessag": [39, 40], "ua_jsonwritergroupmessagedatatyp": [39, 40], "ua_keyvaluemap": [5, 17, 20, 21, 22, 41], "ua_keyvaluemap_clear": [5, 41], "ua_keyvaluemap_contain": [5, 41], "ua_keyvaluemap_copi": [5, 41], "ua_keyvaluemap_delet": [5, 41], "ua_keyvaluemap_get": [5, 41], "ua_keyvaluemap_getscalar": [5, 41], "ua_keyvaluemap_isempti": [5, 41], "ua_keyvaluemap_merg": [5, 41], "ua_keyvaluemap_new": [5, 41], "ua_keyvaluemap_nul": [5, 41], "ua_keyvaluemap_remov": [5, 41], "ua_keyvaluemap_set": [5, 41], "ua_keyvaluemap_setscalar": [5, 41], "ua_keyvaluepair": [5, 39, 40, 41], "ua_lifecyclest": [5, 22], "ua_lifecyclestate_start": 5, "ua_lifecyclestate_stop": 5, "ua_literaloperand": [39, 40], "ua_localeid": [1, 39, 40], "ua_localizedtext": [2, 3, 13, 19, 22, 28, 29, 30, 31, 33, 35, 36, 37, 39, 40], "ua_localizedtext_alloc": 39, "ua_localizedtext_copi": 28, "ua_localizedtextlistentri": 19, "ua_log_debug": 18, "ua_log_error": [13, 18, 29], "ua_log_fat": 18, "ua_log_info": [13, 18, 25, 30, 31, 33, 34, 35, 37], "ua_log_stdout": [13, 25, 29, 30, 31, 33, 34, 35, 37], "ua_log_trac": 18, "ua_log_warn": [18, 29, 31], "ua_logcategori": 18, "ua_logcategory_cli": 18, "ua_logcategory_discoveri": 18, "ua_logcategory_eventloop": 18, "ua_logcategory_network": 18, "ua_logcategory_pubsub": 18, "ua_logcategory_securechannel": 18, "ua_logcategory_securitypolici": 18, "ua_logcategory_serv": [13, 18, 31, 33], "ua_logcategory_sess": 18, "ua_logcategory_userland": [18, 25, 29, 30, 31, 34, 35, 37], "ua_logg": [1, 5, 16, 17, 18, 20, 22, 41], "ua_loglevel": [0, 18], "ua_loglevel_debug": 18, "ua_loglevel_error": 18, "ua_loglevel_fat": 18, "ua_loglevel_info": 18, "ua_loglevel_trac": 18, "ua_loglevel_warn": 18, "ua_max": [5, 41], "ua_mdnsdiscoveryconfigur": [22, 39, 40], "ua_messagesecuritymod": [1, 21, 39, 40], "ua_messagesecuritymode_invalid": [39, 40], "ua_messagesecuritymode_non": [39, 40], "ua_messagesecuritymode_sign": [39, 40], "ua_messagesecuritymode_signandencrypt": [39, 40], "ua_methodattribut": [2, 3, 5, 22, 31, 33, 39, 40, 41], "ua_methodattributes_default": [5, 31, 33, 41], "ua_methodcallback": [19, 22], "ua_methodnod": 19, "ua_min": [5, 41], "ua_modelchangestructuredatatyp": [39, 40], "ua_modelchangestructureverbmask": [39, 40], "ua_modelchangestructureverbmask_datatypechang": [39, 40], "ua_modelchangestructureverbmask_nodead": [39, 40], "ua_modelchangestructureverbmask_nodedelet": [39, 40], "ua_modelchangestructureverbmask_referencead": [39, 40], "ua_modelchangestructureverbmask_referencedelet": [39, 40], "ua_modificationinfo": [39, 40], "ua_modifymonitoreditemsrequest": [4, 39, 40], "ua_modifymonitoreditemsrespons": [4, 39, 40], "ua_modifysubscriptionrequest": [4, 39, 40], "ua_modifysubscriptionrespons": [4, 39, 40], "ua_monitoreditem": 19, "ua_monitoreditemcreaterequest": [4, 22, 34, 39, 40], "ua_monitoreditemcreaterequest_default": [4, 34], "ua_monitoreditemcreaterequest_init": 4, "ua_monitoreditemcreateresult": [4, 22, 39, 40], "ua_monitoreditemmodifyrequest": [39, 40], "ua_monitoreditemmodifyresult": [39, 40], "ua_monitoreditemnotif": [39, 40], "ua_monitoringmod": [39, 40], "ua_monitoringmode_dis": [39, 40], "ua_monitoringmode_report": [4, 39, 40], "ua_monitoringmode_sampl": [39, 40], "ua_monitoringparamet": [39, 40], "ua_multithread": [0, 5, 19, 22, 41], "ua_namespace_di": 13, "ua_namespace_plc": 13, "ua_namespace_zero": [0, 13], "ua_namingruletyp": [39, 40], "ua_namingruletype_constraint": [39, 40], "ua_namingruletype_mandatori": [39, 40], "ua_namingruletype_opt": [39, 40], "ua_negotiationstatu": [39, 40], "ua_negotiationstatus_complet": [39, 40], "ua_negotiationstatus_fail": [39, 40], "ua_negotiationstatus_inprogress": [39, 40], "ua_negotiationstatus_nonegoti": [39, 40], "ua_negotiationstatus_unknown": [39, 40], "ua_network_pubsub_networkmessag": 27, "ua_networkaddressdatatyp": [39, 40], "ua_networkaddressurldatatyp": [27, 28, 39, 40], "ua_networkgroupdatatyp": [39, 40], "ua_new": 39, "ua_nod": 19, "ua_node_addrefer": 19, "ua_node_clear": 19, "ua_node_copi": 19, "ua_node_copy_alloc": 19, "ua_node_deleterefer": 19, "ua_node_deletereferencessubset": 19, "ua_node_id_nul": 22, "ua_node_setattribut": 19, "ua_node_variableattribut": 19, "ua_nodeattribut": [2, 3, 22, 39, 40], "ua_nodeattributesmask": [19, 39, 40], "ua_nodeattributesmask_accesslevel": [39, 40], "ua_nodeattributesmask_accessrestrict": [39, 40], "ua_nodeattributesmask_al": [39, 40], "ua_nodeattributesmask_arraydimens": [39, 40], "ua_nodeattributesmask_basenod": [39, 40], "ua_nodeattributesmask_browsenam": [39, 40], "ua_nodeattributesmask_containsnoloop": [39, 40], "ua_nodeattributesmask_datatyp": [39, 40], "ua_nodeattributesmask_datatypedefinit": [39, 40], "ua_nodeattributesmask_descript": [39, 40], "ua_nodeattributesmask_displaynam": [39, 40], "ua_nodeattributesmask_eventnotifi": [39, 40], "ua_nodeattributesmask_execut": [39, 40], "ua_nodeattributesmask_histor": [39, 40], "ua_nodeattributesmask_inversenam": [39, 40], "ua_nodeattributesmask_isabstract": [39, 40], "ua_nodeattributesmask_method": [39, 40], "ua_nodeattributesmask_minimumsamplinginterv": [39, 40], "ua_nodeattributesmask_nodeclass": [39, 40], "ua_nodeattributesmask_nodeid": [39, 40], "ua_nodeattributesmask_non": [39, 40], "ua_nodeattributesmask_object": [39, 40], "ua_nodeattributesmask_objecttyp": [39, 40], "ua_nodeattributesmask_referencetyp": [39, 40], "ua_nodeattributesmask_rolepermiss": [39, 40], "ua_nodeattributesmask_symmetr": [39, 40], "ua_nodeattributesmask_useraccesslevel": [39, 40], "ua_nodeattributesmask_userexecut": [39, 40], "ua_nodeattributesmask_userwritemask": [39, 40], "ua_nodeattributesmask_valu": [39, 40], "ua_nodeattributesmask_valuerank": [39, 40], "ua_nodeattributesmask_vari": [39, 40], "ua_nodeattributesmask_variabletyp": [39, 40], "ua_nodeattributesmask_view": [39, 40], "ua_nodeattributesmask_writemask": [39, 40], "ua_nodeclass": [2, 3, 19, 22, 26, 39, 40], "ua_nodeclass_datatyp": [2, 3, 22, 39, 40], "ua_nodeclass_method": [2, 3, 39, 40], "ua_nodeclass_object": [2, 3, 22, 39, 40], "ua_nodeclass_objecttyp": [2, 3, 22, 39, 40], "ua_nodeclass_referencetyp": [2, 3, 22, 39, 40], "ua_nodeclass_unspecifi": [39, 40], "ua_nodeclass_vari": [2, 3, 22, 39, 40], "ua_nodeclass_variabletyp": [2, 3, 22, 39, 40], "ua_nodeclass_view": [2, 3, 22, 39, 40], "ua_nodehead": 19, "ua_nodeid": [1, 2, 3, 4, 13, 15, 16, 19, 20, 21, 22, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39, 40], "ua_nodeid_bytestr": 39, "ua_nodeid_bytestring_alloc": 39, "ua_nodeid_clear": 26, "ua_nodeid_copi": [26, 28], "ua_nodeid_equ": 26, "ua_nodeid_guid": 39, "ua_nodeid_hash": 39, "ua_nodeid_isnul": 39, "ua_nodeid_nul": [2, 3, 19, 22, 28, 29, 31, 35, 37, 39], "ua_nodeid_numer": [13, 19, 22, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39], "ua_nodeid_ord": 39, "ua_nodeid_pars": 39, "ua_nodeid_print": 39, "ua_nodeid_str": [26, 30, 33, 36, 39], "ua_nodeid_string_alloc": [26, 39], "ua_nodeidtyp": 39, "ua_nodeidtype_bytestr": 39, "ua_nodeidtype_guid": 39, "ua_nodeidtype_numer": [35, 39], "ua_nodeidtype_str": 39, "ua_nodeiteratorcallback": [2, 22], "ua_nodepoint": 19, "ua_nodepointer_clear": 19, "ua_nodepointer_copi": 19, "ua_nodepointer_equ": 19, "ua_nodepointer_fromexpandednodeid": 19, "ua_nodepointer_fromnodeid": 19, "ua_nodepointer_init": 19, "ua_nodepointer_isloc": 19, "ua_nodepointer_ord": 19, "ua_nodepointer_toexpandednodeid": 19, "ua_nodepointer_tonodeid": 19, "ua_noderefer": [39, 40], "ua_nodereferencekind": 19, "ua_nodereferencekind_findtarget": 19, "ua_nodereferencekind_iter": 19, "ua_nodereferencekind_iteratecallback": 19, "ua_nodereferencekind_switch": 19, "ua_nodeset_dir": 13, "ua_nodestor": [19, 22], "ua_nodestorevisitor": 19, "ua_nodetypedescript": [39, 40], "ua_nodetypelifecycl": [19, 22, 35], "ua_normalizedstr": [39, 40], "ua_notificationmessag": [39, 40], "ua_ns0id_basedatavariabletyp": [28, 29, 30, 35, 36, 37], "ua_ns0id_baseeventtyp": 31, "ua_ns0id_baseobjecttyp": [28, 29, 35], "ua_ns0id_boolean": 28, "ua_ns0id_datetim": 28, "ua_ns0id_hascompon": [28, 29, 31, 33, 35, 37], "ua_ns0id_hasmodellingrul": 35, "ua_ns0id_hasnotifi": 29, "ua_ns0id_hassubtyp": [31, 35, 37], "ua_ns0id_int32": 28, "ua_ns0id_int64": 28, "ua_ns0id_modellingrule_mandatori": 35, "ua_ns0id_objectsfold": [13, 28, 29, 30, 31, 33, 35, 36, 37], "ua_ns0id_offnormalalarmtyp": 29, "ua_ns0id_organ": [13, 28, 29, 30, 35, 36], "ua_ns0id_serv": [29, 31], "ua_ns0id_server_serverstatus_currenttim": [25, 27, 34], "ua_numericrang": [19, 29, 30, 39], "ua_numericrange_pars": 39, "ua_numericrangedimens": 39, "ua_objectattribut": [2, 3, 5, 13, 22, 28, 29, 35, 39, 40, 41], "ua_objectattributes_default": [5, 13, 28, 29, 35, 41], "ua_objectnod": 19, "ua_objecttypeattribut": [2, 3, 5, 22, 31, 35, 39, 40, 41], "ua_objecttypeattributes_default": [5, 31, 35, 41], "ua_objecttypenod": 19, "ua_opaquenumericrang": [39, 40], "ua_openfilemod": [39, 40], "ua_openfilemode_append": [39, 40], "ua_openfilemode_eraseexist": [39, 40], "ua_openfilemode_read": [39, 40], "ua_openfilemode_writ": [39, 40], "ua_opensecurechannelrequest": [39, 40], "ua_opensecurechannelrespons": [39, 40], "ua_optionset": [39, 40], "ua_ord": [5, 19, 39], "ua_order_eq": [5, 19, 39], "ua_order_less": 5, "ua_order_mor": 5, "ua_overridevaluehandl": [39, 40], "ua_overridevaluehandling_dis": [39, 40], "ua_overridevaluehandling_lastusablevalu": [39, 40], "ua_overridevaluehandling_overridevalu": [39, 40], "ua_parseendpointurl": [5, 41], "ua_parseendpointurlethernet": [5, 41], "ua_parsingresult": [39, 40], "ua_passwordoptionsmask": [39, 40], "ua_passwordoptionsmask_non": [39, 40], "ua_passwordoptionsmask_requiresdigitcharact": [39, 40], "ua_passwordoptionsmask_requireslowercasecharact": [39, 40], "ua_passwordoptionsmask_requiresspecialcharact": [39, 40], "ua_passwordoptionsmask_requiresuppercasecharact": [39, 40], "ua_passwordoptionsmask_supportdescriptionforus": [39, 40], "ua_passwordoptionsmask_supportdisabledeleteforus": [39, 40], "ua_passwordoptionsmask_supportdisableus": [39, 40], "ua_passwordoptionsmask_supportinitialpasswordchang": [39, 40], "ua_passwordoptionsmask_supportnochangeforus": [39, 40], "ua_performupdatetyp": [15, 39, 40], "ua_performupdatetype_insert": [39, 40], "ua_performupdatetype_remov": [39, 40], "ua_performupdatetype_replac": [39, 40], "ua_performupdatetype_upd": [39, 40], "ua_permissiontyp": [39, 40], "ua_permissiontype_addnod": [39, 40], "ua_permissiontype_addrefer": [39, 40], "ua_permissiontype_brows": [39, 40], "ua_permissiontype_cal": [39, 40], "ua_permissiontype_deletehistori": [39, 40], "ua_permissiontype_deletenod": [39, 40], "ua_permissiontype_inserthistori": [39, 40], "ua_permissiontype_modifyhistori": [39, 40], "ua_permissiontype_non": [39, 40], "ua_permissiontype_read": [39, 40], "ua_permissiontype_readhistori": [39, 40], "ua_permissiontype_readrolepermiss": [39, 40], "ua_permissiontype_receiveev": [39, 40], "ua_permissiontype_removerefer": [39, 40], "ua_permissiontype_writ": [39, 40], "ua_permissiontype_writeattribut": [39, 40], "ua_permissiontype_writehistor": [39, 40], "ua_permissiontype_writerolepermiss": [39, 40], "ua_plugin_certificategroup_h": 16, "ua_portablenodeid": [39, 40], "ua_portablequalifiednam": [39, 40], "ua_print": [26, 39], "ua_printf_guid_data": [5, 41], "ua_printf_guid_format": [5, 41], "ua_printf_string_data": [5, 41], "ua_printf_string_format": [5, 41], "ua_prioritymappingentrytyp": [39, 40], "ua_programdiagnostic2datatyp": [39, 40], "ua_programdiagnosticdatatyp": [39, 40], "ua_publisheddataitemsdatatyp": [39, 40], "ua_publisheddataitemstemplateconfig": 21, "ua_publisheddatasetconfig": [21, 27], "ua_publisheddatasetconfig_clear": 21, "ua_publisheddatasetcustomsourcedatatyp": [39, 40], "ua_publisheddatasetdatatyp": [39, 40], "ua_publisheddatasettyp": 21, "ua_publishedeventconfig": 21, "ua_publishedeventsdatatyp": [39, 40], "ua_publishedeventtemplateconfig": 21, "ua_publishedvariabledatatyp": [21, 39, 40], "ua_publisherid": 21, "ua_publisherid_clear": 21, "ua_publisherid_copi": 21, "ua_publisherid_fromvari": 21, "ua_publisherid_tovari": 21, "ua_publisheridtyp": 21, "ua_publisheridtype_byt": 21, "ua_publisheridtype_str": 21, "ua_publisheridtype_uint16": [21, 27, 28], "ua_publisheridtype_uint32": [21, 28], "ua_publisheridtype_uint64": 21, "ua_publishrequest": [39, 40], "ua_publishrespons": [39, 40], "ua_pubsub_callbacklifecycl": 21, "ua_pubsub_component_connect": 21, "ua_pubsub_component_datasetread": 21, "ua_pubsub_component_datasetwrit": 21, "ua_pubsub_component_readergroup": 21, "ua_pubsub_component_writergroup": 21, "ua_pubsub_dataset_publishedev": 21, "ua_pubsub_dataset_publishedevents_templ": 21, "ua_pubsub_dataset_publisheditem": [21, 27], "ua_pubsub_dataset_publisheditems_templ": 21, "ua_pubsub_datasetfield_ev": 21, "ua_pubsub_datasetfield_vari": [21, 27], "ua_pubsub_encoding_binari": 21, "ua_pubsub_encoding_json": 21, "ua_pubsub_encoding_uadp": [21, 27], "ua_pubsub_monitoring_message_receive_timeout": 21, "ua_pubsub_rt_data_valu": 21, "ua_pubsub_rt_determinist": 21, "ua_pubsub_rt_direct_value_access": 21, "ua_pubsub_rt_fixed_s": 21, "ua_pubsub_rt_non": 21, "ua_pubsub_rt_raw": 21, "ua_pubsub_rt_unknown": 21, "ua_pubsub_rt_vari": 21, "ua_pubsub_sds_mirror": 21, "ua_pubsub_sds_target": 21, "ua_pubsubcomponentenumtyp": 21, "ua_pubsubconfigur": [21, 22], "ua_pubsubconfiguration2datatyp": [39, 40], "ua_pubsubconfigurationdatatyp": [39, 40], "ua_pubsubconfigurationrefdatatyp": [39, 40], "ua_pubsubconfigurationrefmask": [39, 40], "ua_pubsubconfigurationrefmask_elementadd": [39, 40], "ua_pubsubconfigurationrefmask_elementmatch": [39, 40], "ua_pubsubconfigurationrefmask_elementmodifi": [39, 40], "ua_pubsubconfigurationrefmask_elementremov": [39, 40], "ua_pubsubconfigurationrefmask_non": [39, 40], "ua_pubsubconfigurationrefmask_referenceconnect": [39, 40], "ua_pubsubconfigurationrefmask_referencepubdataset": [39, 40], "ua_pubsubconfigurationrefmask_referencepushtarget": [39, 40], "ua_pubsubconfigurationrefmask_referenceread": [39, 40], "ua_pubsubconfigurationrefmask_referencereadergroup": [39, 40], "ua_pubsubconfigurationrefmask_referencesecuritygroup": [39, 40], "ua_pubsubconfigurationrefmask_referencesubdataset": [39, 40], "ua_pubsubconfigurationrefmask_referencewrit": [39, 40], "ua_pubsubconfigurationrefmask_referencewritergroup": [39, 40], "ua_pubsubconfigurationvaluedatatyp": [39, 40], "ua_pubsubconnectionconfig": [21, 27, 28], "ua_pubsubconnectiondatatyp": [39, 40], "ua_pubsubdiagnosticscounterclassif": [39, 40], "ua_pubsubdiagnosticscounterclassification_error": [39, 40], "ua_pubsubdiagnosticscounterclassification_inform": [39, 40], "ua_pubsubencodingtyp": 21, "ua_pubsubgroupdatatyp": [39, 40], "ua_pubsubkeypushtargetdatatyp": [39, 40], "ua_pubsubmonitoringinterfac": 21, "ua_pubsubmonitoringtyp": 21, "ua_pubsubrtencod": 21, "ua_pubsubrtlevel": 21, "ua_pubsubsecuritypolici": [20, 21], "ua_pubsubst": [21, 39, 40], "ua_pubsubstate_dis": [39, 40], "ua_pubsubstate_error": [39, 40], "ua_pubsubstate_oper": [39, 40], "ua_pubsubstate_paus": [39, 40], "ua_pubsubstate_preoper": [39, 40], "ua_qualifiednam": [1, 2, 3, 5, 13, 19, 22, 28, 29, 30, 31, 33, 35, 36, 37, 39, 40, 41], "ua_qualifiedname_alloc": 39, "ua_qualifiedname_hash": 39, "ua_qualifiedname_isnul": 39, "ua_querydatadescript": [39, 40], "ua_querydataset": [39, 40], "ua_queryfirstrequest": [1, 39, 40], "ua_queryfirstrespons": [1, 39, 40], "ua_querynextrequest": [1, 39, 40], "ua_querynextrespons": [1, 39, 40], "ua_random_se": [5, 41], "ua_rang": [39, 40], "ua_rationalnumb": [39, 40], "ua_readannotationdatadetail": [39, 40], "ua_readattimedetail": [39, 40], "ua_readergroupconfig": [21, 28], "ua_readergroupconfig_clear": 21, "ua_readergroupdatatyp": [39, 40], "ua_readeventdetail": [39, 40], "ua_readnumb": [5, 41], "ua_readnumberwithbas": [5, 41], "ua_readprocesseddetail": [39, 40], "ua_readrawmodifieddetail": [39, 40], "ua_readrequest": [1, 3, 26, 39, 40], "ua_readrequest_clear": 26, "ua_readrequest_delet": 26, "ua_readrequest_init": 26, "ua_readrequest_new": 26, "ua_readrespons": [1, 3, 26, 39, 40], "ua_readresponse_init": 26, "ua_readvalueid": [3, 22, 26, 39, 40], "ua_readvalueid_init": 26, "ua_realloc": 33, "ua_receiveqosprioritydatatyp": [39, 40], "ua_redundancysupport": [39, 40], "ua_redundancysupport_cold": [39, 40], "ua_redundancysupport_hot": [39, 40], "ua_redundancysupport_hotandmirror": [39, 40], "ua_redundancysupport_non": [39, 40], "ua_redundancysupport_transpar": [39, 40], "ua_redundancysupport_warm": [39, 40], "ua_redundantserverdatatyp": [39, 40], "ua_referencedescript": [26, 39, 40], "ua_referencedescription_init": 26, "ua_referencenod": [39, 40], "ua_referencetarget": 19, "ua_referencetargettreeelem": 19, "ua_referencetypeattribut": [2, 3, 5, 22, 39, 40, 41], "ua_referencetypeattributes_default": [5, 41], "ua_referencetypeindex_aggreg": 19, "ua_referencetypeindex_generatesev": 19, "ua_referencetypeindex_haschild": 19, "ua_referencetypeindex_hascompon": 19, "ua_referencetypeindex_hasdescript": 19, "ua_referencetypeindex_hasencod": 19, "ua_referencetypeindex_haseventsourc": 19, "ua_referencetypeindex_hasinterfac": 19, "ua_referencetypeindex_hasmodellingrul": 19, "ua_referencetypeindex_hasnotifi": 19, "ua_referencetypeindex_hasorderedcompon": 19, "ua_referencetypeindex_hasproperti": 19, "ua_referencetypeindex_hassubtyp": 19, "ua_referencetypeindex_hastypedefinit": 19, "ua_referencetypeindex_hierarchicalrefer": 19, "ua_referencetypeindex_nonhierarchicalrefer": 19, "ua_referencetypeindex_organ": 19, "ua_referencetypeindex_refer": 19, "ua_referencetypenod": 19, "ua_referencetypeset": 19, "ua_referencetypeset_al": 19, "ua_referencetypeset_contain": 19, "ua_referencetypeset_init": 19, "ua_referencetypeset_max": 19, "ua_referencetypeset_non": 19, "ua_referencetypeset_union": 19, "ua_reftypeset": 19, "ua_registeredserv": [22, 39, 40], "ua_registernodesrequest": [1, 39, 40], "ua_registernodesrespons": [1, 39, 40], "ua_registerserver2request": [39, 40], "ua_registerserver2respons": [39, 40], "ua_registerserverrequest": [39, 40], "ua_registerserverrespons": [39, 40], "ua_relativepath": [5, 39, 40, 41], "ua_relativepath_pars": [5, 41], "ua_relativepath_parsewithserv": [5, 41], "ua_relativepath_print": [5, 41], "ua_relativepathel": [35, 39, 40], "ua_relativepathelement_init": 35, "ua_republishrequest": [39, 40], "ua_republishrespons": [39, 40], "ua_requesthead": [39, 40], "ua_responsehead": [39, 40], "ua_rolepermissiontyp": [39, 40], "ua_rsaencryptedsecret": [39, 40], "ua_rulehandl": [5, 16, 22], "ua_rulehandling_abort": 5, "ua_rulehandling_accept": 5, "ua_rulehandling_default": 5, "ua_rulehandling_warn": 5, "ua_samplingintervaldiagnosticsdatatyp": [39, 40], "ua_sbyt": [39, 40], "ua_sbyte_max": 39, "ua_sbyte_min": 39, "ua_securechannelst": [1, 5, 22], "ua_securechannelstate_ack_receiv": 5, "ua_securechannelstate_ack_s": 5, "ua_securechannelstate_clos": 5, "ua_securechannelstate_connect": [5, 22], "ua_securechannelstate_hel_receiv": 5, "ua_securechannelstate_hel_s": 5, "ua_securechannelstate_open": 5, "ua_securechannelstate_opn_s": 5, "ua_securechannelstate_reverse_connect": 5, "ua_securechannelstate_reverse_listen": 5, "ua_securechannelstate_rhe_s": 5, "ua_securechannelstatist": [5, 22], "ua_securitygroupconfig": 21, "ua_securitygroupdatatyp": [39, 40], "ua_securitypolici": [1, 20, 22], "ua_securitypolicyasymmetricmodul": 20, "ua_securitypolicychannelmodul": 20, "ua_securitypolicycryptomodul": 20, "ua_securitypolicyencryptionalgorithm": 20, "ua_securitypolicysignaturealgorithm": 20, "ua_securitypolicysymmetricmodul": 20, "ua_securitytokenrequesttyp": [39, 40], "ua_securitytokenrequesttype_issu": [39, 40], "ua_securitytokenrequesttype_renew": [39, 40], "ua_semanticchangestructuredatatyp": [39, 40], "ua_semanticversionstr": [39, 40], "ua_serv": [5, 13, 15, 19, 21, 22, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41], "ua_server_addcondition_begin": 22, "ua_server_addcondition_finish": 22, "ua_server_addconditionoptionalfield": 22, "ua_server_adddatasetfield": [21, 27], "ua_server_adddatasetread": [21, 28], "ua_server_adddatasetwrit": [21, 27], "ua_server_adddatasourcevariablenod": [22, 30], "ua_server_adddatatypenod": 22, "ua_server_addmethodnod": [22, 31, 33], "ua_server_addmethodnode_finish": 22, "ua_server_addmethodnodeex": 22, "ua_server_addnamespac": [13, 22], "ua_server_addnode_begin": 22, "ua_server_addnode_finish": 22, "ua_server_addobjectnod": [13, 22, 28, 29, 35], "ua_server_addobjecttypenod": [22, 31, 35], "ua_server_addpublisheddataset": [21, 27], "ua_server_addpubsubconnect": [21, 27, 28], "ua_server_addreadergroup": [21, 28], "ua_server_addrefer": [22, 29, 35], "ua_server_addreferencetypenod": 22, "ua_server_addrepeatedcallback": 22, "ua_server_addreverseconnect": 22, "ua_server_addsecuritygroup": 21, "ua_server_addstandalonesubscribeddataset": 21, "ua_server_addtimedcallback": 22, "ua_server_addvariablenod": [22, 28, 29, 30, 35, 36, 37], "ua_server_addvariabletypenod": [22, 37], "ua_server_addviewnod": 22, "ua_server_addwritergroup": [21, 27], "ua_server_asyncoperationnotifycallback": 22, "ua_server_brows": 22, "ua_server_browsenext": 22, "ua_server_browserecurs": 22, "ua_server_browsesimplifiedbrowsepath": 22, "ua_server_cal": 22, "ua_server_changerepeatedcallbackinterv": 22, "ua_server_closesess": 22, "ua_server_createcondit": [22, 29], "ua_server_createcondt": 22, "ua_server_createdatachangemonitoreditem": [22, 34], "ua_server_createev": [22, 31], "ua_server_createeventmonitoreditem": 22, "ua_server_createeventmonitoreditemex": 22, "ua_server_createsigningrequest": 22, "ua_server_datachangenotificationcallback": 22, "ua_server_datasetreader_createtargetvari": [21, 28], "ua_server_datasetreader_getconfig": 21, "ua_server_datasetreader_getst": 21, "ua_server_datasetreader_updateconfig": 21, "ua_server_datasetwriter_getst": 21, "ua_server_delet": [13, 22, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37], "ua_server_deletecondit": 22, "ua_server_deletemonitoreditem": 22, "ua_server_deletenod": 22, "ua_server_deleterefer": 22, "ua_server_deletesessionattribut": 22, "ua_server_deregisterdiscoveri": 22, "ua_server_disabledatasetread": 21, "ua_server_disabledatasetwrit": 21, "ua_server_disablepubsubconnect": 21, "ua_server_disablereadergroup": 21, "ua_server_disablewritergroup": 21, "ua_server_enabledatasetread": 21, "ua_server_enabledatasetwrit": 21, "ua_server_enablepubsubconnect": 21, "ua_server_enablereadergroup": [21, 28], "ua_server_enablewritergroup": [21, 27], "ua_server_eventnotificationcallback": 22, "ua_server_finddatatyp": 22, "ua_server_foreachchildnodecal": 22, "ua_server_freezereadergroupconfigur": 21, "ua_server_freezewritergroupconfigur": 21, "ua_server_getasyncoperationblock": 22, "ua_server_getasyncoperationnonblock": 22, "ua_server_getconfig": [13, 22], "ua_server_getdatasetfieldconfig": 21, "ua_server_getdatasetwriterconfig": 21, "ua_server_getlifecyclest": 22, "ua_server_getmethodnodecallback": 22, "ua_server_getnamespacebyindex": 22, "ua_server_getnamespacebynam": 22, "ua_server_getnodecontext": 22, "ua_server_getpublisheddatasetconfig": 21, "ua_server_getpublisheddatasetmetadata": 21, "ua_server_getpubsubconnectionconfig": 21, "ua_server_getsessionattribut": 22, "ua_server_getsessionattribute_scalar": 22, "ua_server_getsessionattributecopi": 22, "ua_server_getstatist": 22, "ua_server_getwritergroupconfig": 21, "ua_server_new": [13, 22, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37], "ua_server_newwithconfig": 22, "ua_server_read": 22, "ua_server_readaccesslevel": 22, "ua_server_readaccesslevelex": 22, "ua_server_readarraydimens": 22, "ua_server_readbrowsenam": 22, "ua_server_readcontainsnoloop": 22, "ua_server_readdatatyp": 22, "ua_server_readdescript": 22, "ua_server_readdisplaynam": 22, "ua_server_readergroup_getconfig": 21, "ua_server_readergroup_getst": 21, "ua_server_readergroup_updateconfig": 21, "ua_server_readeventnotifi": 22, "ua_server_readexecut": 22, "ua_server_readhistor": 22, "ua_server_readinversenam": 22, "ua_server_readisabstract": 22, "ua_server_readminimumsamplinginterv": 22, "ua_server_readnodeclass": 22, "ua_server_readnodeid": 22, "ua_server_readobjectproperti": 22, "ua_server_readsymmetr": 22, "ua_server_readvalu": 22, "ua_server_readvaluerank": 22, "ua_server_readwritemask": 22, "ua_server_registerdiscoveri": 22, "ua_server_registerservercallback": 22, "ua_server_removecallback": 22, "ua_server_removedatasetfield": 21, "ua_server_removedatasetread": 21, "ua_server_removedatasetwrit": 21, "ua_server_removepublisheddataset": 21, "ua_server_removepubsubconnect": 21, "ua_server_removereadergroup": 21, "ua_server_removerepeatedcallback": 22, "ua_server_removereverseconnect": 22, "ua_server_removesecuritygroup": 21, "ua_server_removestandalonesubscribeddataset": 21, "ua_server_removewritergroup": 21, "ua_server_reverseconnectstatecallback": 22, "ua_server_run": [13, 22, 32], "ua_server_run_iter": 22, "ua_server_run_shutdown": 22, "ua_server_run_startup": 22, "ua_server_rununtilinterrupt": [22, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37], "ua_server_serveronnetworkcallback": 22, "ua_server_setadminsessioncontext": 22, "ua_server_setasyncoperationresult": 22, "ua_server_setconditionfield": [22, 29], "ua_server_setconditiontwostatevariablecallback": [22, 29], "ua_server_setconditionvariablefieldproperti": [22, 29], "ua_server_setexpirationd": 22, "ua_server_setlimitst": 22, "ua_server_setmethodnode_callback": 22, "ua_server_setmethodnodeasync": 22, "ua_server_setmethodnodecallback": 22, "ua_server_setnodecontext": 22, "ua_server_setnodetypelifecycl": [22, 35], "ua_server_setreadergroupactivatekei": 21, "ua_server_setreadergroupdis": 21, "ua_server_setreadergroupencryptionkei": 21, "ua_server_setreadergroupoper": 21, "ua_server_setregisterservercallback": 22, "ua_server_setserveronnetworkcallback": 22, "ua_server_setsessionattribut": 22, "ua_server_setskscli": 21, "ua_server_setvariablenode_datasourc": 22, "ua_server_setvariablenode_valuebackend": [22, 30], "ua_server_setvariablenode_valuecallback": [22, 29, 30], "ua_server_setvariablenodedynam": 22, "ua_server_setwritergroupactivatekei": 21, "ua_server_setwritergroupdis": 21, "ua_server_setwritergroupencryptionkei": 21, "ua_server_setwritergroupoper": 21, "ua_server_skspullrequestcallback": 21, "ua_server_translatebrowsepathtonodeid": [22, 35], "ua_server_triggerconditionev": [22, 29], "ua_server_triggerev": [22, 31], "ua_server_unfreezereadergroupconfigur": 21, "ua_server_unfreezewritergroupconfigur": 21, "ua_server_updatecertif": 22, "ua_server_updatewritergroupconfig": 21, "ua_server_writ": [22, 36], "ua_server_writeaccesslevel": 22, "ua_server_writeaccesslevelex": 22, "ua_server_writearraydimens": 22, "ua_server_writebrowsenam": 22, "ua_server_writedatatyp": 22, "ua_server_writedatavalu": 22, "ua_server_writedescript": 22, "ua_server_writedisplaynam": 22, "ua_server_writeeventnotifi": 22, "ua_server_writeexecut": 22, "ua_server_writehistor": 22, "ua_server_writeinversenam": 22, "ua_server_writeisabstract": 22, "ua_server_writeminimumsamplinginterv": 22, "ua_server_writeobjectproperti": 22, "ua_server_writeobjectproperty_scalar": [22, 29, 31], "ua_server_writergroup_getst": 21, "ua_server_writergroup_publish": 21, "ua_server_writevalu": [22, 30, 35, 36], "ua_server_writevaluerank": [22, 37], "ua_server_writewritemask": 22, "ua_servercallback": [5, 21, 22], "ua_serverconfig": [5, 22], "ua_serverconfig_clean": 22, "ua_serverconfig_clear": 22, "ua_serverconfig_setdefault": 13, "ua_serverdiagnosticssummarydatatyp": [39, 40], "ua_serveronnetwork": [1, 22, 39, 40], "ua_serverst": [39, 40], "ua_serverstate_communicationfault": [39, 40], "ua_serverstate_fail": [39, 40], "ua_serverstate_noconfigur": [39, 40], "ua_serverstate_run": [39, 40], "ua_serverstate_shutdown": [39, 40], "ua_serverstate_suspend": [39, 40], "ua_serverstate_test": [39, 40], "ua_serverstate_unknown": [39, 40], "ua_serverstatist": 22, "ua_serverstatusdatatyp": [39, 40], "ua_servicecounterdatatyp": [39, 40], "ua_servicefault": [39, 40], "ua_sessionauthenticationtoken": [39, 40], "ua_sessiondiagnosticsdatatyp": [39, 40], "ua_sessionlessinvokerequesttyp": [39, 40], "ua_sessionlessinvokeresponsetyp": [39, 40], "ua_sessionsecuritydiagnosticsdatatyp": [39, 40], "ua_sessionst": [1, 5], "ua_sessionstate_activ": 5, "ua_sessionstate_activate_request": 5, "ua_sessionstate_clos": 5, "ua_sessionstate_cr": 5, "ua_sessionstate_create_request": 5, "ua_sessionstatist": [5, 22], "ua_setmonitoringmoderequest": [4, 39, 40], "ua_setmonitoringmoderespons": [4, 39, 40], "ua_setpublishingmoderequest": [4, 39, 40], "ua_setpublishingmoderespons": [4, 39, 40], "ua_settriggeringrequest": [4, 39, 40], "ua_settriggeringrespons": [4, 39, 40], "ua_shutdownreason": 5, "ua_shutdownreason_abort": 5, "ua_shutdownreason_clos": 5, "ua_shutdownreason_purg": 5, "ua_shutdownreason_reject": 5, "ua_shutdownreason_securityreject": 5, "ua_shutdownreason_timeout": 5, "ua_signaturedata": [39, 40], "ua_signedsoftwarecertif": [39, 40], "ua_simpleattributeoperand": [5, 21, 39, 40, 41], "ua_simpleattributeoperand_pars": [5, 41], "ua_simpleattributeoperand_print": [5, 22, 41], "ua_simpletypedescript": [39, 40], "ua_standalonesubscribeddatasetconfig": 21, "ua_standalonesubscribeddatasetconfig_clear": 21, "ua_standalonesubscribeddatasetdatatyp": [39, 40], "ua_standalonesubscribeddatasetrefdatatyp": [39, 40], "ua_statuschangenotif": [4, 39, 40], "ua_statuscod": [1, 2, 3, 4, 5, 13, 15, 16, 17, 19, 20, 21, 22, 25, 27, 28, 29, 30, 31, 33, 35, 36, 37, 39, 40, 41], "ua_statuscode_bad": 23, "ua_statuscode_badaggregateconfigurationreject": 23, "ua_statuscode_badaggregateinvalidinput": 23, "ua_statuscode_badaggregatelistmismatch": 23, "ua_statuscode_badaggregatenotsupport": 23, "ua_statuscode_badalreadyexist": 23, "ua_statuscode_badapplicationsignatureinvalid": 23, "ua_statuscode_badargumentsmiss": 23, "ua_statuscode_badattributeidinvalid": 23, "ua_statuscode_badboundnotfound": 23, "ua_statuscode_badboundnotsupport": 23, "ua_statuscode_badbrowsedirectioninvalid": 23, "ua_statuscode_badbrowsenamedupl": 23, "ua_statuscode_badbrowsenameinvalid": 23, "ua_statuscode_badcertificatechainincomplet": 23, "ua_statuscode_badcertificatehostnameinvalid": 23, "ua_statuscode_badcertificateinvalid": 23, "ua_statuscode_badcertificateissuerrevocationunknown": 23, "ua_statuscode_badcertificateissuerrevok": 23, "ua_statuscode_badcertificateissuertimeinvalid": 23, "ua_statuscode_badcertificateissuerusenotallow": 23, "ua_statuscode_badcertificatepolicycheckfail": 23, "ua_statuscode_badcertificaterevocationunknown": 23, "ua_statuscode_badcertificaterevok": 23, "ua_statuscode_badcertificatetimeinvalid": 23, "ua_statuscode_badcertificateuntrust": 23, "ua_statuscode_badcertificateuriinvalid": 23, "ua_statuscode_badcertificateusenotallow": 23, "ua_statuscode_badcommunicationerror": 23, "ua_statuscode_badconditionalreadydis": 23, "ua_statuscode_badconditionalreadyen": 23, "ua_statuscode_badconditionalreadyshelv": 23, "ua_statuscode_badconditionbranchalreadyack": 23, "ua_statuscode_badconditionbranchalreadyconfirm": 23, "ua_statuscode_badconditiondis": 23, "ua_statuscode_badconditionnotshelv": 23, "ua_statuscode_badconfigurationerror": 23, "ua_statuscode_badconnectionclos": 23, "ua_statuscode_badconnectionreject": 23, "ua_statuscode_badcontentfilterinvalid": 23, "ua_statuscode_badcontinuationpointinvalid": 23, "ua_statuscode_baddataencodinginvalid": 23, "ua_statuscode_baddataencodingunsupport": 23, "ua_statuscode_baddatalost": 23, "ua_statuscode_baddatatypeidunknown": 23, "ua_statuscode_baddataunavail": 23, "ua_statuscode_baddeadbandfilterinvalid": 23, "ua_statuscode_baddecodingerror": 23, "ua_statuscode_baddependentvaluechang": 23, "ua_statuscode_baddevicefailur": 23, "ua_statuscode_baddialognotact": 23, "ua_statuscode_baddialogresponseinvalid": 23, "ua_statuscode_baddisconnect": 23, "ua_statuscode_baddiscoveryurlmiss": 23, "ua_statuscode_baddominantvaluechang": 23, "ua_statuscode_badduplicatereferencenotallow": 23, "ua_statuscode_badedited_outofrang": 23, "ua_statuscode_badedited_outofrange_dominantvaluechang": 23, "ua_statuscode_badedited_outofrange_dominantvaluechanged_dependentvaluechang": 23, "ua_statuscode_badencodingerror": 23, "ua_statuscode_badencodinglimitsexceed": 23, "ua_statuscode_badendofstream": 23, "ua_statuscode_badentryexist": 23, "ua_statuscode_badeventfilterinvalid": 23, "ua_statuscode_badeventidunknown": 23, "ua_statuscode_badeventnotacknowledg": 23, "ua_statuscode_badexpectedstreamtoblock": 23, "ua_statuscode_badfilterelementinvalid": 23, "ua_statuscode_badfilterliteralinvalid": 23, "ua_statuscode_badfilternotallow": 23, "ua_statuscode_badfilteroperandcountmismatch": 23, "ua_statuscode_badfilteroperandinvalid": 23, "ua_statuscode_badfilteroperatorinvalid": 23, "ua_statuscode_badfilteroperatorunsupport": 23, "ua_statuscode_badhistoryoperationinvalid": 23, "ua_statuscode_badhistoryoperationunsupport": 23, "ua_statuscode_badidentitychangenotsupport": 23, "ua_statuscode_badidentitytokeninvalid": 23, "ua_statuscode_badidentitytokenreject": 23, "ua_statuscode_badindexrangeinvalid": [19, 23], "ua_statuscode_badindexrangenodata": 23, "ua_statuscode_badinitialvalue_outofrang": 23, "ua_statuscode_badinsufficientclientprofil": 23, "ua_statuscode_badinternalerror": [5, 19, 23, 28, 30, 41], "ua_statuscode_badinvalidargu": 23, "ua_statuscode_badinvalidselfrefer": 23, "ua_statuscode_badinvalidst": 23, "ua_statuscode_badinvalidtimestamp": 23, "ua_statuscode_badinvalidtimestampargu": 23, "ua_statuscode_badlicenseexpir": 23, "ua_statuscode_badlicenselimitsexceed": 23, "ua_statuscode_badlicensenotavail": 23, "ua_statuscode_badmaxageinvalid": 23, "ua_statuscode_badmaxconnectionsreach": 23, "ua_statuscode_badmessagenotavail": 23, "ua_statuscode_badmethodinvalid": 23, "ua_statuscode_badmonitoreditemfilterinvalid": 23, "ua_statuscode_badmonitoreditemfilterunsupport": 23, "ua_statuscode_badmonitoreditemidinvalid": 23, "ua_statuscode_badmonitoringmodeinvalid": 23, "ua_statuscode_badnocommun": 23, "ua_statuscode_badnocontinuationpoint": 23, "ua_statuscode_badnodata": 23, "ua_statuscode_badnodataavail": 23, "ua_statuscode_badnodeattributesinvalid": 23, "ua_statuscode_badnodeclassinvalid": 23, "ua_statuscode_badnodeidexist": 23, "ua_statuscode_badnodeidinvalid": 23, "ua_statuscode_badnodeidreject": 23, "ua_statuscode_badnodeidunknown": [19, 23], "ua_statuscode_badnodeleteright": 23, "ua_statuscode_badnodenotinview": 23, "ua_statuscode_badnoentryexist": 23, "ua_statuscode_badnomatch": 23, "ua_statuscode_badnonceinvalid": 23, "ua_statuscode_badnosubscript": 23, "ua_statuscode_badnotconnect": [23, 36], "ua_statuscode_badnotexecut": 23, "ua_statuscode_badnotfound": [1, 23], "ua_statuscode_badnothingtodo": 23, "ua_statuscode_badnotimpl": 23, "ua_statuscode_badnotread": 23, "ua_statuscode_badnotsupport": 23, "ua_statuscode_badnottypedefinit": 23, "ua_statuscode_badnotwrit": 23, "ua_statuscode_badnovalidcertif": 23, "ua_statuscode_badnumericoverflow": 23, "ua_statuscode_badobjectdelet": 23, "ua_statuscode_badoperationabandon": 23, "ua_statuscode_badoutofmemori": [1, 23, 39], "ua_statuscode_badoutofrang": 23, "ua_statuscode_badoutofrange_dominantvaluechang": 23, "ua_statuscode_badoutofrange_dominantvaluechanged_dependentvaluechang": 23, "ua_statuscode_badoutofservic": 23, "ua_statuscode_badparentnodeidinvalid": 23, "ua_statuscode_badprotocolversionunsupport": 23, "ua_statuscode_badquerytoocomplex": 23, "ua_statuscode_badreferencelocalonli": 23, "ua_statuscode_badreferencenotallow": 23, "ua_statuscode_badreferencetypeidinvalid": 23, "ua_statuscode_badrefreshinprogress": 23, "ua_statuscode_badrequestcancelledbycli": 23, "ua_statuscode_badrequestcancelledbyrequest": 23, "ua_statuscode_badrequestheaderinvalid": 23, "ua_statuscode_badrequestinterrupt": 23, "ua_statuscode_badrequestnotallow": 23, "ua_statuscode_badrequestnotcomplet": 23, "ua_statuscode_badrequesttimeout": 23, "ua_statuscode_badrequesttoolarg": 23, "ua_statuscode_badrequesttypeinvalid": 23, "ua_statuscode_badresourceunavail": 23, "ua_statuscode_badresponsetoolarg": 23, "ua_statuscode_badsecurechannelclos": 23, "ua_statuscode_badsecurechannelidinvalid": 23, "ua_statuscode_badsecurechanneltokenunknown": 23, "ua_statuscode_badsecuritychecksfail": [16, 23], "ua_statuscode_badsecuritymodeinsuffici": 23, "ua_statuscode_badsecuritymodereject": 23, "ua_statuscode_badsecuritypolicyreject": 23, "ua_statuscode_badsempahorefilemiss": 23, "ua_statuscode_badsensorfailur": 23, "ua_statuscode_badsequencenumberinvalid": 23, "ua_statuscode_badsequencenumberunknown": 23, "ua_statuscode_badserverhalt": 23, "ua_statuscode_badserverindexinvalid": 23, "ua_statuscode_badservernamemiss": 23, "ua_statuscode_badservernotconnect": 23, "ua_statuscode_badserveruriinvalid": 23, "ua_statuscode_badserviceunsupport": 23, "ua_statuscode_badsessionclos": 23, "ua_statuscode_badsessionidinvalid": 23, "ua_statuscode_badsessionnotactiv": 23, "ua_statuscode_badshelvingtimeoutofrang": 23, "ua_statuscode_badshutdown": [1, 23], "ua_statuscode_badsourcenodeidinvalid": 23, "ua_statuscode_badstatenotact": 23, "ua_statuscode_badstructuremiss": 23, "ua_statuscode_badsubscriptionidinvalid": 23, "ua_statuscode_badsyntaxerror": 23, "ua_statuscode_badtargetnodeidinvalid": 23, "ua_statuscode_badtcpendpointurlinvalid": [5, 23, 41], "ua_statuscode_badtcpinternalerror": 23, "ua_statuscode_badtcpmessagetoolarg": 23, "ua_statuscode_badtcpmessagetypeinvalid": 23, "ua_statuscode_badtcpnotenoughresourc": 23, "ua_statuscode_badtcpsecurechannelunknown": 23, "ua_statuscode_badtcpservertoobusi": 23, "ua_statuscode_badticketinvalid": 23, "ua_statuscode_badticketrequir": 23, "ua_statuscode_badtimeout": [1, 23], "ua_statuscode_badtimestampnotsupport": 23, "ua_statuscode_badtimestampstoreturninvalid": 23, "ua_statuscode_badtoomanyargu": 23, "ua_statuscode_badtoomanymatch": 23, "ua_statuscode_badtoomanymonitoreditem": 23, "ua_statuscode_badtoomanyoper": 23, "ua_statuscode_badtoomanypublishrequest": 23, "ua_statuscode_badtoomanysess": 23, "ua_statuscode_badtoomanysubscript": 23, "ua_statuscode_badtypedefinitioninvalid": 23, "ua_statuscode_badtypemismatch": [23, 37], "ua_statuscode_badunexpectederror": [13, 23], "ua_statuscode_badunknownrespons": 23, "ua_statuscode_baduseraccessdeni": 23, "ua_statuscode_badusersignatureinvalid": 23, "ua_statuscode_badviewidunknown": 23, "ua_statuscode_badviewparametermismatch": 23, "ua_statuscode_badviewtimestampinvalid": 23, "ua_statuscode_badviewversioninvalid": 23, "ua_statuscode_badwaitingforinitialdata": 23, "ua_statuscode_badwaitingforrespons": 23, "ua_statuscode_badwouldblock": 23, "ua_statuscode_badwritenotsupport": 23, "ua_statuscode_good": [1, 13, 15, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 33, 35, 39], "ua_statuscode_goodcallagain": [1, 23], "ua_statuscode_goodclamp": 23, "ua_statuscode_goodcommunicationev": 23, "ua_statuscode_goodcompletesasynchron": 23, "ua_statuscode_gooddataignor": 23, "ua_statuscode_gooddependentvaluechang": 23, "ua_statuscode_goodedit": 23, "ua_statuscode_goodedited_dependentvaluechang": 23, "ua_statuscode_goodedited_dominantvaluechang": 23, "ua_statuscode_goodedited_dominantvaluechanged_dependentvaluechang": 23, "ua_statuscode_goodentryinsert": 23, "ua_statuscode_goodentryreplac": 23, "ua_statuscode_goodlocaloverrid": 23, "ua_statuscode_goodmoredata": 23, "ua_statuscode_goodnodata": 23, "ua_statuscode_goodnoncriticaltimeout": 23, "ua_statuscode_goodoverload": 23, "ua_statuscode_goodpostactionfail": 23, "ua_statuscode_goodresultsmaybeincomplet": 23, "ua_statuscode_goodretransmissionqueuenotsupport": 23, "ua_statuscode_goodshutdownev": 23, "ua_statuscode_goodsubscriptiontransf": 23, "ua_statuscode_infobits_overflow": 23, "ua_statuscode_infotype_datavalu": 23, "ua_statuscode_isbad": 39, "ua_statuscode_isequaltop": 39, "ua_statuscode_isgood": 39, "ua_statuscode_isuncertain": 39, "ua_statuscode_nam": [25, 29, 31, 36, 37, 39], "ua_statuscode_success": 22, "ua_statuscode_uncertain": 23, "ua_statuscode_uncertaindatasubnorm": 23, "ua_statuscode_uncertaindependentvaluechang": 23, "ua_statuscode_uncertaindominantvaluechang": 23, "ua_statuscode_uncertainengineeringunitsexceed": 23, "ua_statuscode_uncertaininitialvalu": 23, "ua_statuscode_uncertainlastusablevalu": 23, "ua_statuscode_uncertainnocommunicationlastusablevalu": 23, "ua_statuscode_uncertainnotallnodesavail": 23, "ua_statuscode_uncertainreferencenotdelet": 23, "ua_statuscode_uncertainreferenceoutofserv": 23, "ua_statuscode_uncertainsensornotaccur": 23, "ua_statuscode_uncertainsubnorm": 23, "ua_statuscode_uncertainsubstitutevalu": 23, "ua_statusresult": [39, 40], "ua_str": [1, 2, 5, 16, 17, 20, 21, 22, 26, 27, 28, 31, 33, 35, 36, 37, 39, 40, 41], "ua_string_alloc": [1, 26, 33, 39], "ua_string_clear": [1, 26, 33], "ua_string_copi": 26, "ua_string_equ": 26, "ua_string_fromchar": [7, 8, 9, 10, 11, 39], "ua_string_init": 26, "ua_string_isempti": 39, "ua_string_nul": [26, 27, 28, 39], "ua_string_stat": 39, "ua_structuredefinit": [39, 40], "ua_structuredescript": [39, 40], "ua_structurefield": [39, 40], "ua_structuretyp": [39, 40], "ua_structuretype_structur": [39, 40], "ua_structuretype_structurewithoptionalfield": [39, 40], "ua_structuretype_structurewithsubtypedvalu": [39, 40], "ua_structuretype_union": [39, 40], "ua_structuretype_unionwithsubtypedvalu": [39, 40], "ua_subscribeddatasetenumtyp": 21, "ua_subscribeddatasetmirrordatatyp": [21, 39, 40], "ua_subscriptionacknowledg": [39, 40], "ua_subscriptiondiagnosticsdatatyp": [39, 40], "ua_targetvari": 21, "ua_targetvariablesdatatyp": [21, 39, 40], "ua_threadsaf": [0, 1, 2, 3, 4, 21, 22], "ua_threedcartesiancoordin": [39, 40], "ua_threedfram": [39, 40], "ua_threedorient": [39, 40], "ua_threedvector": [39, 40], "ua_timer_handle_cyclemiss_with_basetim": 17, "ua_timer_handle_cyclemiss_with_currenttim": 17, "ua_timerpolici": [17, 21], "ua_timerpolicy_basetim": 17, "ua_timerpolicy_currenttim": 17, "ua_timestampstoreturn": [2, 3, 4, 22, 39, 40], "ua_timestampstoreturn_both": [39, 40], "ua_timestampstoreturn_invalid": [39, 40], "ua_timestampstoreturn_neith": [39, 40], "ua_timestampstoreturn_serv": [39, 40], "ua_timestampstoreturn_sourc": [34, 39, 40], "ua_timestr": [39, 40], "ua_timezonedatatyp": [39, 40], "ua_transferresult": [39, 40], "ua_transfersubscriptionsrequest": [39, 40], "ua_transfersubscriptionsrespons": [39, 40], "ua_translatebrowsepathstonodeidsrequest": [1, 39, 40], "ua_translatebrowsepathstonodeidsrespons": [1, 39, 40], "ua_transmitqosprioritydatatyp": [39, 40], "ua_tru": [19, 22, 27, 28, 29, 31, 39], "ua_trustlistdatatyp": [5, 16, 39, 40, 41], "ua_trustlistdatatype_add": [5, 41], "ua_trustlistdatatype_contain": [5, 41], "ua_trustlistdatatype_gets": [5, 41], "ua_trustlistdatatype_remov": [5, 41], "ua_trustlistmask": [5, 39, 40, 41], "ua_trustlistmasks_al": [39, 40], "ua_trustlistmasks_issuercertif": [39, 40], "ua_trustlistmasks_issuercrl": [39, 40], "ua_trustlistmasks_non": [39, 40], "ua_trustlistmasks_trustedcertif": [39, 40], "ua_trustlistmasks_trustedcrl": [39, 40], "ua_tsnfailurecod": [39, 40], "ua_tsnfailurecode_bridgedoesnotprovidenetworkid": [39, 40], "ua_tsnfailurecode_cannotstoredestinationaddress": [39, 40], "ua_tsnfailurecode_egressportnotavbcap": [39, 40], "ua_tsnfailurecode_featurenotpropag": [39, 40], "ua_tsnfailurecode_featurenotsupport": [39, 40], "ua_tsnfailurecode_firstvaluechangedforstreamid": [39, 40], "ua_tsnfailurecode_insufficientbandwidth": [39, 40], "ua_tsnfailurecode_insufficientresourc": [39, 40], "ua_tsnfailurecode_insufficienttrafficclassbandwidth": [39, 40], "ua_tsnfailurecode_latencyhaschang": [39, 40], "ua_tsnfailurecode_maxfaninportslimitreach": [39, 40], "ua_tsnfailurecode_maxframesizetoolarg": [39, 40], "ua_tsnfailurecode_maxlatencyexceed": [39, 40], "ua_tsnfailurecode_nofailur": [39, 40], "ua_tsnfailurecode_outofmmrpresourc": [39, 40], "ua_tsnfailurecode_outofmsrpresourc": [39, 40], "ua_tsnfailurecode_priorityisnotansrcclass": [39, 40], "ua_tsnfailurecode_srclassprioritymismatch": [39, 40], "ua_tsnfailurecode_streamdestinationaddressinus": [39, 40], "ua_tsnfailurecode_streamidinus": [39, 40], "ua_tsnfailurecode_streamidtypenotsupport": [39, 40], "ua_tsnfailurecode_streampreemptedbyhigherrank": [39, 40], "ua_tsnfailurecode_streamtransformnotsupport": [39, 40], "ua_tsnfailurecode_usedifferentdestinationaddress": [39, 40], "ua_tsnfailurecode_vlanblockedonegress": [39, 40], "ua_tsnfailurecode_vlantaggingdisabledonegress": [39, 40], "ua_tsnlistenerstatu": [39, 40], "ua_tsnlistenerstatus_fail": [39, 40], "ua_tsnlistenerstatus_non": [39, 40], "ua_tsnlistenerstatus_partialfail": [39, 40], "ua_tsnlistenerstatus_readi": [39, 40], "ua_tsnstreamst": [39, 40], "ua_tsnstreamstate_configur": [39, 40], "ua_tsnstreamstate_dis": [39, 40], "ua_tsnstreamstate_error": [39, 40], "ua_tsnstreamstate_oper": [39, 40], "ua_tsnstreamstate_readi": [39, 40], "ua_tsntalkerstatu": [39, 40], "ua_tsntalkerstatus_fail": [39, 40], "ua_tsntalkerstatus_non": [39, 40], "ua_tsntalkerstatus_readi": [39, 40], "ua_twostatevariablecallbacktyp": 22, "ua_twostatevariablechangecallback": [22, 29], "ua_typ": [1, 2, 3, 4, 13, 22, 25, 26, 27, 28, 29, 30, 31, 33, 35, 36, 37, 39], "ua_types_": 3, "ua_types_addnodesrequest": 1, "ua_types_addnodesrespons": 1, "ua_types_addreferencesrequest": 1, "ua_types_addreferencesrespons": 1, "ua_types_boolean": [2, 22, 28, 29, 35], "ua_types_browsenextrequest": [1, 3], "ua_types_browsenextrespons": [1, 3], "ua_types_browserequest": [1, 3], "ua_types_browserespons": [1, 3], "ua_types_byt": [2, 22], "ua_types_callrequest": 1, "ua_types_callrespons": 1, "ua_types_datatypeattribut": [2, 3, 22], "ua_types_datavalu": [2, 22, 26], "ua_types_datetim": [25, 28, 29, 30, 31], "ua_types_deletenodesrequest": 1, "ua_types_deletenodesrespons": 1, "ua_types_deletereferencesrequest": 1, "ua_types_deletereferencesrespons": 1, "ua_types_di": 13, "ua_types_di_gener": 13, "ua_types_di_generated_encoding_binari": 13, "ua_types_di_generated_handl": 13, "ua_types_doubl": [2, 22, 26, 35, 36, 37], "ua_types_fieldmetadata": 28, "ua_types_float": 26, "ua_types_historyreadrequest": 1, "ua_types_historyreadrespons": 1, "ua_types_historyupdaterequest": 1, "ua_types_historyupdaterespons": 1, "ua_types_int32": [2, 22, 26, 28, 33, 36], "ua_types_int64": 28, "ua_types_localizedtext": [2, 22, 29, 31], "ua_types_methodattribut": [2, 3], "ua_types_networkaddressurldatatyp": [27, 28], "ua_types_nodeclass": 2, "ua_types_nodeid": [2, 22], "ua_types_objectattribut": [2, 3, 22], "ua_types_objecttypeattribut": [2, 3, 22], "ua_types_qualifiednam": [2, 22], "ua_types_queryfirstrequest": 1, "ua_types_queryfirstrespons": 1, "ua_types_readrequest": [1, 3, 26], "ua_types_readrespons": [1, 3, 26], "ua_types_readvalueid": 26, "ua_types_referencedescript": 26, "ua_types_referencetypeattribut": [2, 3, 22], "ua_types_registernodesrequest": 1, "ua_types_registernodesrespons": 1, "ua_types_setmonitoringmoderequest": 4, "ua_types_setmonitoringmoderespons": 4, "ua_types_setpublishingmoderequest": 4, "ua_types_setpublishingmoderespons": 4, "ua_types_settriggeringrequest": 4, "ua_types_settriggeringrespons": 4, "ua_types_str": [31, 33, 35, 36, 37], "ua_types_translatebrowsepathstonodeidsrequest": 1, "ua_types_translatebrowsepathstonodeidsrespons": 1, "ua_types_uadpwritergroupmessagedatatyp": 27, "ua_types_uint16": [29, 31], "ua_types_uint32": [2, 22, 26], "ua_types_unregisternodesrequest": 1, "ua_types_unregisternodesrespons": 1, "ua_types_usernameidentitytoken": 1, "ua_types_vari": [2, 22], "ua_types_variableattribut": [2, 3, 22], "ua_types_variabletypeattribut": [2, 3, 22], "ua_types_viewattribut": [2, 3, 22], "ua_types_writerequest": [1, 3], "ua_types_writerespons": [1, 3], "ua_types_xxx": 39, "ua_uabinaryfiledatatyp": [39, 40], "ua_uadpdatasetmessagecontentmask": [39, 40], "ua_uadpdatasetmessagecontentmask_majorvers": [39, 40], "ua_uadpdatasetmessagecontentmask_minorvers": [39, 40], "ua_uadpdatasetmessagecontentmask_non": [39, 40], "ua_uadpdatasetmessagecontentmask_picosecond": [39, 40], "ua_uadpdatasetmessagecontentmask_sequencenumb": [39, 40], "ua_uadpdatasetmessagecontentmask_statu": [39, 40], "ua_uadpdatasetmessagecontentmask_timestamp": [39, 40], "ua_uadpdatasetreadermessagedatatyp": [39, 40], "ua_uadpdatasetwritermessagedatatyp": [39, 40], "ua_uadpnetworkmessagecontentmask": [27, 39, 40], "ua_uadpnetworkmessagecontentmask_datasetclassid": [39, 40], "ua_uadpnetworkmessagecontentmask_grouphead": [27, 39, 40], "ua_uadpnetworkmessagecontentmask_groupvers": [39, 40], "ua_uadpnetworkmessagecontentmask_networkmessagenumb": [39, 40], "ua_uadpnetworkmessagecontentmask_non": [39, 40], "ua_uadpnetworkmessagecontentmask_payloadhead": [27, 39, 40], "ua_uadpnetworkmessagecontentmask_picosecond": [39, 40], "ua_uadpnetworkmessagecontentmask_promotedfield": [39, 40], "ua_uadpnetworkmessagecontentmask_publisherid": [27, 39, 40], "ua_uadpnetworkmessagecontentmask_sequencenumb": [39, 40], "ua_uadpnetworkmessagecontentmask_timestamp": [39, 40], "ua_uadpnetworkmessagecontentmask_writergroupid": [27, 39, 40], "ua_uadpwritergroupmessagedatatyp": [27, 39, 40], "ua_uadpwritergroupmessagedatatype_delet": 27, "ua_uadpwritergroupmessagedatatype_new": 27, "ua_uint16": [1, 2, 5, 21, 22, 28, 29, 31, 39, 40, 41], "ua_uint16_max": 39, "ua_uint16_min": 39, "ua_uint32": [1, 2, 3, 4, 5, 15, 17, 19, 21, 22, 26, 28, 33, 34, 36, 37, 39, 40, 41], "ua_uint32_max": 39, "ua_uint32_min": 39, "ua_uint32_random": [5, 28, 41], "ua_uint32rang": [5, 22, 41], "ua_uint64": [1, 5, 17, 21, 22, 39, 40, 41], "ua_uint64_max": 39, "ua_uint64_min": 39, "ua_unregisternodesrequest": [1, 39, 40], "ua_unregisternodesrespons": [1, 39, 40], "ua_unsignedrationalnumb": [39, 40], "ua_updatedatadetail": [39, 40], "ua_updateeventdetail": [39, 40], "ua_updatestructuredatadetail": [39, 40], "ua_uristr": [39, 40], "ua_userconfigurationmask": [39, 40], "ua_userconfigurationmask_dis": [39, 40], "ua_userconfigurationmask_mustchangepassword": [39, 40], "ua_userconfigurationmask_nochangebyus": [39, 40], "ua_userconfigurationmask_nodelet": [39, 40], "ua_userconfigurationmask_non": [39, 40], "ua_useridentitytoken": [39, 40], "ua_usermanagementdatatyp": [39, 40], "ua_usernameidentitytoken": [1, 39, 40], "ua_usernameidentitytoken_new": 1, "ua_usertokenpolici": [1, 15, 39, 40], "ua_usertokentyp": [39, 40], "ua_usertokentype_anonym": [39, 40], "ua_usertokentype_certif": [39, 40], "ua_usertokentype_issuedtoken": [39, 40], "ua_usertokentype_usernam": [39, 40], "ua_utctim": [39, 40], "ua_valuebackend": [19, 22, 30], "ua_valuebackendtyp": 19, "ua_valuebackendtype_data_source_callback": 19, "ua_valuebackendtype_extern": [19, 21, 30], "ua_valuebackendtype_intern": 19, "ua_valuebackendtype_non": 19, "ua_valuecallback": [19, 22, 29, 30], "ua_valuerank_ani": 5, "ua_valuerank_one_dimens": [5, 33, 37], "ua_valuerank_one_or_more_dimens": [5, 37], "ua_valuerank_scalar": [5, 33, 35, 37], "ua_valuerank_scalar_or_one_dimens": 5, "ua_valuerank_three_dimens": 5, "ua_valuerank_two_dimens": [5, 36], "ua_valuesourc": 19, "ua_valuesource_data": 19, "ua_valuesource_datasourc": 19, "ua_vari": [1, 2, 3, 4, 5, 19, 21, 22, 25, 26, 29, 30, 31, 33, 35, 36, 39, 40, 41], "ua_variableattribut": [2, 3, 5, 22, 28, 29, 30, 35, 36, 37, 39, 40, 41], "ua_variableattributes_default": [5, 28, 29, 30, 35, 36, 37, 41], "ua_variablenod": 19, "ua_variabletypeattribut": [2, 3, 5, 22, 37, 39, 40, 41], "ua_variabletypeattributes_default": [5, 37, 41], "ua_variabletypenod": 19, "ua_variant_clear": [25, 26], "ua_variant_copi": 26, "ua_variant_copyrang": 39, "ua_variant_data": 39, "ua_variant_data_nodelet": [19, 39], "ua_variant_hasarraytyp": 39, "ua_variant_hasscalartyp": [25, 39], "ua_variant_init": [25, 36], "ua_variant_isempti": 39, "ua_variant_isscalar": 39, "ua_variant_setarrai": [26, 36, 37, 39], "ua_variant_setarraycopi": [26, 33, 39], "ua_variant_setrang": 39, "ua_variant_setrangecopi": 39, "ua_variant_setscalar": [19, 26, 27, 28, 29, 30, 35, 36, 37, 39], "ua_variant_setscalarcopi": [30, 33, 39], "ua_variantstoragetyp": 39, "ua_versiontim": [39, 40], "ua_viewattribut": [2, 3, 5, 22, 39, 40, 41], "ua_viewattributes_default": [5, 41], "ua_viewdescript": [39, 40], "ua_viewnod": 19, "ua_writemask_accesslevel": 5, "ua_writemask_accesslevelex": 5, "ua_writemask_accessrestrict": 5, "ua_writemask_arrraydimens": 5, "ua_writemask_browsenam": 5, "ua_writemask_containsnoloop": 5, "ua_writemask_datatyp": 5, "ua_writemask_datatypedefinit": 5, "ua_writemask_descript": 5, "ua_writemask_displaynam": 5, "ua_writemask_eventnotifi": 5, "ua_writemask_execut": 5, "ua_writemask_histor": 5, "ua_writemask_inversenam": 5, "ua_writemask_isabstract": 5, "ua_writemask_minimumsamplinginterv": 5, "ua_writemask_nodeclass": 5, "ua_writemask_nodeid": 5, "ua_writemask_rolepermiss": 5, "ua_writemask_symmetr": 5, "ua_writemask_useraccesslevel": 5, "ua_writemask_userexecut": 5, "ua_writemask_userwritemask": 5, "ua_writemask_valueforvariabletyp": 5, "ua_writemask_valuerank": 5, "ua_writemask_writemask": 5, "ua_writerequest": [1, 3, 39, 40], "ua_writerespons": [1, 3, 39, 40], "ua_writergroup_lastpublishtimestamp": 21, "ua_writergroupconfig": [21, 27], "ua_writergroupconfig_clear": 21, "ua_writergroupdatatyp": [21, 39, 40], "ua_writevalu": [22, 36, 39, 40], "ua_writevalue_init": 36, "ua_x509identitytoken": [39, 40], "ua_xmlel": 39, "ua_xvtyp": [39, 40], "uabinaryfiledatatyp": 24, "uadp": [27, 28], "uadpdatasetmessagecontentmask": 24, "uadpdatasetreadermessagedatatyp": 24, "uadpdatasetwritermessagedatatyp": 24, "uadpnetworkmessagecontentmask": 24, "uadpwritergroupmessagedatatyp": [24, 27], "uaexpert": [22, 29, 31, 32], "uamethod": 13, "uamodel": 13, "uanodeset": 13, "uaobjecttyp": 13, "uareferencetyp": 13, "uavari": 13, "uax": 13, "ubuntu": 24, "udp": [0, 6, 14, 21, 24, 27, 28], "udpmc": 28, "uint16": [17, 21, 22, 24, 27, 28], "uint16_t": 39, "uint32": [3, 6, 13, 17, 21, 24, 28], "uint32_t": 39, "uint64": [21, 24], "uint64_t": 39, "uint8_t": 39, "uintptr_t": [17, 19, 39], "un": 23, "unacknowledgedmessagecount": [39, 40], "unassign": 22, "unauthorizedrequestcount": [39, 40], "unavail": [22, 23], "unbound": [5, 22, 41], "uncertain": [23, 39], "unchang": [2, 5, 41], "uncommon": 22, "undefin": [5, 6, 17, 39, 41], "under": [1, 6, 12, 13, 21, 22, 34], "underli": [5, 6, 15, 19, 21, 23, 30, 35, 41], "understand": [6, 13, 29], "understood": 6, "unencrypt": [6, 20], "unexpect": 23, "unexpos": 29, "unfinish": 22, "unicod": 39, "unifi": [17, 24, 32], "unintend": [5, 41], "union": [14, 21, 22, 24, 39], "uniqu": [1, 6, 17, 21, 22, 23, 26, 31, 39], "unit": [0, 23], "unitid": [39, 40], "univers": 13, "unix": [0, 22, 39], "unixd": 39, "unknown": [17, 23, 27, 28, 39], "unlik": 6, "unlimit": [1, 4, 22], "unpack": 3, "unquotedkei": 39, "unrecogn": 23, "unrecover": [1, 17], "unregist": [6, 22], "unregisternod": 6, "unregisternodescount": [39, 40], "unregisternodesrequest": 24, "unregisternodesrespons": 24, "unsecur": 6, "unsign": 13, "unsignedrationalnumb": 24, "unstabl": 0, "unsupport": [6, 19], "until": [1, 6, 17, 19, 22], "untouch": [5, 39, 41], "unus": [19, 22, 39], "unusu": 39, "up": [0, 1, 5, 6, 13, 17, 18, 19, 22, 24, 25, 26, 28, 30, 32, 35, 38, 39, 41], "updat": [0, 1, 6, 13, 15, 19, 20, 21, 23, 24, 28, 29, 38], "updatecertificateandprivatekei": 20, "updatecurrenttim": 30, "updatedatacap": 22, "updatedatadetail": 24, "updateeventcap": 22, "updateeventdetail": 24, "updatemonitoringinterv": 21, "updatestructuredatadetail": 24, "updatetyp": [39, 40], "updatevalu": [39, 40], "updatevaluess": [39, 40], "upon": [0, 1, 12, 19, 22, 29, 30, 39], "upper": [17, 23], "upsert": [5, 41], "uri": [1, 2, 13, 20, 22, 23, 27, 28, 39], "uristr": 24, "urisvers": [39, 40], "url": [1, 22, 24, 27, 28, 39, 40], "us": [0, 1, 2, 3, 4, 5, 6, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 36, 37, 38, 39, 41], "usabl": [1, 12, 39], "usag": [1, 13, 19, 21, 22, 27, 28, 29], "usebinaryencod": [39, 40], "user": [0, 1, 4, 5, 6, 13, 15, 17, 19, 21, 22, 23, 29, 32, 34, 39], "useraccesslevel": [3, 6, 13, 22, 39, 40], "userconfigur": [39, 40], "userconfigurationmask": 24, "userdata": [1, 3, 4], "userevers": 39, "userexecut": [3, 6, 22, 31, 33, 39, 40], "useridentitytoken": [1, 15, 22, 24], "useridentitytokenss": [39, 40], "userland": 22, "usermanagementdatatyp": 24, "usernam": [1, 6, 17, 22, 39, 40], "usernameidentitytoken": 24, "userrolepermiss": 6, "userspecificcallback": 29, "usertokenpolici": [1, 15, 22, 24], "usertokenpoliciess": 15, "usertokensignatur": [39, 40], "usertokentyp": 24, "userwrit": 19, "userwritemask": [3, 6, 22, 39, 40], "useservercapabilitiesdefault": [39, 40], "usesimplebound": [39, 40], "useslopedextrapol": [39, 40], "usual": [0, 1, 6, 22, 29, 39], "utc": 39, "utctim": 24, "util": [0, 24], "v": [0, 5, 13, 16, 22, 26, 39, 41], "v0": 12, "v1": 12, "v2": [12, 26], "v3": 26, "v6": 17, "va_end": 18, "va_list": 18, "va_start": 18, "valid": [5, 6, 12, 13, 15, 17, 21, 23, 39, 41], "validbit": [39, 40], "valu": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 20, 21, 22, 23, 24, 25, 26, 28, 29, 34, 35, 36, 37, 38, 39, 40], "valuebackend": [19, 22, 30], "valuerank": [3, 13, 19, 22, 24, 28, 33, 35, 36, 37, 39, 40, 41], "valuesourc": 19, "valuess": [39, 40], "valuetyp": 2, "vararg": 18, "variabl": [0, 5, 6, 12, 13, 15, 19, 21, 22, 23, 24, 25, 27, 28, 29, 33, 34, 35, 38, 39, 41], "variable_1": 29, "variable_2": 29, "variable_3": 29, "variableattribut": [19, 22, 24], "variablefieldnam": 22, "variablenod": [14, 22, 24, 33, 36], "variablepropertynam": 22, "variables_bas": 26, "variables_nodeid": 26, "variables_vari": 26, "variablestoadd": 21, "variablestoadds": 21, "variabletyp": [5, 6, 19, 22], "variabletypeattribut": 24, "variabletypenod": [14, 24, 37], "variabletypenodeid": [29, 30], "variant": [1, 3, 6, 19, 21, 22, 24, 25, 33, 38], "varieti": 6, "vattr": [28, 37], "vector": 20, "vendor": 22, "verb": [39, 40], "verbos": 13, "veri": [12, 31, 32], "verif": 1, "verifi": [6, 13, 16, 20, 22, 23, 33], "verifycertif": 16, "verifyrequesttimestamp": 22, "version": [0, 1, 2, 5, 6, 13, 22, 23], "versiontim": 24, "via": [0, 1, 6, 12, 17, 19, 20, 21, 22, 32, 34, 39], "vid": [5, 17, 41], "view": [1, 23, 24, 39, 40], "viewattribut": 24, "viewdescript": 24, "viewid": [39, 40], "viewnod": [14, 24], "viewvers": [39, 40], "violat": 23, "visibl": [0, 6, 19], "visitor": 19, "visitorctx": 19, "visual": [0, 32], "visualis": 35, "visualstudio": 0, "vlan": [5, 17, 41], "void": [1, 2, 3, 4, 5, 13, 15, 16, 17, 18, 19, 20, 21, 22, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "volatil": [17, 22], "volum": 23, "vtattr": 37, "w3": 13, "wa": [1, 5, 6, 13, 16, 19, 20, 21, 22, 23, 30, 33, 35, 39, 41], "wai": [2, 5, 13, 17, 21, 22, 27, 28, 29, 30, 31, 35, 39, 41], "wait": [1, 4, 17, 22, 23], "waitintern": 22, "wallclock": 17, "want": [1, 6, 19, 22, 27, 31, 34, 35], "warm": 22, "warmli": 13, "warn": [0, 19, 21, 22], "we": [0, 1, 3, 5, 6, 12, 13, 22, 27, 29, 30, 31, 32, 33, 35, 36, 37, 39, 41], "websit": 12, "weihenstephan": 13, "welcom": [12, 13], "well": [0, 1, 5, 6, 12, 13, 17, 19, 34], "were": [19, 23, 39], "weren": 13, "wg": 27, "wgcontext": 20, "wgid": 21, "what": [13, 20, 21, 22], "whatev": 23, "wheel": [5, 41], "when": [1, 4, 6, 12, 13, 15, 17, 19, 21, 22, 23, 29, 30, 33, 35, 37, 39], "whenev": 22, "where": [1, 5, 6, 7, 8, 9, 10, 11, 13, 17, 19, 21, 22, 35, 39, 41], "wherea": 1, "whereclaus": [7, 8, 9, 10, 11, 39, 40], "whereclauseresult": [39, 40], "whether": [1, 2, 5, 6, 17, 19, 22, 31, 39, 41], "which": [0, 1, 6, 13, 17, 19, 20, 21, 22, 23, 25, 27, 28, 29, 31, 33, 34, 39], "while": [1, 3, 6, 13, 19, 21, 22, 23], "whitespac": [5, 41], "who": 39, "whose": [6, 13], "why": 22, "wide": [0, 6], "wild": 22, "wildcard": [5, 6, 41], "win32": [17, 22], "window": [6, 17, 22, 24], "winsock": [25, 32], "wireshark": [6, 27], "wish": 19, "within": [1, 6, 13, 17, 18, 21, 22, 23, 27, 28, 39], "without": [0, 1, 6, 17, 19, 21, 22, 23, 39], "won": 29, "work": [0, 1, 5, 12, 13, 19, 20, 22, 24, 32, 36, 38, 39, 41], "workaround": 5, "worker": [0, 22], "world": [6, 24, 38, 39], "worri": 32, "would": [13, 22, 23, 30, 31], "wr": 3, "wrap": [1, 39], "wrapper": [1, 3, 25], "writabl": 36, "write": [1, 6, 13, 19, 20, 21, 23, 24, 29, 30, 35, 36, 37], "writecallback": 3, "writecount": [39, 40], "writecurrenttim": 30, "writeindexrang": [39, 40], "writemask": [3, 6, 19, 22, 39, 40], "writer": 21, "writerequest": 24, "writerespons": 24, "writeresult": 22, "writergroup": [20, 24, 27, 39, 40], "writergroupconfig": [21, 27], "writergroupdatatyp": 24, "writergroupid": [21, 27, 28, 39, 40], "writergroupmessag": 27, "writergroupss": [39, 40], "writevalu": [22, 24], "writevari": [36, 37], "writewrongvari": 36, "written": [6, 12, 19, 20, 22, 23, 37], "wrong": 16, "wss": 22, "wv": 36, "www": [0, 13], "x": [13, 19, 22, 24, 39, 40], "x509": [1, 6], "x509identitytoken": 24, "xcode": 0, "xml": [0, 12, 24], "xmlelement": 24, "xmlencodingid": 39, "xmln": 13, "xmlschema": 13, "xq": 13, "xsd": 13, "xsi": 13, "xvtype": 24, "xxx": 39, "y": [39, 40], "year": [25, 39], "yet": [1, 5, 13, 22, 23], "you": [0, 1, 2, 6, 12, 13, 16, 19, 21, 22, 25, 27, 31, 32, 39], "your": [0, 13, 32], "yourorganis": 13, "yourself": 22, "z": [39, 40], "zero": [0, 1, 5, 6, 13, 17, 19, 20, 21, 22, 26, 36, 37, 39, 41], "zipfil": 0, "zs8w1aqi71w8p": 13}, "titles": ["Building open62541", "Client", "Highlevel Client Functionality", "Async Services", "Subscriptions", "Common Definitions", "Core Concepts of OPC UA", "Case 0", "Case 1", "Case 2", "Case 3", "Case 4", "Introduction", "XML Nodeset Compiler", "Plugin API", "Access Control Plugin API", "<no title>", "Event Loop Subsystem", "Logging Plugin API", "Node Store Plugin API", "SecurityPolicy", "PubSub", "Server", "StatusCodes", "open62541 Documentation", "Building a Simple Client", "Working with Data Types", "Working with Publish/Subscribe", "Subscribing Fields", "Using Alarms and Conditions Server", "Connecting a Variable with a Physical Process", "Generating events", "Building a Simple Server", "Adding Methods to Objects", "Observing Attributes with Local MonitoredItems", "Working with Objects and Object Types", "Adding Variables to a Server", "Working with Variable Types", "Tutorials", "Data Types", "NamingRuleType", "Range Definition"], "titleterms": {"": 22, "0": 7, "1": 8, "10": 22, "2": 9, "3": 10, "4": 11, "And": [5, 41], "access": [2, 5, 15, 22], "accesslevelextyp": [39, 40], "accessleveltyp": [39, 40], "accessrestrictiontyp": [39, 40], "activatesessionrequest": [39, 40], "activatesessionrespons": [39, 40], "ad": [33, 36], "addit": 22, "additionalparameterstyp": [39, 40], "addnodesitem": [39, 40], "addnodesrequest": [39, 40], "addnodesrespons": [39, 40], "addnodesresult": [39, 40], "addreferencesitem": [39, 40], "addreferencesrequest": [39, 40], "addreferencesrespons": [39, 40], "advanc": 1, "aggregateconfigur": [39, 40], "aggregatefilt": [39, 40], "aggregatefilterresult": [39, 40], "alarm": [22, 29], "aliasnamedatatyp": [39, 40], "an": 31, "annot": [39, 40], "anonymousidentitytoken": [39, 40], "api": [14, 15, 18, 19], "applicationdescript": [39, 40], "applicationinstancecertif": [39, 40], "applicationtyp": [39, 40], "arch": 0, "architectur": 12, "argument": [39, 40], "arrai": [6, 33, 39], "artefact": 0, "async": [3, 22], "asynchron": [1, 3], "attrbiut": 1, "attribut": [2, 3, 5, 6, 19, 22, 34, 41], "attributeoperand": [39, 40], "attributewritemask": [39, 40], "audiodatatyp": [39, 40], "automat": 13, "axisinform": [39, 40], "axisscaleenumer": [39, 40], "base": 19, "basic": 26, "binari": [0, 5, 39, 41], "bitfield": 19, "bitfieldmaskdatatyp": [39, 40], "boolean": 39, "brokerconnectiontransportdatatyp": [39, 40], "brokerdatasetreadertransportdatatyp": [39, 40], "brokerdatasetwritertransportdatatyp": [39, 40], "brokertransportqualityofservic": [39, 40], "brokerwritergrouptransportdatatyp": [39, 40], "brows": 22, "browsedescript": [39, 40], "browsedirect": [39, 40], "browsenextrequest": [39, 40], "browsenextrespons": [39, 40], "browsepath": [39, 40], "browsepathresult": [39, 40], "browsepathtarget": [39, 40], "browserequest": [39, 40], "browserespons": [39, 40], "browseresult": [39, 40], "browseresultmask": [39, 40], "build": [0, 25, 32], "buildinfo": [39, 40], "builtin": 39, "byte": 39, "bytestr": 39, "call": [2, 3, 31], "callback": [1, 19, 21, 22, 30], "callmethodrequest": [39, 40], "callmethodresult": [39, 40], "callrequest": [39, 40], "callrespons": [39, 40], "cancelrequest": [39, 40], "cancelrespons": [39, 40], "case": [7, 8, 9, 10, 11], "certif": 22, "chang": 29, "channelsecuritytoken": [39, 40], "client": [1, 2, 25], "closesecurechannelrequest": [39, 40], "closesecurechannelrespons": [39, 40], "closesessionrequest": [39, 40], "closesessionrespons": [39, 40], "cmake": 0, "combin": 13, "common": 5, "companion": 13, "compil": 13, "complex": [5, 41], "complexnumbertyp": [39, 40], "concept": 6, "condit": [22, 29], "config": [5, 41], "configur": [1, 22, 32], "configurationversiondatatyp": [39, 40], "connect": [1, 5, 17, 21, 22, 30, 41], "constructor": 19, "contain": 0, "contentfilt": [39, 40], "contentfilterel": [39, 40], "contentfilterelementresult": [39, 40], "contentfilterresult": [39, 40], "context": 19, "continuationpoint": [39, 40], "contribut": 12, "control": 15, "conveni": [5, 41], "core": 6, "counter": [5, 39, 40], "creat": [13, 22], "createmonitoreditemsrequest": [39, 40], "createmonitoreditemsrespons": [39, 40], "createsessionrequest": [39, 40], "createsessionrespons": [39, 40], "createsubscriptionrequest": [39, 40], "createsubscriptionrespons": [39, 40], "cryptographi": [5, 41], "currencyunittyp": [39, 40], "custom": [1, 21, 22], "data": [1, 6, 22, 26, 30, 39], "datachangefilt": [39, 40], "datachangenotif": [39, 40], "datachangetrigg": [39, 40], "datagramconnectiontransport2datatyp": [39, 40], "datagramconnectiontransportdatatyp": [39, 40], "datagramdatasetreadertransportdatatyp": [39, 40], "datagramwritergrouptransport2datatyp": [39, 40], "datagramwritergrouptransportdatatyp": [39, 40], "datasetfield": 21, "datasetfieldcontentmask": [39, 40], "datasetfieldflag": [39, 40], "datasetmetadatatyp": [39, 40], "datasetorderingtyp": [39, 40], "datasetread": 21, "datasetreaderdatatyp": [39, 40], "datasetwrit": 21, "datasetwriterdatatyp": [39, 40], "datatypeattribut": [39, 40], "datatypedescript": [39, 40], "datatypenod": [6, 19], "datatypeschemahead": [39, 40], "datavalu": 39, "datestr": [39, 40], "datetim": 39, "deadbandtyp": [39, 40], "debian": 0, "debug": 0, "decimaldatatyp": [39, 40], "decimalstr": [39, 40], "declar": 5, "decod": 39, "default": [5, 41], "definit": [5, 39, 41], "delet": 22, "deleteattimedetail": [39, 40], "deleteeventdetail": [39, 40], "deletemonitoreditemsrequest": [39, 40], "deletemonitoreditemsrespons": [39, 40], "deletenodesitem": [39, 40], "deletenodesrequest": [39, 40], "deletenodesrespons": [39, 40], "deleterawmodifieddetail": [39, 40], "deletereferencesitem": [39, 40], "deletereferencesrequest": [39, 40], "deletereferencesrespons": [39, 40], "deletesubscriptionsrequest": [39, 40], "deletesubscriptionsrespons": [39, 40], "der": 22, "descript": 22, "destructor": 19, "detail": 0, "diagnosticinfo": 39, "diagnosticslevel": [39, 40], "differ": 6, "dimens": 6, "discoveri": [1, 6, 22], "docker": 0, "document": 24, "doubl": 39, "doublecomplexnumbertyp": [39, 40], "duplex": [39, 40], "durat": [39, 40], "durationstr": [39, 40], "eccencryptedsecret": [39, 40], "elementoperand": [39, 40], "emit": 31, "en": 39, "encod": [22, 39], "encrypt": 22, "endpoint": [5, 41], "endpointconfigur": [39, 40], "endpointdescript": [39, 40], "endpointtyp": [39, 40], "endpointurllistdatatyp": [39, 40], "enumdefinit": [39, 40], "enumdescript": [39, 40], "enumer": [39, 40], "enumfield": [39, 40], "enumvaluetyp": [39, 40], "ephemeralkeytyp": [39, 40], "escap": [5, 41], "ethernet": 17, "euinform": [39, 40], "event": [17, 22, 29, 31], "eventfieldlist": [39, 40], "eventfilt": [39, 40], "eventfilterresult": [39, 40], "eventloop": 22, "eventlop": 17, "eventnotifi": 5, "eventnotificationlist": [39, 40], "eventnotifiertyp": [39, 40], "exampl": [0, 5, 33, 41], "exceptiondeviationformat": [39, 40], "expandednodeid": 39, "experiment": 22, "express": [5, 41], "extensionobject": 39, "featur": [0, 12], "field": [27, 28], "fieldmetadata": [39, 40], "fieldtargetdatatyp": [39, 40], "filteroper": [39, 40], "findserversonnetworkrequest": [39, 40], "findserversonnetworkrespons": [39, 40], "findserversrequest": [39, 40], "findserversrespons": [39, 40], "float": 39, "forward": 5, "function": [1, 2, 22], "further": 25, "gener": [5, 31, 39, 41], "genericattribut": [39, 40], "genericattributevalu": [39, 40], "get": [12, 13], "getendpointsrequest": [39, 40], "getendpointsrespons": [39, 40], "global": 19, "guid": 39, "handl": [5, 22, 26, 39], "hello": 33, "help": 12, "helper": [5, 41], "hierarchi": 35, "highlevel": 2, "histor": [2, 22], "historydata": [39, 40], "historyev": [39, 40], "historyeventfieldlist": [39, 40], "historymodifieddata": [39, 40], "historyreadrequest": [39, 40], "historyreadrespons": [39, 40], "historyreadresult": [39, 40], "historyreadvalueid": [39, 40], "historyupdatedetail": [39, 40], "historyupdaterequest": [39, 40], "historyupdaterespons": [39, 40], "historyupdateresult": [39, 40], "historyupdatetyp": [39, 40], "id": 5, "identitycriteriatyp": [39, 40], "identitymappingruletyp": [39, 40], "idtyp": [39, 40], "imagebmp": [39, 40], "imagegif": [39, 40], "imagejpg": [39, 40], "imagepng": [39, 40], "implement": [17, 21], "increas": 33, "index": [39, 40], "inform": [6, 21, 22, 35], "insid": 0, "instanc": 13, "instanti": 35, "int16": 39, "int32": 39, "int64": 39, "integerid": [39, 40], "interact": 22, "interfaceadminstatu": [39, 40], "interfaceoperstatu": [39, 40], "interrupt": 17, "introduct": 12, "issu": 13, "issuedidentitytoken": [39, 40], "json": 39, "jsondatasetmessagecontentmask": [39, 40], "jsondatasetreadermessagedatatyp": [39, 40], "jsondatasetwritermessagedatatyp": [39, 40], "jsonnetworkmessagecontentmask": [39, 40], "jsonwritergroupmessagedatatyp": [39, 40], "kei": [5, 22, 41], "keyvaluepair": [39, 40], "level": 5, "librari": 0, "lifecycl": [1, 5, 19, 22, 32], "limit": 22, "literaloperand": [39, 40], "local": [22, 34], "localeid": [39, 40], "localizedtext": 39, "log": 18, "loop": 17, "macro": [5, 41], "main": 0, "manag": [2, 3, 17, 22], "manual": 30, "map": [5, 41], "mask": 5, "mdnsdiscoveryconfigur": [39, 40], "messag": 6, "messagesecuritymod": [39, 40], "method": [2, 3, 6, 22, 31, 33], "methodattribut": [39, 40], "methodnod": [6, 19], "minim": 0, "misc": 2, "model": [6, 21, 22, 35], "modelchangestructuredatatyp": [39, 40], "modelchangestructureverbmask": [39, 40], "modificationinfo": [39, 40], "modifymonitoreditemsrequest": [39, 40], "modifymonitoreditemsrespons": [39, 40], "modifysubscriptionrequest": [39, 40], "modifysubscriptionrespons": [39, 40], "monitoreditem": [4, 6, 22, 34], "monitoreditemcreaterequest": [39, 40], "monitoreditemcreateresult": [39, 40], "monitoreditemmodifyrequest": [39, 40], "monitoreditemmodifyresult": [39, 40], "monitoreditemnotif": [39, 40], "monitoringmod": [39, 40], "monitoringparamet": [39, 40], "mqtt": 17, "multipl": 13, "namingruletyp": [39, 40], "negotiationstatu": [39, 40], "network": 22, "networkaddressdatatyp": [39, 40], "networkaddressurldatatyp": [39, 40], "networkgroupdatatyp": [39, 40], "node": [2, 3, 5, 6, 19, 22, 41], "nodeattribut": [39, 40], "nodeattributesmask": [39, 40], "nodeclass": [6, 39, 40], "nodeid": [26, 39], "nodemanag": 6, "noderefer": [39, 40], "nodeset": 13, "nodesetinject": 13, "nodestor": 19, "nodetypedescript": [39, 40], "normalizedstr": [39, 40], "notificationmessag": [39, 40], "number": [5, 41], "numericrang": 39, "o": 0, "object": [13, 22, 33, 35], "objectattribut": [39, 40], "objectnod": [6, 19], "objecttypeattribut": [39, 40], "objecttypenod": [6, 19], "observ": 34, "opaquenumericrang": [39, 40], "opc": [6, 12], "open62541": [0, 12, 24], "openbsd": 0, "openfilemod": [39, 40], "opensecurechannelrequest": [39, 40], "opensecurechannelrespons": [39, 40], "oper": [3, 22], "option": 0, "optionset": [39, 40], "order": 5, "outstand": 13, "overridevaluehandl": [39, 40], "packag": 0, "paramet": [5, 41], "pars": [5, 41], "parser": [5, 41], "parsingresult": [39, 40], "password": 22, "passwordoptionsmask": [39, 40], "performupdatetyp": [39, 40], "permissiontyp": [39, 40], "physic": 30, "pkc": 22, "plugin": [14, 15, 18, 19, 32], "pointer": 19, "polici": 17, "portablenodeid": [39, 40], "portablequalifiednam": [39, 40], "posix": 17, "prebuilt": 0, "print": [5, 41], "prioritymappingentrytyp": [39, 40], "privat": 22, "process": 30, "programdiagnostic2datatyp": [39, 40], "programdiagnosticdatatyp": [39, 40], "protocol": 6, "publish": 27, "publisheddataitemsdatatyp": [39, 40], "publisheddataset": 21, "publisheddatasetcustomsourcedatatyp": [39, 40], "publisheddatasetdatatyp": [39, 40], "publishedeventsdatatyp": [39, 40], "publishedvariabledatatyp": [39, 40], "publishrequest": [39, 40], "publishrespons": [39, 40], "pubsub": [0, 20, 21, 22], "pubsubconfiguration2datatyp": [39, 40], "pubsubconfigurationdatatyp": [39, 40], "pubsubconfigurationrefdatatyp": [39, 40], "pubsubconfigurationrefmask": [39, 40], "pubsubconfigurationvaluedatatyp": [39, 40], "pubsubconnectiondatatyp": [39, 40], "pubsubdiagnosticscounterclassif": [39, 40], "pubsubgroupdatatyp": [39, 40], "pubsubkeypushtargetdatatyp": [39, 40], "pubsubst": [39, 40], "qualifiednam": 39, "queri": 6, "querydatadescript": [39, 40], "querydataset": [39, 40], "queryfirstrequest": [39, 40], "queryfirstrespons": [39, 40], "querynextrequest": [39, 40], "querynextrespons": [39, 40], "random": [5, 41], "rang": [5, 39, 40, 41], "rationalnumb": [39, 40], "read": [2, 3, 22], "readannotationdatadetail": [39, 40], "readattimedetail": [39, 40], "readergroup": 21, "readergroupdatatyp": [39, 40], "readeventdetail": [39, 40], "readprocesseddetail": [39, 40], "readrawmodifieddetail": [39, 40], "readrequest": [39, 40], "readrespons": [39, 40], "readvalueid": [39, 40], "receiveqosprioritydatatyp": [39, 40], "redundancysupport": [39, 40], "redundantserverdatatyp": [39, 40], "refer": 22, "referencedescript": [39, 40], "referencenod": [39, 40], "referencetyp": 19, "referencetypeattribut": [39, 40], "referencetypenod": [6, 19], "regist": 22, "registeredserv": [39, 40], "registernodesrequest": [39, 40], "registernodesrespons": [39, 40], "registerserver2request": [39, 40], "registerserver2respons": [39, 40], "registerserverrequest": [39, 40], "registerserverrespons": [39, 40], "relativepath": [5, 39, 40, 41], "relativepathel": [39, 40], "represent": [19, 21], "republishrequest": [39, 40], "republishrespons": [39, 40], "request": 22, "requesthead": [39, 40], "responsehead": [39, 40], "revers": 22, "rolepermissiontyp": [39, 40], "rsaencryptedsecret": [39, 40], "rule": [5, 22], "runtim": 22, "samplingintervaldiagnosticsdatatyp": [39, 40], "sbyte": 39, "sdk": 0, "secur": 22, "securechannel": 6, "securitygroup": 21, "securitygroupdatatyp": [39, 40], "securitypolici": 20, "securitytokenrequesttyp": [39, 40], "select": 0, "semanticchangestructuredatatyp": [39, 40], "semanticversionstr": [39, 40], "server": [1, 22, 29, 32, 36], "serverdiagnosticssummarydatatyp": [39, 40], "serveronnetwork": [39, 40], "serverst": [39, 40], "serverstatusdatatyp": [39, 40], "servic": [1, 3, 6], "servicecounterdatatyp": [39, 40], "servicefault": [39, 40], "session": 22, "sessionauthenticationtoken": [39, 40], "sessiondiagnosticsdatatyp": [39, 40], "sessionlessinvokerequesttyp": [39, 40], "sessionlessinvokeresponsetyp": [39, 40], "sessionsecuritydiagnosticsdatatyp": [39, 40], "set": [6, 31], "setmonitoringmoderequest": [39, 40], "setmonitoringmoderespons": [39, 40], "setpublishingmoderequest": [39, 40], "setpublishingmoderespons": [39, 40], "settriggeringrequest": [39, 40], "settriggeringrespons": [39, 40], "sign": 22, "signal": 17, "signaturedata": [39, 40], "signedsoftwarecertif": [39, 40], "simpl": [25, 32], "simpleattributeoperand": [5, 39, 40, 41], "simpletypedescript": [39, 40], "size": 0, "sourc": [17, 22, 30], "spec": 13, "standalonesubscribeddatasetdatatyp": [39, 40], "standalonesubscribeddatasetrefdatatyp": [39, 40], "start": 13, "state": [5, 29], "statist": [5, 22], "statuschangenotif": [39, 40], "statuscod": [23, 39], "statusresult": [39, 40], "store": 19, "string": [5, 39, 41], "structur": [6, 35], "structuredefinit": [39, 40], "structuredescript": [39, 40], "structurefield": [39, 40], "structuretyp": [39, 40], "subscrib": [27, 28], "subscribeddataset": 21, "subscribeddatasetmirrordatatyp": [39, 40], "subscript": [4, 6, 22], "subscriptionacknowledg": [39, 40], "subscriptiondiagnosticsdatatyp": [39, 40], "subsystem": 17, "targetvariablesdatatyp": [39, 40], "task": 25, "tcp": 17, "threedcartesiancoordin": [39, 40], "threedfram": [39, 40], "threedorient": [39, 40], "threedvector": [39, 40], "time": [1, 22], "timer": 17, "timestampstoreturn": [39, 40], "timestr": [39, 40], "timezonedatatyp": [39, 40], "transferresult": [39, 40], "transfersubscriptionsrequest": [39, 40], "transfersubscriptionsrespons": [39, 40], "translatebrowsepathstonodeidsrequest": [39, 40], "translatebrowsepathstonodeidsrespons": [39, 40], "transmitqosprioritydatatyp": [39, 40], "trigger": [29, 31], "trustlist": [5, 41], "trustlistdatatyp": [39, 40], "trustlistmask": [39, 40], "tsnfailurecod": [39, 40], "tsnlistenerstatu": [39, 40], "tsnstreamstat": [39, 40], "tsntalkerstatu": [39, 40], "tutori": 38, "type": [1, 5, 6, 19, 22, 26, 35, 37, 39, 41], "ua": 6, "uabinaryfiledatatyp": [39, 40], "uadpdatasetmessagecontentmask": [39, 40], "uadpdatasetreadermessagedatatyp": [39, 40], "uadpdatasetwritermessagedatatyp": [39, 40], "uadpnetworkmessagecontentmask": [39, 40], "uadpwritergroupmessagedatatyp": [39, 40], "ubuntu": 0, "udp": 17, "uint16": 39, "uint32": 39, "uint64": 39, "unifi": 12, "union": 19, "unregisternodesrequest": [39, 40], "unregisternodesrespons": [39, 40], "unsignedrationalnumb": [39, 40], "up": 31, "updat": [22, 30], "updatedatadetail": [39, 40], "updateeventdetail": [39, 40], "updatestructuredatadetail": [39, 40], "uristr": [39, 40], "url": [5, 41], "us": [29, 35], "userconfigurationmask": [39, 40], "useridentitytoken": [39, 40], "usermanagementdatatyp": [39, 40], "usernameidentitytoken": [39, 40], "usertokenpolici": [39, 40], "usertokentyp": [39, 40], "utctim": [39, 40], "util": [1, 22], "valu": [5, 19, 30, 33, 41], "valuerank": [5, 6], "variabl": [30, 36, 37], "variableattribut": [39, 40], "variablenod": [6, 19], "variabletypeattribut": [39, 40], "variabletypenod": [6, 19], "variant": [26, 39], "versiontim": [39, 40], "view": 6, "viewattribut": [39, 40], "viewdescript": [39, 40], "viewnod": [6, 19], "window": 0, "work": [26, 27, 35, 37], "world": 33, "write": [2, 3, 5, 22], "writerequest": [39, 40], "writerespons": [39, 40], "writergroup": 21, "writergroupdatatyp": [39, 40], "writevalu": [39, 40], "x": 0, "x509identitytoken": [39, 40], "xml": [13, 39], "xmlelement": 39, "xvtype": [39, 40]}})
\ No newline at end of file
diff --git a/static/doc/open62541-master.pdf b/static/doc/open62541-master.pdf
index fa161f4b38a71cd8697dd2c27eb12a21a2c89558..60b1ea01ba8c1f876b8c6e3aa9953e18dc982a4b 100644
GIT binary patch
delta 142757
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
c^
zN>LElN7<*%A7^4iI;@U6rLtPoM?v6Lw%6g8q$aV_KzzfOx=@C0B0~L#4GXxoQWAJ*
zrI0y;U?`mlTFD~w;C63X^dSY~|vyl}f+h;jPYT_JqXvfMAqmx7H+Os{>
zHd7c|3cdtxys{s9!VoW%>MOzhD*$~x)=lqbH8@F+yd1toO%0$CuOv=hu~G%OUSy|?
z0KrKwMuOEspGIG77RItg(F7Fb50~3=pfw;VwuLJy!lRKb67$Pw+eQ_+C866**Kx)z
zjD>6g&K)BbpE8Z=9Ynav-CinjF}7VI2Z)VxRjdkYIl(@%i1MN{tn)WJEq>sDq|9tu
z-f@{;K}u=TJH;Y}=T&aG4QP1c8KT#nqvg;yR{tftLNv$SQr>i7kO#WF9d21P|L%Rl
z8tSsquSyV8i}kuE?O8@BC~*kyc0~S|A@WWOcM+;^FWYlCCt
zOyY5nFAfWPzA*C*r&6Zvl+YbF)vbHP>yyFZ)2y*T6TR};Lcgxdnj%$X7^odA$PuSQ
z{VY;9A3izgu5xY&1VM_W6`_vaedhpNNgDq)@SzFCa`YYSzw#Hn1|mQtScREm$ikFp
z6xYZ`x(#@#y6z~8(4FbYXTbE74^BJJKfGedvT(+jBwo`Ei_=V#yE*>3>2nGx7^HP;
zRFxZ~Qh^gTD!tasA9tQFW>k7ExI%iJpIvlX5sHb>5ATKsUOFV@yzTX`%f$Rf&?2ce
zKb@CME|?2Ptj&<|LmT36=kh-4MW86f8tf6oY;@W1(inq_b@5xmbv8@G!!$N0VXWm^
z$U=PoEc3j)!p(oNe-NCc>uM9>J(2foE(+Y|O^N
zww54PBY1`Y6#y+O0pY#HDT_CaJv!X)WN8+)f2f|Bwg!=cbd_?QidPGqp|}Gl2DR%A
z>KARfWEBE$jNBgS!p7(qKFJ(0#T~Vho@^Ko^2noTX-l|iDH@pon#mh{78V3G-pyq@
z*=?7822JHydv`iVztA%W_dCwzJh>JiQI^YiPBn&spb$P^<;II;M&0s{v^!bJM2~Y^
z#&spUX-CziLa#i=rCT51aG`aqNDG$wMnlQTnlqZ=^3KeMvxwV81pau@c#+1sO2Z8?8lbJKs$r_BZ6-f}l
z2KrSB?~A~Q0rnN=|F1Dn2%rv%#mw<##L>hCmX8mXQO?}K(#`727E7w5H5hK{P6QaB
z6;%X~37={_2!{4$k%jrc!8rerBL%=KIw;G3X3<(7OaYouaBJUY;9@@^Z3=#v{_k54
z%91!+j^6si2H*w>%efTWwblE^asTVzI>5s6KkrPP04iXttf{R|01_}(=6}wyvi*O~
zv9h;vIs+sizE0?7eIWju3ETf>LfP8o4iE-St<44euaWhiZ@iuWA5hSLbj<(yvi(1^
zzV-qfB79;0WkmmB?Eepj5(dcrmfBncz-S%J1^k78%kWvRv-u0ABHxtv&mZ=GnbboO
zARho{8+|dY@Cgm$RD|}=BX*9|+0n1P;;)*6G^x1~2+*w`HGmmNIIB$7jj+Gq9cyZk
z|IBdwFP8#i`RebENYhH+44{RDGXP%Pm|gXrg4>?`-(LScT5uL7_EeNra2g=)y2qNt
z^`>F|VLr6WgpX(O;=%oWfYJHSwVyw-3{(hdg6t~$6KDaH4vK%febG98m?DEEE->m`
z6l7IRj$V#6|BdWwAHUse#n@s^fF@HNrRQ`Me#M7U$A1pNG9
zslRzcT((K*jAz5QtC8apR5R``(g>j3@&Xyfk39vC4o?&8Q#wT81NfeO|CB2sMa420^s)Y2VKZ
z(HKSl`BJV3tjCQJx#D;P1DcPGqbw4sX})VIA=2hCf+$Vp-0MsxPB~tPc78-<|DmI>
zV~-JV1JH7kaJ?1$=u=75>viU!V!aV}CVY}*@=Q;hVQWq%@mjLD
zzs3G_UT(kb@pf6diFAb>~jSZKB@Z^E;bm)Z7^<=l!A0MIxKNi^3%!px^Aw)@M
zGR*mjbR#dIAV!5w`m)Q8hG4t^L>&0#g`#8v#tQ9BZq^HI^HX0c&Q~Ers1l@lGH~N{
zzU(yY@7~eA>}9i#?-IC44n+@{{5X#-sdr^wRn`sy83?A9^3TMT#)=p$*WK4hezd}A
zH-1akkCT9ba_~9|6}9BUYz=l`vY=-8c60O5;7JPGzRqjsi5RxoIPcLr|N9ts$O1*8
zG}6q4l$Qh;i|Qi$+q(6t-`;;q4}NbF^gkqj9VET8*5VCuN6AHcqQzGEVEq@96bU
z3io?Gszk=|i!LQ!dP|meCkeuFqx#^V=wvmh5!8x6KL)E_;>h7SML8>hb7hN*Vg$FR
z^Zg=NlVu$zkIkap5^W()Cxgq+Y+Ak9RqbVLl8PKVbK{@BI`?fP5OgB^LZ{Zs&P!@}
zqfiS^n<4I$NozM^2%e=5}92_lS0t
zx-Q5AMz>Ov2v<13R9)D@;$ur(P-IWNG1H>D2rR{Go6^=1kEYU#itUBhIXF@4kl;+m
zc}F0FQ$~gibZBG-{M^Bx6(fC2XLT0g#v>Qf;%m-d1|g3{-HaIa8o-P^VY@HHqf=gT
zlf|MX!lY!wME<)!yu2%)#IwjMd1tBp#0VAY>^Q+S9SD72EfC@KH*D+QrZTXp;TwE-##lD|veWS`V
z0$Vt@MOJ<<9cBbYH9^O_3!~73$wpY)qvLHlVRw*xUKcVOy|qdNT0*9&VZ}TYUz9=y
zG$a=V)LZ3fv5|6s0$6P^!}Ti#Y!%oAYEF+%n^Yo>%yrNQ<=&%gd@*#AV9R$3RwBBU
zt*@HC85B;;&CuzM>Pf-^ahl5psTA3V;9X1B&}#N2Uiq>p^7a?t)L-!hHJH`!roMj)
zwDb-1r!RN>>Kq#1{cVoFYyQ~YmIxOEe4@H8Z0pz@0>R;G%$&Hnif)~lqq+s_Wn~yt
zFQ8mjph}&Lq1&a|?V!(pVYnW#4R#=)>>P8EYi7!UEF;{NpuIMIa_zzwF4P3crag1i
zn{#MWS?nNJo?@BM5}ndG8Z+UJ>gwGD8h7PK
zAwMlcxrJP0k)_1Q*{?t;{LJ7MzRI3)l|g5#aSi4YY$c~ppAlFMtP1y1<2L?H
z8k@|M`wW0jH0~m*a^EdY?ZM}o`(_eu7htYii&{H2z0AHlf
z20Q6g&Qkyjuu3*c+t+dB`lL-yXX4LXkfCD75}v^ZF~L>$%g6m>r#>;=vbzXz8+&&h
zdTSC)){JYlwMlnt{;^jfQ10(Dwn^2KX@43&{!0)4Gy|h#P1C%0iec;s-m$X6^t}hf
zeb=e9Z!2y40Sl#Be$*?o?F0rBqEz>$oxtsd%TT&LFlM9&%;DMTqDxAJWI~eRx+h-}
z@ZM}>7Zg|z$%g(&e=YpyRbFEbR|%v1#Bb>P4t%nVDymHjRXkSNo5S+Fj*Jpo^FE7H
znv<|@wRyTmDQBXt>G}-WAMT#(vz95Va~8uDNpHU08vAG}OjlIyg=B1f{kdi;RCMDQ
z{!5-OEj`&)F=)@1s2L+kGx@_MBSLlitD`V(akeBilMDk%z7x;|r
zL`j7`tw6-?#7=u}Tc$?YvOwzrvkTaj4OA9`V;C$Nu~Wd9?DuKb{e(#43b;G%GYd`3
zfFbAJ`T)u6JPuP6zxG@@*43c;J&(~?Xbbt;=-}9NC0@qJ^x15f_@%05`Z7w?nI_g1
zThRboHt6c3>d%h6uuu;IOD4lt@S|kSVUv^@JkOjtR%y$jm=d(GL%uY=o60})6P4oz
z{pURCJ^c}(+BJ}kv2OfPgV7|xO}l5Dz%RzfT4?_MoaKU@QcNva*~e{KJ0es?Q<5v=-)1!G`;R*G5QC3|KwMoBCxjK-IW$9&k`HEZj*1ST3^1
zc_4L3d(raaIA&QcJIjJbAXZn&0H+j}#FI>mQrF*#so8eFnam|^naKuEBT*}i{A^5b
z*7z)1$itCjWG1yIE{5M^t`M&^nLLiW?q
zRH$^XeE!tX6mP(vv^Y|JcUAPYdiA8xYLvpQugrw7vBJtE+-#AwMw`0|O^~I(y})51
zygW8m?5J~-cKn$)EN-BoxSY9Ryi#>CDS9laBguKJGG-I$C#XGI$rU^c{JxgiVIS8p
zQCZ{iRi8noRXnBYVoH6YC-a#%l9PJn`_{8)5@n+st22j3@`CDzCV|zmkHV^6mUCEZ
zW=krj<$kpNigyuVWz29ooUg%O+qlNv_grhe?h)-#>|7MfxTmpOF4{(5vE?G`fv~oJ
zW0```fQ1BV(MZg(sYfKwxCxD&ytd$MDU~WT&T8F&lgA~u
z22Z#5<;MBMUpM_rf2Mex$He*li>=oSn-o4hkj*RotQ@E3!(+=rfC6ZQ1mU$~hwJ2>
zG*55t)fmwdy0q0Ld2CBpy`J0gm*zUk#?JHXp}SX`Yot!Uye~7Xf1FTMW7d0h1=-jS
zedr!a(y}R5u3J534gU2!^ZomMv-MB{JnZ=O?J$}B^MWadx4Xr`O3>e$AlSfzxvlcF
z7C{MqO_s=Q;qK|26Bv}Ee=s=
z_5dI`f#S{dm7wUTtJN(AqJFz&;b`-L>%-#2{>jOXcGPr|66o!g-7<(P3UpOX_;u15
zg+0e4I=Jrz#9gd%r0nLoxwEO0OcgQB8U8id-b36<)kPPm~H-u
z-ZK=8HuocA02Tr2VbSmvh!IgLrm=ZqWh`dZ&JK;Mz;+9QzkFcOL>tm=!6BlE%{KJU
zurx(;Vd55UqF9J2om77z?D@qh8`Yw3htOqw=3a=BZO5=M0k@FkF?P2_{bDwA{2+`|
zMFM?>2s`BXn(X$x38@9YfB5GcqA!m-xyf*4ML@J#TD>6KyDel083NsS*aT9r@6c#(Y?>z{pG>i^uP
z;GO?vSdtx7#O~on>z{PEH=jtkDJYOz1AH(OSvPoB6={_B=-ElW+L34^^wsuejS|2g
zIJ{$j?8#Zl^fONC|C@C+7iZm7R&ciphtQs^kR~m~ZdfE5_Z|3j6`Lj}ll!?P_Lo%b
zO6pJZXyak7o_Y%7X^f`vr$l-wsX1`SK5I2-^SB!6f_(jaXUbR=m>3BhQ2C7$gaY;@
z#*hYG@kD>_`UyvEvJv+$R1=PXL~lj92YkT5Bi~yn9zy>Gw~5QX{0CaX!D6%ue*jRR
z;m&{Kj0!$u&5;4DI;lg5oaj~QZ
zbi>oNR=~lcLc=w^YYkR?K+iTGJ^$-tPx@ux8Wolw2JYZZ#j)vuuub6S_CHLI3igX~
z@I@*3Px2}?1{anY$mtjVfLa=%K5h>Vj31i)DT;JcF)pY2HgxLUx{D*kTJ+cW_Nf6kT*;zc;x1LI4dnw
z9^gX7Y!L;%CkS=j!BDy}5LvC9MGueW05@oYx4PkhM86iK?c+H0XI-?ya*%E
zdZL0Hjd|G}zbp(E#*)X?IlRysVBS*H&Z
z$L>PIffk-P&=5g9bx|rZFha_m$Sg6Ssb48V2zO0K->ev?c*Hj11`F$#Zeg^nIDs>k
zF_>qjideZ)NfSFWOmrJ9ovnjXDiPSBr7rrlY;ygF7Ap#oUalNv?+0I-k0GC2ZCEPW
zfFO+TYvm3{ES0mltR#ezk#*yTYFFYT0*f#i3JWt6aDA+$eHR;UJWG$p^n10#+Rr};
zjPqKvF8!%xM_kfa2Ej#Uvv@lpI+cf!UpFJYh}AgT=im6FNpAKZ9l*qYv89q>R!3po
z2@LZy{tg`cj2D+;>_zJl>xw`duJ)5726t*_w{J?KJcDEj55QxuSr5FBAb+FE#{d+gum-?JawEBz+?F
z=P{kgzh=q0vuM}^vh-*K1oq7JdWE*AssGVxHv-dF#y#DDj2uQ{ofTKVHZiP+c9zzo
zBKC~Pr51q#kM?`;D_qY75HLo9$!m^{2|%$j1Ep<8bHiLL3KYL5KKvZGP1)!Y?W>%z
zPt3_IJujl;A{F-j;SU@_G2QbLsd$(&5_lN*}*?Xk;vY~
z0_)(>QjC`3OC+?h_+^I1kN;>b9viC$WhynvnR{zr9{j0_H?l|F`liVrkDu7Z{##3|
zkQ54ZM*#2bYa_p~_wT2r+V8zn?C
z)W{2?=xJv?Icn7bZyEffoSHk41W9+y59srld3V+a7q-yMCc8`L$Ui(u%|tyADBp~L
z(=GRIbbO^%s11eUdEBaeIv;LNlZ>pp;=_E%F12-8M_A;ylTof84wS+ttrz@VWG#pC|MZ5$Na=wsGk0p#VHDch0dyZ~h4*c1M
zJB)ft)NyNpPnD#B?sIssRcp|+QO)uFr;b1Onoya;buYb-Y&w%m6`lU=5>-KK9RW#r
zMv9(-=@_s$B{oi2v6rr!Dl04ictSs`hY@IeFj1ySXG3Dd8550K)Y?8JDT!P}0OzzRwnM_QNW>6`}r
zTpreCrKy5iV&s57Onn!YJ|mBM6eLsZO^p-JE+YhXhXPWeT7g^
z?Z{J@lDv>lUi19dr;_Fzko2vMgXN||MiVr-qlU}u>1Aea&Vuk|1^7I?vJ6-35xQ`S
z2jPx4q)mz%dY4g!3p8Fcbu<<_zu1I)Lv5P&hj
zD!e-};vI5@#|8!7qJKQmhli)#6L%q-hO|H4eZ=@d90hnBN{l
zkA-
zS`d#5_+QOmjT1vdTN#J~RXaR2c*z86n|cvne>KYpiI7~!ej)^AD8@;WQ6;v406rb}
z!Q{0k(ew5tP)FYzJK#wYDJY{}rM3y1AuEyT0L6u*0j$TB8z!>^CMf3>?u$^1vBt;R
z&$A^7QIXl}j*m)fyShO6uWAIJ+u-5~zyI`{<0oMue%R*7XN*N-x3D!zPX-3$M!DjM
zHDVsnx19+zM?0%%lNlm~OMLqr@k**Yied(Lo_x1TKQtxZgcaGuCf-)v8xu-;;^R#?Wo-U1;I7AQOwsMZt57S5*PX2w>su&%wA&=(u?EiQLEpPQ
zCAGQHRmEL?SVTe@V97Wgl!l{T`b!2R`T1s)6X^2CFQcp21fVVIQ9gVBMyK0=AB?J^
zb~P?qrm3utEIWs*xEX>g{ZWE{mE4L1Nkfk3Z#kw{M(APXlz;c=?Ot4zgwa`|>
zaTkU1>d=eHVdwT-8)RzC)husE5HSEpeUjhryj;1sq2;>wG#az#2DR9xwP%8Y1x*YR
z4g4$Z75j{=nN22JuhZ^&6P%C29LXNFg|cL{asfZ}_dJ`YTQCcLSbgR-Cr0dAYTl+d
zJ}H;Bdxd_O?1VHOlVp<3IV~%QNoT+(jqd!G_K|3+EIj7ISL}xFT7Z|5F!R#2u`2W(
z=k`ihm>}`y0p}){ZudyzJmbcb>C^ES1h4|7SK_^p=#x#4K^$4od}vzk5a$#L;sFcW
zfKZU5R&ZW$w^6l{;vr)pm!rJYrdqn2;(@Px-ZJtuY9Gjdjzs8X?j(L#SBY0-o%
zG9M9GDH7n?6WJ_IDPNEMX`B;E&>+#%eXZX7gb1$+cGOP#zje8Ni-4Q
zH_w)Oc)zWSwsuKTGMRUY8&NHCt4rXc5X|r4vSx~3#z=f6S&@oAb4dQy#k&w+o~7M7
z%ZtKttdXj6tOZ39wQ+HineIa!sz-0^gtFlHerp4ksCU7sQjl01{q}0G1UTYe?S@4O
zsKS80fg$KY9ZBC#T!-U;u<{i^g~9I(6D+Zi;tM5>wJ8VswZNiclY7R*uDS2ZQdFll_E~LeYn&-9poF8iY`s_L-t96(d%ifE9xNCFBxJmSAT-1k!Ag
z9FYLDzywV+_<=s=%b3PaBa@u!A5a;MBI@G4qOmnY%YAZ;NGxV*`m(I2tFv_Nu;g;
z33NYd-~u`T59g3^KA`d;gg?u=;T4rItq8<{*61K$5_+mMTT00=MhEn3kf>E$kt%tu
zU5)icM$^1=qJ%Fy7}egGW%_j`+Q=J}m6g&h{fM&)c=VqE=D7ldME-~Evf1%fKyMF^
zq%J@2Fp`oV*X0uN{AE-07rV+~KZnRM&4JP
zSI_u#)Eh2{Oy-NX_ak^U=2c_a4}lH7am7$(!J;ODQBd8RG+tWRL<22&)(LAIn3(3~
z&tKa8UJ2C*zHEen_umr4UF!o2VSIRdR~UXL&hrRF43tOReUJVlu@O8j2aw{RHB`H$u1%7DU;}r59WgyP>;Oa`V{?bsH9M&kj
zmf}C~Hj+b;vP$#;VTYasG6r{Fj#EqUw@5g(i6&r8i&
zD_oZYf$Xa}j@&(vibNYdhmj?C~T%+H0#eWW#
zi3vuy85YZ>ighS{O0XK2e*Cl;?Ts_O2m2BBa1EBkQ*$YEaZKDXE|i$JpsrtYQU3hZk}4_3`CbeqQvo^SP$
zEE%b+aiTj`Uu^EG;917U6Qt+z$HVJtpC^c4RCa
z@|COqzN5%FI?9Ycda+bmE-5tIoM+WhXjLjc`$?z-PY+E-$W!>Ogx@dtMl^(j58>6A
zpIp5n(2oS1&8DeNHZ5L1FcU&q5GqVS0voX95((483-+h?nL~gO%m)m#-&_;oxb|_n
z1j-K%tc4fsa&_TH+Pe!8#8vbU2Ae{6v4-c
z)z1}9oP%Bl1|a6Y#d%KZYvFEXhn<3e8>gCR-W=%-Q^&IXhgB+kVeLGyyijn;*!D3x
ze?gvgfB*U)_QmMCQG-BlJ(7YghJ