ua_session.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #ifndef UA_SESSION_H_
  2. #define UA_SESSION_H_
  3. #include "queue.h"
  4. #include "ua_types.h"
  5. #include "ua_securechannel.h"
  6. #define MAXCONTINUATIONPOINTS 5
  7. /**
  8. * @ingroup communication
  9. *
  10. * @{
  11. */
  12. struct ContinuationPointEntry {
  13. LIST_ENTRY(ContinuationPointEntry) pointers;
  14. UA_ByteString identifier;
  15. UA_BrowseDescription browseDescription;
  16. UA_Int32 continuationIndex;
  17. UA_UInt32 maxReferences;
  18. };
  19. struct UA_Session {
  20. UA_ApplicationDescription clientDescription;
  21. UA_Boolean activated;
  22. UA_String sessionName;
  23. UA_NodeId authenticationToken;
  24. UA_NodeId sessionId;
  25. UA_UInt32 maxRequestMessageSize;
  26. UA_UInt32 maxResponseMessageSize;
  27. UA_Int64 timeout;
  28. UA_DateTime validTill;
  29. UA_SecureChannel *channel;
  30. UA_UInt16 availableContinuationPoints;
  31. LIST_HEAD(ContinuationPointList, ContinuationPointEntry) continuationPoints;
  32. };
  33. extern UA_Session anonymousSession; ///< If anonymous access is allowed, this session is used internally (Session ID: 0)
  34. extern UA_Session adminSession; ///< Local access to the services (for startup and maintenance) uses this Session with all possible access rights (Session ID: 1)
  35. void UA_Session_init(UA_Session *session);
  36. void UA_Session_deleteMembersCleanup(UA_Session *session);
  37. /** If any activity on a session happens, the timeout is extended */
  38. void UA_Session_updateLifetime(UA_Session *session);
  39. /** @} */
  40. #endif /* UA_SESSION_H_ */