| 1037 | } |
| 1038 | |
| 1039 | std::unique_ptr<IConnection> createSessionBusConnectionWithAddress(const std::string &address) |
| 1040 | { |
| 1041 | auto interface = std::make_unique<internal::SdBus>(); |
| 1042 | return std::make_unique<internal::Connection>(std::move(interface), Connection::custom_session_bus, address); |
| 1043 | } |
| 1044 | |
| 1045 | std::unique_ptr<IConnection> createRemoteSystemBusConnection(const std::string& host) |
| 1046 | { |
nothing calls this directly
no outgoing calls
no test coverage detected