| 1043 | } |
| 1044 | |
| 1045 | std::unique_ptr<IConnection> createRemoteSystemBusConnection(const std::string& host) |
| 1046 | { |
| 1047 | auto interface = std::make_unique<internal::SdBus>(); |
| 1048 | return std::make_unique<internal::Connection>(std::move(interface), Connection::remote_system_bus, host); |
| 1049 | } |
| 1050 | |
| 1051 | std::unique_ptr<IConnection> createDirectBusConnection(const std::string& address) |
| 1052 | { |
nothing calls this directly
no outgoing calls
no test coverage detected