ua_transport_connection_manager.h 512 B

123456789101112131415
  1. #ifndef UA_CONNECTION_MANAGER_H_
  2. #define UA_CONNECTION_MANAGER_H_
  3. #include "stdio.h"
  4. #include "ua_transport_connection.h"
  5. UA_Int32 UA_TL_ConnectionManager_init(UA_UInt32 maxConnectionCount);
  6. UA_Int32 UA_TL_ConnectionManager_addConnection(UA_TL_Connection *connection);
  7. UA_Int32 UA_TL_ConnectionManager_removeConnection(UA_TL_Connection *connection);
  8. //getter
  9. UA_Int32 UA_TL_ConnectionManager_getConnectionByHandle(UA_UInt32 connectionId, UA_TL_Connection **connection);
  10. #endif /* UA_CONNECTION_MANAGER_H_ */