12345678910111213141516171819202122232425 |
- #ifndef NETWORKLAYERTCP_H_
- #define NETWORKLAYERTCP_H_
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "ua_server.h"
- #include "ua_client.h"
- UA_ServerNetworkLayer ServerNetworkLayerTCP_new(UA_ConnectionConfig conf, UA_UInt32 port);
- UA_ClientNetworkLayer ClientNetworkLayerTCP_new(UA_ConnectionConfig conf);
- #ifdef __cplusplus
- }
- #endif
- #endif
|