opcua_transportLayer.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * opcua_transportLayer.h
  3. *
  4. * Created on: Dec 19, 2013
  5. * Author: opcua
  6. */
  7. #ifndef OPCUA_TRANSPORTLAYER_H_
  8. #define OPCUA_TRANSPORTLAYER_H_
  9. #include <stdio.h>
  10. #include "opcua_binaryEncDec.h"
  11. #include "opcua_advancedDatatypes.h"
  12. #include "opcua_connectionHelper.h"
  13. //TODO : Implement this interface
  14. #include "tcp_layer.h"
  15. //constants
  16. static const UInt32 TL_HEADER_LENGTH = 8;
  17. static const UInt32 TL_MESSAGE_TYPE_LEN = 3;
  18. static const UInt32 TL_RESERVED_LEN = 1;
  19. //variables which belong to layer
  20. enum TL_messageType_td
  21. {
  22. TL_HEL,
  23. TL_ACK,
  24. TL_ERR,
  25. TL_OPN,
  26. TL_CLO,
  27. TL_MSG
  28. }TL_messageType;
  29. struct TL_header
  30. {
  31. UInt32 MessageType;
  32. Byte Reserved;
  33. UInt32 MessageSize;
  34. };
  35. struct TL_message
  36. {
  37. struct TL_header Header;
  38. char *message;
  39. };
  40. struct TL_messageBodyHEL
  41. {
  42. UInt32 ProtocolVersion;
  43. UInt32 ReceiveBufferSize;
  44. UInt32 SendBufferSize;
  45. UInt32 MaxMessageSize;
  46. UInt32 MaxChunkCount;
  47. UA_String EndpointUrl;
  48. };
  49. struct TL_messageBodyACK
  50. {
  51. UInt32 ProtocolVersion;
  52. UInt32 ReceiveBufferSize;
  53. UInt32 SendBufferSize;
  54. UInt32 MaxMessageSize;
  55. UInt32 MaxChunkCount;
  56. UA_String EndpointUrl;
  57. };
  58. struct TL_messageBodyERR
  59. {
  60. UInt32 Error;
  61. UA_String Reason;
  62. };
  63. //functions
  64. void TL_receive(UA_connection *connection, AD_RawMessage *TL_message);
  65. //Test
  66. void TL_getMessageHeader_test();
  67. void TL_getMessageHeader(struct TL_header *messageHeader,AD_RawMessage *rawMessage);
  68. //Test
  69. void TL_processHELMessage_test();
  70. void TL_processHELMessage(UA_connection *connection, AD_RawMessage *rawMessage);
  71. #endif /* OPCUA_TRANSPORTLAYER_H_ */