ua_client.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  1. #include "ua_client.h"
  2. #include "ua_nodeids.h"
  3. #include "ua_types.h"
  4. #include "ua_types_encoding_binary.h"
  5. #include "ua_transport_generated.h"
  6. struct UA_Client {
  7. UA_ClientNetworkLayer networkLayer;
  8. UA_String endpointUrl;
  9. UA_Connection connection;
  10. UA_UInt32 sequenceNumber;
  11. UA_UInt32 requestId;
  12. /* Secure Channel */
  13. UA_ChannelSecurityToken securityToken;
  14. UA_ByteString clientNonce;
  15. UA_ByteString serverNonce;
  16. /* UA_SequenceHeader sequenceHdr; */
  17. /* UA_NodeId authenticationToken; */
  18. /* Session */
  19. UA_NodeId sessionId;
  20. UA_NodeId authenticationToken;
  21. };
  22. UA_Client * UA_Client_new(void) {
  23. UA_Client *client = UA_malloc(sizeof(UA_Client));
  24. if(!client)
  25. return UA_NULL;
  26. UA_String_init(&client->endpointUrl);
  27. client->connection.state = UA_CONNECTION_OPENING;
  28. client->sequenceNumber = 0;
  29. client->requestId = 0;
  30. /* Secure Channel */
  31. UA_ChannelSecurityToken_deleteMembers(&client->securityToken);
  32. UA_ByteString_init(&client->clientNonce);
  33. UA_ByteString_init(&client->serverNonce);
  34. UA_NodeId_init(&client->authenticationToken);
  35. return client;
  36. }
  37. void UA_Client_delete(UA_Client* client){
  38. client->networkLayer.delete(client->networkLayer.nlHandle);
  39. UA_String_deleteMembers(&client->endpointUrl);
  40. // client->connection
  41. /* Secure Channel */
  42. UA_ByteString_deleteMembers(&client->clientNonce);
  43. UA_ByteString_deleteMembers(&client->serverNonce);
  44. free(client);
  45. }
  46. static UA_StatusCode SecureChannelHandshake(UA_Client *client) {
  47. UA_ByteString_deleteMembers(&client->clientNonce); // if the handshake is repeated
  48. UA_ByteString_newMembers(&client->clientNonce, 1);
  49. client->clientNonce.data[0] = 0;
  50. UA_SecureConversationMessageHeader messageHeader;
  51. messageHeader.messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_OPNF;
  52. messageHeader.secureChannelId = 0;
  53. UA_SequenceHeader seqHeader;
  54. seqHeader.sequenceNumber = ++client->sequenceNumber;
  55. seqHeader.requestId = ++client->requestId;
  56. UA_AsymmetricAlgorithmSecurityHeader asymHeader;
  57. UA_AsymmetricAlgorithmSecurityHeader_init(&asymHeader);
  58. UA_String_copycstring("http://opcfoundation.org/UA/SecurityPolicy#None", &asymHeader.securityPolicyUri);
  59. /* id of opensecurechannelrequest */
  60. UA_NodeId requestType = UA_NODEID_STATIC(0, UA_NS0ID_OPENSECURECHANNELREQUEST + UA_ENCODINGOFFSET_BINARY);
  61. UA_OpenSecureChannelRequest opnSecRq;
  62. UA_OpenSecureChannelRequest_init(&opnSecRq);
  63. opnSecRq.requestHeader.timestamp = UA_DateTime_now();
  64. UA_ByteString_copy(&client->clientNonce, &opnSecRq.clientNonce);
  65. opnSecRq.requestedLifetime = 30000;
  66. opnSecRq.securityMode = UA_MESSAGESECURITYMODE_NONE;
  67. opnSecRq.requestType = UA_SECURITYTOKENREQUESTTYPE_ISSUE;
  68. opnSecRq.requestHeader.authenticationToken.identifier.numeric = 10;
  69. opnSecRq.requestHeader.authenticationToken.identifierType = UA_NODEIDTYPE_NUMERIC;
  70. opnSecRq.requestHeader.authenticationToken.namespaceIndex = 10;
  71. messageHeader.messageHeader.messageSize =
  72. UA_SecureConversationMessageHeader_calcSizeBinary(&messageHeader) +
  73. UA_AsymmetricAlgorithmSecurityHeader_calcSizeBinary(&asymHeader) +
  74. UA_SequenceHeader_calcSizeBinary(&seqHeader) +
  75. UA_NodeId_calcSizeBinary(&requestType) +
  76. UA_OpenSecureChannelRequest_calcSizeBinary(&opnSecRq);
  77. UA_ByteString message;
  78. message.data = UA_alloca(messageHeader.messageHeader.messageSize);
  79. message.length = messageHeader.messageHeader.messageSize;
  80. size_t offset = 0;
  81. UA_SecureConversationMessageHeader_encodeBinary(&messageHeader, &message, &offset);
  82. UA_AsymmetricAlgorithmSecurityHeader_encodeBinary(&asymHeader, &message, &offset);
  83. UA_SequenceHeader_encodeBinary(&seqHeader, &message, &offset);
  84. UA_NodeId_encodeBinary(&requestType, &message, &offset);
  85. UA_OpenSecureChannelRequest_encodeBinary(&opnSecRq, &message, &offset);
  86. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  87. UA_OpenSecureChannelRequest_deleteMembers(&opnSecRq);
  88. UA_ByteStringArray buf = {.stringsSize = 1, .strings = &message};
  89. UA_StatusCode retval = client->networkLayer.send(client->networkLayer.nlHandle, buf);
  90. if(retval)
  91. return retval;
  92. // parse the response
  93. UA_ByteString reply;
  94. UA_ByteString_newMembers(&reply, client->connection.localConf.recvBufferSize);
  95. retval = client->networkLayer.awaitResponse(client->networkLayer.nlHandle, &reply, 1000);
  96. if(retval) {
  97. UA_ByteString_deleteMembers(&reply);
  98. return retval;
  99. }
  100. offset = 0;
  101. UA_SecureConversationMessageHeader_decodeBinary(&reply, &offset, &messageHeader);
  102. UA_AsymmetricAlgorithmSecurityHeader_decodeBinary(&reply, &offset, &asymHeader);
  103. UA_SequenceHeader_decodeBinary(&reply, &offset, &seqHeader);
  104. UA_NodeId_decodeBinary(&reply, &offset, &requestType);
  105. if(!UA_NodeId_equal(&requestType, &UA_NODEID_STATIC(0, UA_NS0ID_OPENSECURECHANNELRESPONSE +
  106. UA_ENCODINGOFFSET_BINARY))) {
  107. UA_ByteString_deleteMembers(&reply);
  108. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  109. return UA_STATUSCODE_BADINTERNALERROR;
  110. }
  111. UA_OpenSecureChannelResponse response;
  112. UA_OpenSecureChannelResponse_decodeBinary(&reply, &offset, &response);
  113. UA_ByteString_deleteMembers(&reply);
  114. retval = response.responseHeader.serviceResult;
  115. if(retval == UA_STATUSCODE_GOOD) {
  116. UA_ChannelSecurityToken_copy(&response.securityToken, &client->securityToken);
  117. UA_ByteString_deleteMembers(&client->serverNonce); // if the handshake is repeated
  118. UA_ByteString_copy(&response.serverNonce, &client->serverNonce);
  119. }
  120. UA_OpenSecureChannelResponse_deleteMembers(&response);
  121. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  122. return retval;
  123. }
  124. // The tcp connection is established. Now do the handshake
  125. static UA_StatusCode HelAckHandshake(UA_Client *c) {
  126. UA_TcpMessageHeader messageHeader;
  127. messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_HELF;
  128. UA_TcpHelloMessage hello;
  129. UA_String_copy(&c->endpointUrl, &hello.endpointUrl);
  130. UA_Connection *conn = &c->connection;
  131. hello.maxChunkCount = conn->localConf.maxChunkCount;
  132. hello.maxMessageSize = conn->localConf.maxMessageSize;
  133. hello.protocolVersion = conn->localConf.protocolVersion;
  134. hello.receiveBufferSize = conn->localConf.recvBufferSize;
  135. hello.sendBufferSize = conn->localConf.sendBufferSize;
  136. messageHeader.messageSize = UA_TcpHelloMessage_calcSizeBinary((UA_TcpHelloMessage const*) &hello) +
  137. UA_TcpMessageHeader_calcSizeBinary((UA_TcpMessageHeader const*) &messageHeader);
  138. UA_ByteString message;
  139. message.data = UA_alloca(messageHeader.messageSize);
  140. message.length = messageHeader.messageSize;
  141. size_t offset = 0;
  142. UA_TcpMessageHeader_encodeBinary(&messageHeader, &message, &offset);
  143. UA_TcpHelloMessage_encodeBinary(&hello, &message, &offset);
  144. UA_TcpHelloMessage_deleteMembers(&hello);
  145. UA_ByteStringArray buf = {.stringsSize = 1, .strings = &message};
  146. UA_StatusCode retval = c->networkLayer.send(c->networkLayer.nlHandle, buf);
  147. if(retval)
  148. return retval;
  149. UA_Byte replybuf[1024];
  150. UA_ByteString reply = {.data = replybuf, .length = 1024};
  151. retval = c->networkLayer.awaitResponse(c->networkLayer.nlHandle, &reply, 0);
  152. if (retval)
  153. return retval;
  154. offset = 0;
  155. UA_TcpMessageHeader_decodeBinary(&reply, &offset, &messageHeader);
  156. UA_TcpAcknowledgeMessage ackMessage;
  157. retval = UA_TcpAcknowledgeMessage_decodeBinary(&reply, &offset, &ackMessage);
  158. if(retval != UA_STATUSCODE_GOOD) {
  159. UA_TcpAcknowledgeMessage_deleteMembers(&ackMessage);
  160. return retval;
  161. }
  162. conn->remoteConf.maxChunkCount = ackMessage.maxChunkCount;
  163. conn->remoteConf.maxMessageSize = ackMessage.maxMessageSize;
  164. conn->remoteConf.protocolVersion = ackMessage.protocolVersion;
  165. conn->remoteConf.recvBufferSize = ackMessage.receiveBufferSize;
  166. conn->remoteConf.sendBufferSize = ackMessage.sendBufferSize;
  167. conn->state = UA_CONNECTION_ESTABLISHED;
  168. UA_TcpAcknowledgeMessage_deleteMembers(&ackMessage);
  169. return UA_STATUSCODE_GOOD;
  170. }
  171. /** If the request fails, then the response is cast to UA_ResponseHeader (at the beginning of every
  172. response) and filled with the appropriate error code */
  173. static void sendReceiveRequest(const void *request, const UA_DataType *requestType,
  174. void *response, const UA_DataType *responseType, UA_Client *client, UA_Boolean sendOnly)
  175. {
  176. UA_SecureConversationMessageHeader msgHeader;
  177. if(sendOnly){
  178. msgHeader.messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_CLOF;
  179. }else{
  180. msgHeader.messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_MSGF;
  181. }
  182. msgHeader.secureChannelId = client->securityToken.channelId;
  183. UA_SymmetricAlgorithmSecurityHeader symHeader;
  184. symHeader.tokenId = client->securityToken.tokenId;
  185. UA_SequenceHeader seqHeader;
  186. seqHeader.sequenceNumber = ++client->sequenceNumber;
  187. seqHeader.requestId = ++client->requestId;
  188. UA_NodeId requestId = UA_NODEID_STATIC(0, requestType->typeId.identifier.numeric +
  189. UA_ENCODINGOFFSET_BINARY);
  190. msgHeader.messageHeader.messageSize =
  191. UA_SecureConversationMessageHeader_calcSizeBinary(&msgHeader) +
  192. UA_SymmetricAlgorithmSecurityHeader_calcSizeBinary(&symHeader) +
  193. UA_SequenceHeader_calcSizeBinary(&seqHeader) +
  194. UA_NodeId_calcSizeBinary(&requestId) +
  195. UA_calcSizeBinary(request, requestType);
  196. UA_ByteString message;
  197. UA_StatusCode retval = UA_ByteString_newMembers(&message, msgHeader.messageHeader.messageSize);
  198. if(retval != UA_STATUSCODE_GOOD) {
  199. // todo
  200. }
  201. size_t offset = 0;
  202. retval |= UA_SecureConversationMessageHeader_encodeBinary(&msgHeader, &message, &offset);
  203. retval |= UA_SymmetricAlgorithmSecurityHeader_encodeBinary(&symHeader, &message, &offset);
  204. retval |= UA_SequenceHeader_encodeBinary(&seqHeader, &message, &offset);
  205. retval |= UA_NodeId_encodeBinary(&requestId, &message, &offset);
  206. retval |= UA_encodeBinary(request, requestType, &message, &offset);
  207. UA_ByteStringArray buf = {.stringsSize = 1, .strings = &message};
  208. retval = client->networkLayer.send(client->networkLayer.nlHandle, buf);
  209. UA_ByteString_deleteMembers(&message);
  210. //TODO: rework to get return value
  211. if(sendOnly)
  212. return;
  213. UA_ResponseHeader *respHeader = (UA_ResponseHeader*)response;
  214. if(retval != UA_STATUSCODE_GOOD) {
  215. respHeader->serviceResult = retval;
  216. return;
  217. }
  218. /* Response */
  219. UA_ByteString reply;
  220. UA_ByteString_newMembers(&reply, client->connection.localConf.recvBufferSize);
  221. retval = client->networkLayer.awaitResponse(client->networkLayer.nlHandle, &reply, 1000);
  222. if(retval != UA_STATUSCODE_GOOD) {
  223. UA_ByteString_deleteMembers(&reply);
  224. respHeader->serviceResult = retval;
  225. return;
  226. }
  227. offset = 0;
  228. retval |= UA_SecureConversationMessageHeader_decodeBinary(&reply, &offset, &msgHeader);
  229. retval |= UA_SymmetricAlgorithmSecurityHeader_decodeBinary(&reply, &offset, &symHeader);
  230. retval |= UA_SequenceHeader_decodeBinary(&reply, &offset, &seqHeader);
  231. UA_NodeId responseId;
  232. retval |= UA_NodeId_decodeBinary(&reply, &offset, &responseId);
  233. if(!UA_NodeId_equal(&responseId, &UA_NODEID_STATIC(0, responseType->typeId.identifier.numeric +
  234. UA_ENCODINGOFFSET_BINARY))) {
  235. UA_ByteString_deleteMembers(&reply);
  236. UA_SymmetricAlgorithmSecurityHeader_deleteMembers(&symHeader);
  237. respHeader->serviceResult = retval;
  238. return;
  239. }
  240. retval = UA_decodeBinary(&reply, &offset, response, responseType);
  241. UA_ByteString_deleteMembers(&reply);
  242. if(retval != UA_STATUSCODE_GOOD)
  243. respHeader->serviceResult = retval;
  244. }
  245. static void synchronousRequest(const void *request, const UA_DataType *requestType,
  246. void *response, const UA_DataType *responseType, UA_Client *client){
  247. sendReceiveRequest(request, requestType, response, responseType, client, UA_FALSE);
  248. }
  249. static void sendOnlyRequest(const void *request, const UA_DataType *requestType, UA_Client *client){
  250. sendReceiveRequest(request, requestType, UA_NULL, UA_NULL, client, UA_TRUE);
  251. }
  252. static UA_StatusCode ActivateSession(UA_Client *client) {
  253. UA_ActivateSessionRequest request;
  254. UA_ActivateSessionRequest_init(&request);
  255. request.requestHeader.requestHandle = 2; //TODO: is it a magic number?
  256. request.requestHeader.authenticationToken = client->authenticationToken;
  257. request.requestHeader.timestamp = UA_DateTime_now();
  258. request.requestHeader.timeoutHint = 10000;
  259. UA_ActivateSessionResponse response;
  260. synchronousRequest(&request, &UA_TYPES[UA_TYPES_ACTIVATESESSIONREQUEST],
  261. &response, &UA_TYPES[UA_TYPES_ACTIVATESESSIONRESPONSE],
  262. client);
  263. UA_ActivateSessionRequest_deleteMembers(&request);
  264. UA_ActivateSessionResponse_deleteMembers(&response);
  265. return response.responseHeader.serviceResult; // not deleted
  266. }
  267. static UA_StatusCode SessionHandshake(UA_Client *client) {
  268. UA_CreateSessionRequest request;
  269. UA_CreateSessionRequest_init(&request);
  270. // todo: is this needed for all requests?
  271. UA_NodeId_copy(&client->authenticationToken, &request.requestHeader.authenticationToken);
  272. request.requestHeader.timestamp = UA_DateTime_now();
  273. request.requestHeader.timeoutHint = 10000;
  274. UA_ByteString_copy(&client->clientNonce, &request.clientNonce);
  275. request.requestedSessionTimeout = 1200000;
  276. request.maxResponseMessageSize = UA_INT32_MAX;
  277. /* UA_String_copy(endpointUrl, &rq.endpointUrl); */
  278. /* UA_String_copycstring("mysession", &rq.sessionName); */
  279. /* UA_String_copycstring("abcd", &rq.clientCertificate); */
  280. UA_CreateSessionResponse response;
  281. synchronousRequest(&request, &UA_TYPES[UA_TYPES_CREATESESSIONREQUEST],
  282. &response, &UA_TYPES[UA_TYPES_CREATESESSIONRESPONSE],
  283. client);
  284. UA_NodeId_copy(&response.authenticationToken, &client->authenticationToken);
  285. UA_CreateSessionRequest_deleteMembers(&request);
  286. UA_CreateSessionResponse_deleteMembers(&response);
  287. return response.responseHeader.serviceResult; // not deleted
  288. }
  289. static UA_StatusCode CloseSession(UA_Client *client) {
  290. UA_CloseSessionRequest request;
  291. UA_CloseSessionRequest_init(&request);
  292. request.requestHeader.timestamp = UA_DateTime_now();
  293. request.requestHeader.timeoutHint = 10000;
  294. request.deleteSubscriptions = UA_TRUE;
  295. UA_NodeId_copy(&client->authenticationToken, &request.requestHeader.authenticationToken);
  296. UA_CreateSessionResponse response;
  297. synchronousRequest(&request, &UA_TYPES[UA_TYPES_CLOSESESSIONREQUEST],
  298. &response, &UA_TYPES[UA_TYPES_CLOSESESSIONRESPONSE],
  299. client);
  300. UA_CloseSessionRequest_deleteMembers(&request);
  301. UA_CloseSessionResponse_deleteMembers(&response);
  302. return response.responseHeader.serviceResult; // not deleted
  303. }
  304. static UA_StatusCode CloseSecureChannel(UA_Client *client) {
  305. UA_CloseSecureChannelRequest request;
  306. UA_CloseSecureChannelRequest_init(&request);
  307. request.requestHeader.requestHandle = 1; //TODO: magic number?
  308. request.requestHeader.timestamp = UA_DateTime_now();
  309. request.requestHeader.timeoutHint = 10000;
  310. request.requestHeader.authenticationToken = client->authenticationToken;
  311. sendOnlyRequest(&request, &UA_TYPES[UA_TYPES_CLOSESECURECHANNELREQUEST], client);
  312. return UA_STATUSCODE_GOOD;
  313. }
  314. /*************************/
  315. /* User-Facing Functions */
  316. /*************************/
  317. UA_StatusCode UA_Client_connect(UA_Client *client, UA_ConnectionConfig conf,
  318. UA_ClientNetworkLayer networkLayer, char *endpointUrl)
  319. {
  320. UA_StatusCode retval = UA_String_copycstring(endpointUrl, &client->endpointUrl);
  321. if(retval != UA_STATUSCODE_GOOD)
  322. return UA_STATUSCODE_BADOUTOFMEMORY;
  323. client->networkLayer = networkLayer;
  324. client->connection.localConf = conf;
  325. retval = networkLayer.connect(client->endpointUrl, client->networkLayer.nlHandle);
  326. if(retval != UA_STATUSCODE_GOOD)
  327. return retval;
  328. retval = HelAckHandshake(client);
  329. if(retval == UA_STATUSCODE_GOOD)
  330. retval = SecureChannelHandshake(client);
  331. if(retval == UA_STATUSCODE_GOOD)
  332. retval = SessionHandshake(client);
  333. if(retval == UA_STATUSCODE_GOOD)
  334. retval = ActivateSession(client);
  335. return retval;
  336. }
  337. UA_StatusCode UA_EXPORT UA_Client_disconnect(UA_Client *client) {
  338. UA_StatusCode retval;
  339. retval = CloseSession(client);
  340. if(retval == UA_STATUSCODE_GOOD)
  341. retval = CloseSecureChannel(client);
  342. return retval;
  343. }
  344. UA_ReadResponse UA_Client_read(UA_Client *client, UA_ReadRequest *request) {
  345. UA_ReadResponse response;
  346. //todo: probably move to synchronousRequest
  347. UA_NodeId_copy(&client->authenticationToken, &request->requestHeader.authenticationToken);
  348. synchronousRequest(request, &UA_TYPES[UA_TYPES_READREQUEST], &response,
  349. &UA_TYPES[UA_TYPES_READRESPONSE], client);
  350. return response;
  351. }
  352. UA_WriteResponse UA_Client_write(UA_Client *client, const UA_WriteRequest *request) {
  353. UA_WriteResponse response;
  354. synchronousRequest(request, &UA_TYPES[UA_TYPES_WRITEREQUEST], &response,
  355. &UA_TYPES[UA_TYPES_WRITERESPONSE], client);
  356. return response;
  357. }
  358. UA_BrowseResponse UA_Client_browse(UA_Client *client, const UA_BrowseRequest *request) {
  359. UA_BrowseResponse response;
  360. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  361. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  362. return response;
  363. }
  364. UA_TranslateBrowsePathsToNodeIdsResponse
  365. UA_Client_translateBrowsePathsToNodeIds(UA_Client *client,
  366. const UA_TranslateBrowsePathsToNodeIdsRequest *request) {
  367. UA_TranslateBrowsePathsToNodeIdsResponse response;
  368. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  369. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  370. return response;
  371. }
  372. UA_AddNodesResponse UA_Client_addNodes(UA_Client *client, const UA_AddNodesRequest *request) {
  373. UA_AddNodesResponse response;
  374. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  375. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  376. return response;
  377. }
  378. UA_AddReferencesResponse UA_Client_addReferences(UA_Client *client, const UA_AddReferencesRequest *request) {
  379. UA_AddReferencesResponse response;
  380. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  381. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  382. return response;
  383. }
  384. UA_DeleteNodesResponse UA_Client_deleteNodes(UA_Client *client, const UA_DeleteNodesRequest *request) {
  385. UA_DeleteNodesResponse response;
  386. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  387. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  388. return response;
  389. }
  390. UA_DeleteReferencesResponse UA_Client_deleteReferences(UA_Client *client,
  391. const UA_DeleteReferencesRequest *request) {
  392. UA_DeleteReferencesResponse response;
  393. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  394. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  395. return response;
  396. }