12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef TESTING_NETWORKLAYERS_H_
- #define TESTING_NETWORKLAYERS_H_
- #include "ua_server_config.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- UA_Connection createDummyConnection(size_t sendBufferSize,
- UA_ByteString *verificationBuffer);
- extern UA_UInt32 UA_Client_recvSleepDuration;
- extern UA_StatusCode (*UA_Client_recv)(UA_Connection *connection, UA_ByteString *response,
- UA_UInt32 timeout);
- extern UA_StatusCode UA_Client_recvTesting_result;
- UA_StatusCode
- UA_Client_recvTesting(UA_Connection *connection, UA_ByteString *response,
- UA_UInt32 timeout);
- #ifdef __cplusplus
- }
- #endif
- #endif
|