| 1049 | } |
| 1050 | |
| 1051 | std::unique_ptr<IConnection> createDirectBusConnection(const std::string& address) |
| 1052 | { |
| 1053 | auto interface = std::make_unique<internal::SdBus>(); |
| 1054 | return std::make_unique<internal::Connection>(std::move(interface), Connection::private_bus, address); |
| 1055 | } |
| 1056 | |
| 1057 | std::unique_ptr<IConnection> createDirectBusConnection(int fd) |
| 1058 | { |
no outgoing calls