opcua_secureLayer.h 558 B

1234567891011121314
  1. #ifndef OPCUA_SECURECHANNELLAYER_H_
  2. #define OPCUA_SECURECHANNELLAYER_H_
  3. #include "opcua.h"
  4. #include "UA_connection.h"
  5. #include "UA_stackInternalTypes.h"
  6. UA_Int32 SL_initConnectionObject(UA_SL_Channel *connection);
  7. UA_Int32 SL_openSecureChannel_responseMessage_get(UA_SL_Channel *connection,
  8. UA_SL_Response *response, UA_Int32* sizeInOut);
  9. UA_Int32 UA_SL_process(UA_SL_Channel* channel, UA_ByteString* msg, UA_Int32* pos);
  10. UA_Int32 UA_SL_Channel_new(UA_TL_connection *connection, UA_ByteString* msg, UA_Int32* pos);
  11. #endif /* OPCUA_SECURECHANNELLAYER_H_ */