ua_client.h 1.1 KB

123456789101112131415161718192021222324252627
  1. #include "ua_util.h"
  2. #include "ua_types.h"
  3. #include "ua_connection.h"
  4. #include "ua_transport_generated.h"
  5. #include "ua_namespace_0.h"
  6. /**
  7. * The client networklayer can handle only a single connection. The networklayer
  8. * is only concerned with getting messages to the client and receiving them.
  9. */
  10. typedef struct {
  11. UA_StatusCode (*connect)(const UA_String endpointUrl, void **resultHandle);
  12. void (*disconnect)(void *handle);
  13. UA_StatusCode (*send)(void *handle, UA_ByteStringArray gather_buf);
  14. // the response buffer exists on the heap. the size shall correspond the the connection settings
  15. UA_StatusCode (*awaitResponse)(void *handle, UA_ByteString *response, UA_UInt32 timeout);
  16. } UA_ClientNetworkLayer;
  17. struct UA_Client;
  18. typedef struct UA_Client UA_Client;
  19. UA_Client UA_EXPORT * UA_Client_new(void);
  20. UA_Client UA_EXPORT * setUserDataPtr(UA_Client *c, void *userData);
  21. UA_StatusCode UA_EXPORT UA_Client_connect(UA_Client *c, UA_ConnectionConfig conf,
  22. UA_ClientNetworkLayer networkLayer, char *endpointUrl);
  23. UA_StatusCode UA_EXPORT UA_Client_disconnect(UA_Client *c);