ua_transport_binary_secure.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #ifndef OPCUA_TRANSPORT_BINARY_SECURE_H_
  2. #define OPCUA_TRANSPORT_BINARY_SECURE_H_
  3. #include "ua_types.h"
  4. #include "ua_transport.h"
  5. #include "ua_transport_binary.h"
  6. #include "ua_stack_channel.h"
  7. #include "ua_stack_channel_manager.h"
  8. /*inputs for secure Channel which must be provided once
  9. endPointUrl
  10. securityPolicyUrl
  11. securityMode
  12. revisedLifetime
  13. */
  14. /*inputs for secure Channel Manager which must be provided once
  15. maxChannelCount
  16. */
  17. UA_Int32 SL_Process(const UA_ByteString* msg, UA_UInt32* pos);
  18. /**
  19. * @brief Wrapper function, to encapsulate handleRequest for openSecureChannel requests
  20. * @param channel A secure Channel structure, which receives the information for the new created secure channel
  21. * @param msg Message which holds the binary encoded request
  22. * @param pos Position in the message at which the request begins
  23. * @return Returns UA_SUCCESS if successful executed, UA_ERROR in any other case
  24. */
  25. UA_Int32 SL_ProcessOpenChannel(SL_Channel *channel, const UA_ByteString* msg,
  26. UA_UInt32 *pos);
  27. UA_Int32 SL_ProcessCloseChannel(SL_Channel *channel, const UA_ByteString* msg,
  28. UA_UInt32 *pos);
  29. #endif /* OPCUA_TRANSPORT_BINARY_SECURE_H_ */