ua_client.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  4. *
  5. * Copyright 2015-2017 (c) Fraunhofer IOSB (Author: Julius Pfrommer)
  6. * Copyright 2015-2016 (c) Sten Grüner
  7. * Copyright 2015-2016 (c) Chris Iatrou
  8. * Copyright 2015-2017 (c) Florian Palm
  9. * Copyright 2015 (c) Holger Jeromin
  10. * Copyright 2015 (c) Oleksiy Vasylyev
  11. * Copyright 2017 (c) Stefan Profanter, fortiss GmbH
  12. * Copyright 2017 (c) Mark Giraud, Fraunhofer IOSB
  13. * Copyright 2018 (c) Thomas Stalder, Blue Time Concept SA
  14. * Copyright 2018 (c) Kalycito Infotech Private Limited
  15. */
  16. #ifndef UA_CLIENT_H_
  17. #define UA_CLIENT_H_
  18. #include "ua_types.h"
  19. #include "ua_types_generated.h"
  20. #include "ua_types_generated_handling.h"
  21. #include "ua_plugin_securitypolicy.h"
  22. #include "ua_plugin_network.h"
  23. #include "ua_plugin_log.h"
  24. #include "ua_client_config.h"
  25. #include "ua_nodeids.h"
  26. _UA_BEGIN_DECLS
  27. /**
  28. * .. _client:
  29. *
  30. * Client
  31. * ======
  32. *
  33. * The client implementation allows remote access to all OPC UA services. For
  34. * convenience, some functionality has been wrapped in :ref:`high-level
  35. * abstractions <client-highlevel>`.
  36. *
  37. * **However**: At this time, the client does not yet contain its own thread or
  38. * event-driven main-loop. So the client will not perform any actions
  39. * automatically in the background. This is especially relevant for
  40. * subscriptions. The user will have to periodically call
  41. * `UA_Client_Subscriptions_manuallySendPublishRequest`. See also :ref:`here
  42. * <client-subscriptions>`.
  43. *
  44. *
  45. * .. include:: client_config.rst
  46. *
  47. * Client Lifecycle
  48. * ---------------- */
  49. /* Create a new client */
  50. UA_Client UA_EXPORT *
  51. UA_Client_new(UA_ClientConfig config);
  52. /* Creates a new secure client with the required configuration, certificate
  53. * privatekey, trustlist and revocation list.
  54. *
  55. * @param config new secure configuration for client
  56. * @param certificate client certificate
  57. * @param privateKey client's private key
  58. * @param remoteCertificate server certificate form the endpoints
  59. * @param trustList list of trustable certificate
  60. * @param trustListSize count of trustList
  61. * @param revocationList list of revoked digital certificate
  62. * @param revocationListSize count of revocationList
  63. * @param securityPolicyFunction securityPolicy function
  64. * @return Returns a client configuration for secure channel */
  65. UA_Client UA_EXPORT *
  66. UA_Client_secure_new(UA_ClientConfig config, UA_ByteString certificate,
  67. UA_ByteString privateKey, const UA_ByteString *remoteCertificate,
  68. const UA_ByteString *trustList, size_t trustListSize,
  69. const UA_ByteString *revocationList, size_t revocationListSize,
  70. UA_SecurityPolicy_Func securityPolicyFunction);
  71. /* Get the client connection status */
  72. UA_ClientState UA_EXPORT
  73. UA_Client_getState(UA_Client *client);
  74. /* Get the client configuration */
  75. UA_EXPORT UA_ClientConfig *
  76. UA_Client_getConfig(UA_Client *client);
  77. /* Get the client context */
  78. static UA_INLINE void *
  79. UA_Client_getContext(UA_Client *client) {
  80. UA_ClientConfig *config = UA_Client_getConfig(client);
  81. if(!config)
  82. return NULL;
  83. return config->clientContext;
  84. }
  85. /* Reset a client */
  86. void UA_EXPORT
  87. UA_Client_reset(UA_Client *client);
  88. /* Delete a client */
  89. void UA_EXPORT
  90. UA_Client_delete(UA_Client *client);
  91. /**
  92. * Connect to a Server
  93. * ------------------- */
  94. typedef void (*UA_ClientAsyncServiceCallback)(UA_Client *client, void *userdata,
  95. UA_UInt32 requestId, void *response);
  96. /* Connect to the server
  97. *
  98. * @param client to use
  99. * @param endpointURL to connect (for example "opc.tcp://localhost:4840")
  100. * @return Indicates whether the operation succeeded or returns an error code */
  101. UA_StatusCode UA_EXPORT
  102. UA_Client_connect(UA_Client *client, const char *endpointUrl);
  103. UA_StatusCode UA_EXPORT
  104. UA_Client_connect_async (UA_Client *client, const char *endpointUrl,
  105. UA_ClientAsyncServiceCallback callback,
  106. void *connected);
  107. /* Connect to the server without creating a session
  108. *
  109. * @param client to use
  110. * @param endpointURL to connect (for example "opc.tcp://localhost:4840")
  111. * @return Indicates whether the operation succeeded or returns an error code */
  112. UA_StatusCode UA_EXPORT
  113. UA_Client_connect_noSession(UA_Client *client, const char *endpointUrl);
  114. /* Connect to the selected server with the given username and password
  115. *
  116. * @param client to use
  117. * @param endpointURL to connect (for example "opc.tcp://localhost:4840")
  118. * @param username
  119. * @param password
  120. * @return Indicates whether the operation succeeded or returns an error code */
  121. UA_StatusCode UA_EXPORT
  122. UA_Client_connect_username(UA_Client *client, const char *endpointUrl,
  123. const char *username, const char *password);
  124. /* Disconnect and close a connection to the selected server */
  125. UA_StatusCode UA_EXPORT
  126. UA_Client_disconnect(UA_Client *client);
  127. UA_StatusCode UA_EXPORT
  128. UA_Client_disconnect_async(UA_Client *client, UA_UInt32 *requestId);
  129. /* Close a connection to the selected server */
  130. UA_DEPRECATED static UA_INLINE UA_StatusCode
  131. UA_Client_close(UA_Client *client) {
  132. return UA_Client_disconnect(client);
  133. }
  134. /**
  135. * Discovery
  136. * --------- */
  137. /* Gets a list of endpoints of a server
  138. *
  139. * @param client to use. Must be connected to the same endpoint given in
  140. * serverUrl or otherwise in disconnected state.
  141. * @param serverUrl url to connect (for example "opc.tcp://localhost:4840")
  142. * @param endpointDescriptionsSize size of the array of endpoint descriptions
  143. * @param endpointDescriptions array of endpoint descriptions that is allocated
  144. * by the function (you need to free manually)
  145. * @return Indicates whether the operation succeeded or returns an error code */
  146. UA_StatusCode UA_EXPORT
  147. UA_Client_getEndpoints(UA_Client *client, const char *serverUrl,
  148. size_t* endpointDescriptionsSize,
  149. UA_EndpointDescription** endpointDescriptions);
  150. /* Gets a list of all registered servers at the given server.
  151. *
  152. * You can pass an optional filter for serverUris. If the given server is not registered,
  153. * an empty array will be returned. If the server is registered, only that application
  154. * description will be returned.
  155. *
  156. * Additionally you can optionally indicate which locale you want for the server name
  157. * in the returned application description. The array indicates the order of preference.
  158. * A server may have localized names.
  159. *
  160. * @param client to use. Must be connected to the same endpoint given in
  161. * serverUrl or otherwise in disconnected state.
  162. * @param serverUrl url to connect (for example "opc.tcp://localhost:4840")
  163. * @param serverUrisSize Optional filter for specific server uris
  164. * @param serverUris Optional filter for specific server uris
  165. * @param localeIdsSize Optional indication which locale you prefer
  166. * @param localeIds Optional indication which locale you prefer
  167. * @param registeredServersSize size of returned array, i.e., number of found/registered servers
  168. * @param registeredServers array containing found/registered servers
  169. * @return Indicates whether the operation succeeded or returns an error code */
  170. UA_StatusCode UA_EXPORT
  171. UA_Client_findServers(UA_Client *client, const char *serverUrl,
  172. size_t serverUrisSize, UA_String *serverUris,
  173. size_t localeIdsSize, UA_String *localeIds,
  174. size_t *registeredServersSize,
  175. UA_ApplicationDescription **registeredServers);
  176. #ifdef UA_ENABLE_DISCOVERY
  177. /* Get a list of all known server in the network. Only supported by LDS servers.
  178. *
  179. * @param client to use. Must be connected to the same endpoint given in
  180. * serverUrl or otherwise in disconnected state.
  181. * @param serverUrl url to connect (for example "opc.tcp://localhost:4840")
  182. * @param startingRecordId optional. Only return the records with an ID higher
  183. * or equal the given. Can be used for pagination to only get a subset of
  184. * the full list
  185. * @param maxRecordsToReturn optional. Only return this number of records
  186. * @param serverCapabilityFilterSize optional. Filter the returned list to only
  187. * get servers with given capabilities, e.g. "LDS"
  188. * @param serverCapabilityFilter optional. Filter the returned list to only get
  189. * servers with given capabilities, e.g. "LDS"
  190. * @param serverOnNetworkSize size of returned array, i.e., number of
  191. * known/registered servers
  192. * @param serverOnNetwork array containing known/registered servers
  193. * @return Indicates whether the operation succeeded or returns an error code */
  194. UA_StatusCode UA_EXPORT
  195. UA_Client_findServersOnNetwork(UA_Client *client, const char *serverUrl,
  196. UA_UInt32 startingRecordId, UA_UInt32 maxRecordsToReturn,
  197. size_t serverCapabilityFilterSize, UA_String *serverCapabilityFilter,
  198. size_t *serverOnNetworkSize, UA_ServerOnNetwork **serverOnNetwork);
  199. #endif
  200. /**
  201. * .. _client-services:
  202. *
  203. * Services
  204. * --------
  205. *
  206. * The raw OPC UA services are exposed to the client. But most of them time, it
  207. * is better to use the convenience functions from ``ua_client_highlevel.h``
  208. * that wrap the raw services. */
  209. /* Don't use this function. Use the type versions below instead. */
  210. void UA_EXPORT
  211. __UA_Client_Service(UA_Client *client, const void *request,
  212. const UA_DataType *requestType, void *response,
  213. const UA_DataType *responseType);
  214. /*
  215. * Attribute Service Set
  216. * ^^^^^^^^^^^^^^^^^^^^^ */
  217. static UA_INLINE UA_ReadResponse
  218. UA_Client_Service_read(UA_Client *client, const UA_ReadRequest request) {
  219. UA_ReadResponse response;
  220. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_READREQUEST],
  221. &response, &UA_TYPES[UA_TYPES_READRESPONSE]);
  222. return response;
  223. }
  224. static UA_INLINE UA_WriteResponse
  225. UA_Client_Service_write(UA_Client *client, const UA_WriteRequest request) {
  226. UA_WriteResponse response;
  227. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_WRITEREQUEST],
  228. &response, &UA_TYPES[UA_TYPES_WRITERESPONSE]);
  229. return response;
  230. }
  231. /**
  232. * Historical Access Service Set
  233. * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
  234. static UA_INLINE UA_HistoryReadResponse
  235. UA_Client_Service_history_read(UA_Client *client, const UA_HistoryReadRequest request) {
  236. UA_HistoryReadResponse response;
  237. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_HISTORYREADREQUEST],
  238. &response, &UA_TYPES[UA_TYPES_HISTORYREADRESPONSE]);
  239. return response;
  240. }
  241. /**
  242. * Method Service Set
  243. * ^^^^^^^^^^^^^^^^^^ */
  244. #ifdef UA_ENABLE_METHODCALLS
  245. static UA_INLINE UA_CallResponse
  246. UA_Client_Service_call(UA_Client *client, const UA_CallRequest request) {
  247. UA_CallResponse response;
  248. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_CALLREQUEST],
  249. &response, &UA_TYPES[UA_TYPES_CALLRESPONSE]);
  250. return response;
  251. }
  252. #endif
  253. /*
  254. * NodeManagement Service Set
  255. * ^^^^^^^^^^^^^^^^^^^^^^^^^^ */
  256. static UA_INLINE UA_AddNodesResponse
  257. UA_Client_Service_addNodes(UA_Client *client, const UA_AddNodesRequest request) {
  258. UA_AddNodesResponse response;
  259. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_ADDNODESREQUEST],
  260. &response, &UA_TYPES[UA_TYPES_ADDNODESRESPONSE]);
  261. return response;
  262. }
  263. static UA_INLINE UA_AddReferencesResponse
  264. UA_Client_Service_addReferences(UA_Client *client,
  265. const UA_AddReferencesRequest request) {
  266. UA_AddReferencesResponse response;
  267. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_ADDREFERENCESREQUEST],
  268. &response, &UA_TYPES[UA_TYPES_ADDREFERENCESRESPONSE]);
  269. return response;
  270. }
  271. static UA_INLINE UA_DeleteNodesResponse
  272. UA_Client_Service_deleteNodes(UA_Client *client,
  273. const UA_DeleteNodesRequest request) {
  274. UA_DeleteNodesResponse response;
  275. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_DELETENODESREQUEST],
  276. &response, &UA_TYPES[UA_TYPES_DELETENODESRESPONSE]);
  277. return response;
  278. }
  279. static UA_INLINE UA_DeleteReferencesResponse
  280. UA_Client_Service_deleteReferences(UA_Client *client,
  281. const UA_DeleteReferencesRequest request) {
  282. UA_DeleteReferencesResponse response;
  283. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_DELETEREFERENCESREQUEST],
  284. &response, &UA_TYPES[UA_TYPES_DELETEREFERENCESRESPONSE]);
  285. return response;
  286. }
  287. /*
  288. * View Service Set
  289. * ^^^^^^^^^^^^^^^^ */
  290. static UA_INLINE UA_BrowseResponse
  291. UA_Client_Service_browse(UA_Client *client, const UA_BrowseRequest request) {
  292. UA_BrowseResponse response;
  293. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_BROWSEREQUEST],
  294. &response, &UA_TYPES[UA_TYPES_BROWSERESPONSE]);
  295. return response;
  296. }
  297. static UA_INLINE UA_BrowseNextResponse
  298. UA_Client_Service_browseNext(UA_Client *client,
  299. const UA_BrowseNextRequest request) {
  300. UA_BrowseNextResponse response;
  301. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_BROWSENEXTREQUEST],
  302. &response, &UA_TYPES[UA_TYPES_BROWSENEXTRESPONSE]);
  303. return response;
  304. }
  305. static UA_INLINE UA_TranslateBrowsePathsToNodeIdsResponse
  306. UA_Client_Service_translateBrowsePathsToNodeIds(UA_Client *client,
  307. const UA_TranslateBrowsePathsToNodeIdsRequest request) {
  308. UA_TranslateBrowsePathsToNodeIdsResponse response;
  309. __UA_Client_Service(client, &request,
  310. &UA_TYPES[UA_TYPES_TRANSLATEBROWSEPATHSTONODEIDSREQUEST],
  311. &response,
  312. &UA_TYPES[UA_TYPES_TRANSLATEBROWSEPATHSTONODEIDSRESPONSE]);
  313. return response;
  314. }
  315. static UA_INLINE UA_RegisterNodesResponse
  316. UA_Client_Service_registerNodes(UA_Client *client,
  317. const UA_RegisterNodesRequest request) {
  318. UA_RegisterNodesResponse response;
  319. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_REGISTERNODESREQUEST],
  320. &response, &UA_TYPES[UA_TYPES_REGISTERNODESRESPONSE]);
  321. return response;
  322. }
  323. static UA_INLINE UA_UnregisterNodesResponse
  324. UA_Client_Service_unregisterNodes(UA_Client *client,
  325. const UA_UnregisterNodesRequest request) {
  326. UA_UnregisterNodesResponse response;
  327. __UA_Client_Service(client, &request,
  328. &UA_TYPES[UA_TYPES_UNREGISTERNODESREQUEST],
  329. &response, &UA_TYPES[UA_TYPES_UNREGISTERNODESRESPONSE]);
  330. return response;
  331. }
  332. /*
  333. * Query Service Set
  334. * ^^^^^^^^^^^^^^^^^ */
  335. #ifdef UA_ENABLE_QUERY
  336. static UA_INLINE UA_QueryFirstResponse
  337. UA_Client_Service_queryFirst(UA_Client *client,
  338. const UA_QueryFirstRequest request) {
  339. UA_QueryFirstResponse response;
  340. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_QUERYFIRSTREQUEST],
  341. &response, &UA_TYPES[UA_TYPES_QUERYFIRSTRESPONSE]);
  342. return response;
  343. }
  344. static UA_INLINE UA_QueryNextResponse
  345. UA_Client_Service_queryNext(UA_Client *client,
  346. const UA_QueryNextRequest request) {
  347. UA_QueryNextResponse response;
  348. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_QUERYFIRSTREQUEST],
  349. &response, &UA_TYPES[UA_TYPES_QUERYFIRSTRESPONSE]);
  350. return response;
  351. }
  352. #endif
  353. /**
  354. * .. _client-async-services:
  355. *
  356. * Asynchronous Services
  357. * ---------------------
  358. * All OPC UA services are asynchronous in nature. So several service calls can
  359. * be made without waiting for a response first. Responess may come in a
  360. * different ordering. */
  361. /* Use the type versions of this method. See below. However, the general
  362. * mechanism of async service calls is explained here.
  363. *
  364. * We say that an async service call has been dispatched once this method
  365. * returns UA_STATUSCODE_GOOD. If there is an error after an async service has
  366. * been dispatched, the callback is called with an "empty" response where the
  367. * statusCode has been set accordingly. This is also done if the client is
  368. * shutting down and the list of dispatched async services is emptied.
  369. *
  370. * The statusCode received when the client is shutting down is
  371. * UA_STATUSCODE_BADSHUTDOWN.
  372. *
  373. * The statusCode received when the client don't receive response
  374. * after specified config->timeout (in ms) is
  375. * UA_STATUSCODE_BADTIMEOUT.
  376. *
  377. * Instead, you can use __UA_Client_AsyncServiceEx to specify
  378. * a custom timeout
  379. *
  380. * The userdata and requestId arguments can be NULL. */
  381. UA_StatusCode UA_EXPORT
  382. __UA_Client_AsyncService(UA_Client *client, const void *request,
  383. const UA_DataType *requestType,
  384. UA_ClientAsyncServiceCallback callback,
  385. const UA_DataType *responseType,
  386. void *userdata, UA_UInt32 *requestId);
  387. UA_StatusCode UA_EXPORT
  388. UA_Client_sendAsyncRequest(UA_Client *client, const void *request,
  389. const UA_DataType *requestType, UA_ClientAsyncServiceCallback callback,
  390. const UA_DataType *responseType, void *userdata, UA_UInt32 *requestId);
  391. /* Listen on the network and process arriving asynchronous responses in the
  392. * background. Internal housekeeping, renewal of SecureChannels and subscription
  393. * management is done as well. */
  394. UA_StatusCode UA_EXPORT
  395. UA_Client_run_iterate(UA_Client *client, UA_UInt16 timeout);
  396. UA_DEPRECATED static UA_INLINE UA_StatusCode
  397. UA_Client_runAsync(UA_Client *client, UA_UInt16 timeout) {
  398. return UA_Client_run_iterate(client, timeout);
  399. }
  400. UA_DEPRECATED static UA_INLINE UA_StatusCode
  401. UA_Client_manuallyRenewSecureChannel(UA_Client *client) {
  402. return UA_Client_run_iterate(client, 0);
  403. }
  404. /* Use the type versions of this method. See below. However, the general
  405. * mechanism of async service calls is explained here.
  406. *
  407. * We say that an async service call has been dispatched once this method
  408. * returns UA_STATUSCODE_GOOD. If there is an error after an async service has
  409. * been dispatched, the callback is called with an "empty" response where the
  410. * statusCode has been set accordingly. This is also done if the client is
  411. * shutting down and the list of dispatched async services is emptied.
  412. *
  413. * The statusCode received when the client is shutting down is
  414. * UA_STATUSCODE_BADSHUTDOWN.
  415. *
  416. * The statusCode received when the client don't receive response
  417. * after specified timeout (in ms) is
  418. * UA_STATUSCODE_BADTIMEOUT.
  419. *
  420. * The timeout can be disabled by setting timeout to 0
  421. *
  422. * The userdata and requestId arguments can be NULL. */
  423. UA_StatusCode UA_EXPORT
  424. __UA_Client_AsyncServiceEx(UA_Client *client, const void *request,
  425. const UA_DataType *requestType,
  426. UA_ClientAsyncServiceCallback callback,
  427. const UA_DataType *responseType,
  428. void *userdata, UA_UInt32 *requestId,
  429. UA_UInt32 timeout);
  430. /**
  431. * Timed Callbacks
  432. * ---------------
  433. * Repeated callbacks can be attached to a client and will be executed in the
  434. * defined interval. */
  435. typedef void (*UA_ClientCallback)(UA_Client *client, void *data);
  436. /* Add a callback for execution at a specified time. If the indicated time lies
  437. * in the past, then the callback is executed at the next iteration of the
  438. * server's main loop.
  439. *
  440. * @param client The client object.
  441. * @param callback The callback that shall be added.
  442. * @param data Data that is forwarded to the callback.
  443. * @param date The timestamp for the execution time.
  444. * @param callbackId Set to the identifier of the repeated callback . This can
  445. * be used to cancel the callback later on. If the pointer is null, the
  446. * identifier is not set.
  447. * @return Upon success, UA_STATUSCODE_GOOD is returned. An error code
  448. * otherwise. */
  449. UA_StatusCode UA_EXPORT
  450. UA_Client_addTimedCallback(UA_Client *client, UA_ClientCallback callback,
  451. void *data, UA_DateTime date, UA_UInt64 *callbackId);
  452. /* Add a callback for cyclic repetition to the client.
  453. *
  454. * @param client The client object.
  455. * @param callback The callback that shall be added.
  456. * @param data Data that is forwarded to the callback.
  457. * @param interval_ms The callback shall be repeatedly executed with the given
  458. * interval (in ms). The interval must be positive. The first execution
  459. * occurs at now() + interval at the latest.
  460. * @param callbackId Set to the identifier of the repeated callback . This can
  461. * be used to cancel the callback later on. If the pointer is null, the
  462. * identifier is not set.
  463. * @return Upon success, UA_STATUSCODE_GOOD is returned. An error code
  464. * otherwise. */
  465. UA_StatusCode UA_EXPORT
  466. UA_Client_addRepeatedCallback(UA_Client *client, UA_ClientCallback callback,
  467. void *data, UA_Double interval_ms,
  468. UA_UInt64 *callbackId);
  469. UA_StatusCode UA_EXPORT
  470. UA_Client_changeRepeatedCallbackInterval(UA_Client *client,
  471. UA_UInt64 callbackId,
  472. UA_Double interval_ms);
  473. void UA_EXPORT
  474. UA_Client_removeCallback(UA_Client *client, UA_UInt64 callbackId);
  475. #define UA_Client_removeRepeatedCallback(client, callbackId) \
  476. UA_Client_removeCallback(client, callbackId)
  477. /**
  478. * .. toctree::
  479. *
  480. * client_highlevel
  481. * client_subscriptions */
  482. _UA_END_DECLS
  483. #endif /* UA_CLIENT_H_ */