Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-12-05 | execute.h: remove redefinition of Unit | Thomas Hindoe Paaboel Andersen | |
Unit is typedef'ed in both unit.h and execute.h. The typedef existed first in unit.h and was later added to execute.h in c17ec25e4d9bd6c8e8617416f813e25b2ebbafc5 It is no longer needed so let's just keep the one in unit.h to avoid redefining it. | |||
2013-12-05 | test-bus-gvariant: remove unused variable | Thomas Hindoe Paaboel Andersen | |
2013-12-05 | bus: start maintaining a list of difference between kdbus/dbus1 | Lennart Poettering | |
2013-12-05 | bus: add missing LE meta data enforcement for gvariant serializer | Lennart Poettering | |
2013-12-05 | busname: improve condition check | Lennart Poettering | |
2013-12-05 | bus: add support for serializing to gvariant | Lennart Poettering | |
(deserialization is still missing, hence this is not hooked up to kdbus) | |||
2013-12-05 | bus: switch to multiple KDBUS_ITEM_NAME including the flags | Kay Sievers | |
2013-12-04 | man.systemd-cgls: Fix an option typo | Alex Jia | |
The option 'M' is inconsistent between help document and man page. | |||
2013-12-04 | README: remove obsolete paragraph about D-Bus | Thomas Hindoe Paaboel Andersen | |
2013-12-04 | systemctl: make an always true assert static | Thomas Hindoe Paaboel Andersen | |
Silences a warning i clang | |||
2013-12-04 | systemctl: no need to fdopen stdout | Thomas Hindoe Paaboel Andersen | |
2013-12-04 | libsystemd-bus: catch up with latest kdbus changes | Kay Sievers | |
2013-12-04 | Fix typo: SetChasis -> SetChassis | David Coppa | |
2013-12-04 | TODO: add networkd entries | Tom Gundersen | |
2013-12-04 | networkd: add link-sense and simplify state-machine a bit | Tom Gundersen | |
This listens to rtnetlink for changes to IFF_UP and IFF_LOWER_UP (link sense). The latter is simply logged at the moment, but will be useful once we add dhcp support. | |||
2013-12-04 | rtnl: add link_get_flags | Tom Gundersen | |
2013-12-04 | rtnl: add callback support | Tom Gundersen | |
sd_rtnl_add_match allows you to add a callback function for when given types of messages are received. | |||
2013-12-04 | rtnl: don't ignore broadcast messages | Tom Gundersen | |
2013-12-04 | libsystemd-bus: catch up with latest kdbus list query changes | Kay Sievers | |
2013-12-03 | trivial coding style clean ups | Thomas Hindoe Paaboel Andersen | |
- Add space between if/for and the opening parentheses - Place the opening brace on same line as the function (not for udev) From the CODING_STYLE Try to use this: void foo() { } instead of this: void foo() { } | |||
2013-12-03 | sd-memfd: use assert_return | Thomas Hindoe Paaboel Andersen | |
2013-12-03 | bus: fix parsing of AcquireName() response | Lennart Poettering | |
2013-12-03 | bus: don't make use of the private bus socket if kdbus is available | Lennart Poettering | |
2013-12-03 | core: use normal library call to query list of current names | Lennart Poettering | |
2013-12-03 | bus: rework sd_bus_list_names() to return two lists for acquired and ↵ | Lennart Poettering | |
activatable names | |||
2013-12-03 | bus: internalize a lot of protocol definitions | Lennart Poettering | |
We shouldn export what isn't necessary or useful to clients, so let's add the protocol definitions we only need internally into a private header. | |||
2013-12-03 | journal: fail silently in sd_j_sendv() if journal is unavailable | Zbigniew Jędrzejewski-Szmek | |
"syslog(3) and sd_journal_print() may largely be used interchangeably functionality-wise" according to sd_journal_print(3). This socket should be always available except in rare circumstatances, and we don't random applications to fail on logging, so let's do what syslog did. The alternative of forcing all callers to do error handling for this rare case doesn't really have any benefits, since if they can't log there isn't much they can do anyway. https://bugzilla.redhat.com/show_bug.cgi?id=1023041 | |||
2013-12-03 | bus: make sd_bus_request_name() and sd_bus_release_name() behave more like ↵ | Lennart Poettering | |
other calls Instead of returning an enum of return codes, make them return error codes like kdbus does internally. Also, document this behaviour so that clients can stick to it. (Also rework bus-control.c to always have to functions for dbus1 vs. kernel implementation of the various calls.) | |||
2013-12-03 | macro: better make IN_SET() macro use const arrays | Lennart Poettering | |
2013-12-03 | libsystemd-bus: catch up with latest kdbus changes | Daniel Mack | |
2013-12-03 | units: ship busname units for the bus activated services we ship | Lennart Poettering | |
2013-12-02 | catalog: rename files to specify language in the filename | Zbigniew Jędrzejewski-Szmek | |
2013-12-02 | catalog: determine language from the filename | Zbigniew Jędrzejewski-Szmek | |
2013-12-02 | systemd: treat reload failure as failure | Zbigniew Jędrzejewski-Szmek | |
systemctl reload "suceeded" on stopped units, but it is documented to fail in this case. https://bugzilla.redhat.com/show_bug.cgi?id=1036845 | |||
2013-12-03 | dbus1: make gcc shut up | Lennart Poettering | |
2013-12-03 | libsystemd-bus: catch up with latest kdbus changes | Daniel Mack | |
2013-12-03 | units: create busnames.target for user sessions too | Lennart Poettering | |
2013-12-03 | dbus1: hook busnames.target into normal boot if kdbus is enabled | Lennart Poettering | |
2013-12-03 | bus: skip unit file generation for systemd itself | Lennart Poettering | |
2013-12-03 | units: install busnames.target by default | Lennart Poettering | |
2013-12-03 | bus: add generator that turns old dbus1 activation files into .busname + ↵ | Lennart Poettering | |
.service units | |||
2013-12-02 | bus: add .busname unit type to implement kdbus-style bus activation | Lennart Poettering | |
2013-12-02 | bus: make sure we check for "incompatible" flags negotiated with kernel kdbus | Lennart Poettering | |
2013-12-02 | core: extra paranoia when deserializing kdbus fd | Lennart Poettering | |
2013-12-02 | macro: add a macro to test whether a value is in a specified list | Lennart Poettering | |
Introduce IN_SET() macro to nicely check whether a value a is one of a few listed values. This makes writing this: if (a == 1 || a == 7 || a == 8 || a == 9) nicer, by allowing this: if (IN_SET(a, 1, 7, 8, 9)) This is particularly useful for state machine enums. | |||
2013-12-02 | Use assert_return in more of the public API | Thomas Hindoe Paaboel Andersen | |
2013-12-02 | libsystemd-bus: catch up with latest kdbus changes | Daniel Mack | |
2013-12-02 | nspawn: make sure /dev/kdbus in the container is world accessible | Lennart Poettering | |
2013-12-02 | nspawn: make kdbus namespaces actually work | Lennart Poettering | |
2013-12-02 | busctl: add command to dump creds of a peer or pid | Lennart Poettering | |
(also, rename _SD_BUS_CREDS_MAX to _SD_BUX_CRED_ALL, since "MAX" so far was used to indicate one higher than the highest valid value, and this is not correct here.) |