123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
- #ifndef UA_CLIENT_INTERNAL_H_
- #define UA_CLIENT_INTERNAL_H_
- #include "ua_securechannel.h"
- #include "queue.h"
- /**************************/
- /* Subscriptions Handling */
- /**************************/
- #ifdef UA_ENABLE_SUBSCRIPTIONS
- typedef struct UA_Client_NotificationsAckNumber {
- LIST_ENTRY(UA_Client_NotificationsAckNumber) listEntry;
- UA_SubscriptionAcknowledgement subAck;
- } UA_Client_NotificationsAckNumber;
- typedef struct UA_Client_MonitoredItem {
- LIST_ENTRY(UA_Client_MonitoredItem) listEntry;
- UA_UInt32 monitoredItemId;
- UA_UInt32 monitoringMode;
- UA_NodeId monitoredNodeId;
- UA_UInt32 attributeID;
- UA_UInt32 clientHandle;
- UA_Double samplingInterval;
- UA_UInt32 queueSize;
- UA_Boolean discardOldest;
- void (*handler)(UA_UInt32 monId, UA_DataValue *value, void *context);
- void *handlerContext;
- } UA_Client_MonitoredItem;
- typedef struct UA_Client_Subscription {
- LIST_ENTRY(UA_Client_Subscription) listEntry;
- UA_UInt32 lifeTime;
- UA_UInt32 keepAliveCount;
- UA_Double publishingInterval;
- UA_UInt32 subscriptionID;
- UA_UInt32 notificationsPerPublish;
- UA_UInt32 priority;
- LIST_HEAD(UA_ListOfClientMonitoredItems, UA_Client_MonitoredItem) monitoredItems;
- } UA_Client_Subscription;
- void UA_Client_Subscriptions_forceDelete(UA_Client *client, UA_Client_Subscription *sub);
- #endif
- /**********/
- /* Client */
- /**********/
- typedef enum {
- UA_CLIENTAUTHENTICATION_NONE,
- UA_CLIENTAUTHENTICATION_USERNAME
- } UA_Client_Authentication;
- struct UA_Client {
- /* State */
- UA_ClientState state;
- UA_ClientConfig config;
- /* Connection */
- UA_Connection connection;
- UA_String endpointUrl;
- /* SecureChannel */
- UA_SecureChannel channel;
- UA_UInt32 requestId;
- UA_DateTime nextChannelRenewal;
- /* Authentication */
- UA_Client_Authentication authenticationMethod;
- UA_String username;
- UA_String password;
- /* Session */
- UA_UserTokenPolicy token;
- UA_NodeId authenticationToken;
- UA_UInt32 requestHandle;
-
- /* Subscriptions */
- #ifdef UA_ENABLE_SUBSCRIPTIONS
- UA_UInt32 monitoredItemHandles;
- LIST_HEAD(ListOfUnacknowledgedNotifications, UA_Client_NotificationsAckNumber) pendingNotificationsAcks;
- LIST_HEAD(ListOfClientSubscriptionItems, UA_Client_Subscription) subscriptions;
- #endif
- };
- #endif /* UA_CLIENT_INTERNAL_H_ */
|