testing_networklayers.c 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #include <stdlib.h>
  2. #include "testing_networklayers.h"
  3. static UA_StatusCode
  4. dummyGetSendBuffer(UA_Connection *connection, size_t length, UA_ByteString *buf) {
  5. buf->data = malloc(length);
  6. buf->length = length;
  7. return UA_STATUSCODE_GOOD;
  8. }
  9. static void
  10. releaseSendBuffer(UA_Connection *connection, UA_ByteString *buf) {
  11. free(buf->data);
  12. }
  13. static UA_StatusCode
  14. dummySend(UA_Connection *connection, UA_ByteString *buf) {
  15. UA_ByteString_deleteMembers(buf);
  16. return UA_STATUSCODE_GOOD;
  17. }
  18. static void
  19. dummyClose(UA_Connection *connection) {
  20. return;
  21. }
  22. UA_Connection createDummyConnection(void) {
  23. UA_Connection c;
  24. c.state = UA_CONNECTION_ESTABLISHED;
  25. c.localConf = UA_ConnectionConfig_standard;
  26. c.remoteConf = UA_ConnectionConfig_standard;
  27. c.channel = NULL;
  28. c.sockfd = 0;
  29. c.handle = NULL;
  30. c.incompleteMessage = UA_BYTESTRING_NULL;
  31. c.getSendBuffer = dummyGetSendBuffer;
  32. c.send = dummySend;
  33. c.recv = NULL;
  34. c.releaseRecvBuffer = NULL;
  35. c.close = dummyClose;
  36. return c;
  37. }