ua_services_securechannel.c 1004 B

12345678910111213141516171819
  1. #include "ua_services.h"
  2. #include "ua_securechannel_manager.h"
  3. void Service_OpenSecureChannel(UA_Server *server, UA_Connection *connection,
  4. const UA_OpenSecureChannelRequest *request,
  5. UA_OpenSecureChannelResponse *response) {
  6. // todo: if(request->clientProtocolVersion != protocolVersion)
  7. if(request->requestType == UA_SECURITYTOKENREQUESTTYPE_ISSUE)
  8. UA_SecureChannelManager_open(server->secureChannelManager, connection, request, response);
  9. else
  10. UA_SecureChannelManager_renew(server->secureChannelManager, connection, request, response);
  11. }
  12. void Service_CloseSecureChannel(UA_Server *server, UA_Int32 channelId) {
  13. //Sten: this service is a bit assymmetric to OpenSecureChannel since CloseSecureChannelRequest does not contain any indormation
  14. UA_SecureChannelManager_close(server->secureChannelManager, channelId);
  15. // 62451 Part 6 Chapter 7.1.4 - The server does not send a CloseSecureChannel response
  16. }