ua_stack_channel.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * ua_stack_channel.h
  3. *
  4. * Created on: 09.05.2014
  5. * Author: root
  6. */
  7. #ifndef UA_STACK_CHANNEL_H_
  8. #define UA_STACK_CHANNEL_H_
  9. #include <stdio.h>
  10. #include <memory.h> // memcpy
  11. #include "ua_transport_connection.h"
  12. typedef enum ChannelState {
  13. UA_SL_CHANNEL_CLOSING,
  14. UA_SL_CHANNEL_CLOSED,
  15. UA_SL_CHANNEL_OPENING,
  16. UA_SL_CHANNEL_OPEN
  17. } SL_channelState;
  18. //hide object behind typedef
  19. struct SL_Channel;
  20. typedef struct SL_Channel SL_Channel;
  21. typedef UA_Int32 (*SL_ChannelSecurityTokenProvider)(SL_Channel, UA_Int32,
  22. SecurityTokenRequestType, UA_ChannelSecurityToken*);
  23. typedef UA_Int32 (*SL_ChannelIdProvider)(UA_UInt32*);
  24. UA_Int32 SL_Channel_new(SL_Channel **channel);
  25. UA_Int32 SL_Channel_init(SL_Channel channel, UA_TL_Connection connection,
  26. SL_ChannelIdProvider channelIdProvider,
  27. SL_ChannelSecurityTokenProvider tokenProvider);
  28. UA_Int32 SL_Channel_bind(SL_Channel channel, UA_TL_Connection connection);
  29. UA_Int32 SL_Channel_setRemoteSecuritySettings(SL_Channel channel,
  30. UA_AsymmetricAlgorithmSecurityHeader *asymSecHeader,
  31. UA_SequenceHeader *sequenceHeader);
  32. UA_Int32 SL_Channel_initLocalSecuritySettings(SL_Channel channel);
  33. UA_Int32 SL_Channel_delete(SL_Channel *channel);
  34. UA_Int32 SL_Channel_deleteMembers(SL_Channel channel);
  35. UA_Int32 SL_Channel_renewToken(SL_Channel channel, UA_UInt32 tokenId,
  36. UA_DateTime revisedLifetime, UA_DateTime createdAt);
  37. UA_Int32 SL_Channel_processOpenRequest(SL_Channel channel,
  38. const UA_OpenSecureChannelRequest* request,
  39. UA_OpenSecureChannelResponse* response);
  40. UA_Int32 SL_Channel_processCloseRequest(SL_Channel channel,
  41. const UA_CloseSecureChannelRequest* request);
  42. UA_Int32 SL_Channel_registerTokenProvider(SL_Channel channel,
  43. SL_ChannelSecurityTokenProvider provider);
  44. UA_Int32 SL_Channel_registerChannelIdProvider(SL_ChannelIdProvider provider);
  45. UA_Int32 SL_Channel_checkRequestId(SL_Channel channel, UA_UInt32 requestId);
  46. UA_Int32 SL_Channel_checkSequenceNumber(SL_Channel channel,
  47. UA_UInt32 sequenceNumber);
  48. UA_Boolean SL_Channel_compare(SL_Channel channel1, SL_Channel channel2);
  49. //getters
  50. UA_Int32 SL_Channel_getChannelId(SL_Channel channel, UA_UInt32 *channelId);
  51. UA_Int32 SL_Channel_getTokenId(SL_Channel channel, UA_UInt32 *tokenlId);
  52. UA_Int32 SL_Channel_getSequenceNumber(SL_Channel channel,
  53. UA_UInt32 *sequenceNumber);
  54. UA_Int32 SL_Channel_getRequestId(SL_Channel channel, UA_UInt32 *requestId);
  55. UA_Int32 SL_Channel_getConnectionId(SL_Channel channel,
  56. UA_UInt32 *connectionId);
  57. UA_Int32 SL_Channel_getConnection(SL_Channel channel,
  58. UA_TL_Connection *connection);
  59. UA_Int32 SL_Channel_getState(SL_Channel channel, SL_channelState *channelState);
  60. UA_Int32 SL_Channel_getLocalAsymAlgSettings(SL_Channel channel,
  61. UA_AsymmetricAlgorithmSecurityHeader **asymAlgSettings);
  62. UA_Int32 SL_Channel_getRemainingLifetime(SL_Channel channel,
  63. UA_Int32 *lifetime);
  64. UA_Int32 SL_Channel_getRevisedLifetime(SL_Channel channel,
  65. UA_UInt32 *revisedLifetime);
  66. //setters
  67. UA_Int32 SL_Channel_setId(SL_Channel channel, UA_UInt32 id);
  68. #endif /* UA_STACK_CHANNEL_H_ */