summaryrefslogtreecommitdiff
path: root/src/libsystemd-rtnl
AgeCommit message (Collapse)Author
2013-11-08rtnl: message - initialize all memoryTom Gundersen
Including the padding, which should not really be needed, but let's keep valgrind happy.
2013-11-08test-rtnl: fix typoTom Gundersen
2013-11-07rtnl: add Makefile symlinkLennart Poettering
2013-11-07rtnl: headers in src/systemd/ may not include internal headersLennart Poettering
Hence including "util.h" from sd-rtnl.h is not OK. Let's minimize our headers we pull in a bit.
2013-11-07rtnl: internal headers must include pragma once protectionLennart Poettering
2013-11-04rtnl: add support for routesTom Gundersen
2013-10-30udev: link-config - let udevd set the ifnameTom Gundersen
2013-10-29rtnl-util: add missing filesTom Gundersen
2013-10-29rtnl: fix sockaddr confusionTom Gundersen
2013-10-29rtnl: cleanup socket_read_messageTom Gundersen
2013-10-29rtnl: complain if used after forkTom Gundersen
2013-10-29rtnl: introduce default timeoutTom Gundersen
We set it to 10 secs (as we are only communicating with the kernel, it seems we should be able to bail out sooner than sd-bus, which uses 25). When passing timout 0, the default is used, use this in link-config.
2013-10-29rtnl: use malloc0 instead of callocTom Gundersen
2013-10-29rtnl: use _cleanup_ macro moreTom Gundersen
2013-10-29sd-rtnl: minor fixesTom Gundersen
2013-10-27rtnl: relax the tests a bitTom Gundersen
It is a bit too optimisitc that this stuff is the same on different hosts.
2013-10-27libsystemd-rtnl: add a rtnetlink libraryTom Gundersen
This is intentionally as similar to sd-bus as possible. While it would be simple to export it, the intentions is to keep this internal (at least for the forseeable future). Currently only synchronous communication is implemented