| 1061 | } |
| 1062 | |
| 1063 | std::unique_ptr<IConnection> createServerBus(int fd) |
| 1064 | { |
| 1065 | auto interface = std::make_unique<internal::SdBus>(); |
| 1066 | return std::make_unique<internal::Connection>(std::move(interface), Connection::server_bus, fd); |
| 1067 | } |
| 1068 | |
| 1069 | std::unique_ptr<IConnection> createBusConnection(sd_bus *bus) |
| 1070 | { |
no outgoing calls