ua_services_discovery.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #include "ua_services.h"
  2. UA_Int32 Service_GetEndpoints(SL_Channel *channel,
  3. const UA_GetEndpointsRequest* request,
  4. UA_GetEndpointsResponse *response) {
  5. #ifdef DEBUG
  6. UA_String_printx("endpointUrl=", &request->endpointUrl);
  7. #endif
  8. response->endpointsSize = 1;
  9. UA_Array_new((void**) &response->endpoints, response->endpointsSize,
  10. &UA_.types[UA_ENDPOINTDESCRIPTION]);
  11. //Security issues:
  12. //The policy should be 'http://opcfoundation.org/UA/SecurityPolicy#None'
  13. //FIXME String or ByteString
  14. UA_AsymmetricAlgorithmSecurityHeader *asymSettings;
  15. SL_Channel_getLocalAsymAlgSettings(channel, &asymSettings);
  16. UA_String_copy((UA_String *) &(asymSettings->securityPolicyUri),
  17. &response->endpoints[0].securityPolicyUri);
  18. //FIXME hard-coded code
  19. response->endpoints[0].securityMode = UA_MESSAGESECURITYMODE_NONE;
  20. UA_String_copycstring(
  21. "http://opcfoundation.org/UA-Profile/Transport/uatcp-uasc-uabinary",
  22. &response->endpoints[0].transportProfileUri);
  23. response->endpoints[0].userIdentityTokensSize = 1;
  24. UA_Array_new((void**) &response->endpoints[0].userIdentityTokens,
  25. response->endpoints[0].userIdentityTokensSize,
  26. &UA_.types[UA_USERTOKENPOLICY]);
  27. UA_UserTokenPolicy *token = &response->endpoints[0].userIdentityTokens[0];
  28. UA_String_copycstring("my-anonymous-policy", &token->policyId); // defined per server
  29. token->tokenType = UA_USERTOKENTYPE_ANONYMOUS;
  30. token->issuerEndpointUrl = (UA_String ) { -1, UA_NULL };
  31. token->issuedTokenType = (UA_String ) { -1, UA_NULL };
  32. token->securityPolicyUri = (UA_String ) { -1, UA_NULL };
  33. UA_String_copy(&request->endpointUrl, &response->endpoints[0].endpointUrl);
  34. UA_String_copycstring("http://open62541.info/product/release",
  35. &(response->endpoints[0].server.productUri));
  36. // FIXME: This information should be provided by the application, preferably in the address space
  37. UA_String_copycstring("http://open62541.info/applications/4711",
  38. &(response->endpoints[0].server.applicationUri));
  39. UA_LocalizedText_copycstring("The open62541 application",
  40. &(response->endpoints[0].server.applicationName));
  41. // FIXME: This should be a feature of the application and an enum
  42. response->endpoints[0].server.applicationType = UA_APPLICATIONTYPE_SERVER;
  43. // all the other strings are empty by initialization
  44. return UA_SUCCESS;
  45. }