Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-12 | bus: introduce concept of a default bus for each thread and make use of it ↵ | Lennart Poettering | |
everywhere We want to emphasize bus connections as per-thread communication primitives, hence introduce a concept of a per-thread default bus, and make use of it everywhere. | |||
2013-11-12 | bus: rename sd_bus_send_with_reply_and_block() to sd_bus_call() | Lennart Poettering | |
The call is one of the most important ones we expose, where we place major emphasis on. We should make sure to give it a short, memorable name. | |||
2013-11-09 | bus: fix build with old glibc | Zbigniew Jędrzejewski-Szmek | |
2013-11-08 | systemctl: restore ability to directly connect to PID1 from systemctl | Lennart Poettering | |
2013-11-08 | systemctl: port to libsystemd-bus | Marc-Antoine Perennou | |
2013-11-07 | bus: log message parsing errors everywhere with a generalized ↵ | Lennart Poettering | |
bus_log_parse_error() | |||
2013-11-07 | bus: fix bus_print_property with strv | Marc-Antoine Perennou | |
2013-11-07 | bus: make bus_print_all_properties work for non machinectl cases | Simon Peeters | |
add a destination parameter and skip properties we can't read | |||
2013-11-07 | consistently use "int" when retrieving "bool" from bus messages | Kay Sievers | |
2013-11-05 | bus: fix deserialization of polkit response | Lennart Poettering | |
2013-11-05 | bus: update bus_map_all_properties() | Kay Sievers | |
2013-11-05 | bus: make it easy to serialize C99 bools and uids/gids/pids via vtable ↵ | Lennart Poettering | |
properties | |||
2013-11-02 | bus: make bus_map_all_properties() call idempotent | Kay Sievers | |
2013-11-02 | bus: use internal helper to read org.freedesktop.DBus.Properties::GetAll ↵ | Kay Sievers | |
variables | |||
2013-10-30 | bus-util: avoid infinite loop | Tom Gundersen | |
2013-10-30 | localectl: port to libsystemd-bus | Kay Sievers | |
2013-10-30 | run: add support for executing commands remotely via SSH or in a container | Lennart Poettering | |
Also, unify the transport logic a bit, since we reuse the same scheme in many of our client tools. | |||
2013-10-30 | bus: move ssh support into public API of libsystem-bus | Lennart Poettering | |
2013-10-30 | machinectl: port to sd-bus | Tom Gundersen | |
2013-10-22 | bus: avoid 'bool' storage when retrieving 'b' from the message | Kay Sievers | |
Just use an unsigned int as a bool type to avoid issues in the public message reading API; sizeof(bool) == 1, but the code copies 4 bytes at the pointers destination. | |||
2013-10-18 | bus: automatically flush bus queue when we exit the event loop | Lennart Poettering | |
This way, we do not have to call it manually | |||
2013-10-18 | fsck: port to sd-bus | Tom Gundersen | |
2013-10-16 | bus: fix default exit on idle timeout | Lennart Poettering | |
2013-10-16 | timedated: use libsystemd-bus instead of libdbus for bus communication | Lennart Poettering | |
Among other things this also adds a few things necessary for the change: - Considerably more powerful error returning APIs in libsystemd-bus - Adapter for connecting an sd_bus to an sd_event - As I reworked the PolicyKit logic to the new library I also made it asynchronous, so that PolicyKit requests of one user cannot block out another user anymore. - We always use the macro names for common bus error. That way it is harder to mistype them since the compiler will notice |