summaryrefslogtreecommitdiffstats
path: root/src/network/networkd-ipv4ll.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #113 from mezcalero/address-familyLennart Poettering2015-06-091-1/+1
|\ | | | | networkd: actually always use AddressFamilyBoolean as the bit mask it is
| * networkd: actually always use AddressFamilyBoolean as the bit mask it isLennart Poettering2015-06-091-1/+1
| |
* | tree-wide: remove spurious spaceThomas Hindoe Paaboel Andersen2015-06-081-1/+1
|/
* networkd: generalize IPv4LL to LinkLocalTom Gundersen2015-02-091-1/+1
| | | | | | This allows both IPv4 and IPv6 link-local addresses to be enabled or disabled. By default we still enable IPv6LL and disable IPv4LL. The old config option is kept for backwards compatibility, but removed from the documentation.
* networkd: manager - enumerate addresses globally, rather than per-linkTom Gundersen2014-12-081-5/+2
| | | | The kernel always returns all addresses, rather than only for the given link, so let's only enumerate once.
* log: rearrange log function namingLennart Poettering2014-11-271-8/+8
| | | | | | | | | | - Rename log_meta() → log_internal(), to follow naming scheme of most other log functions that are usually invoked through macros, but never directly. - Rename log_info_object() to log_object_info(), simply because the object should be before any other parameters, to follow OO-style programming style.
* log: add an "error" parameter to all low-level logging calls and intrdouce ↵Lennart Poettering2014-11-271-2/+1
| | | | | | | | | | | | | | | | | | | | log_error_errno() as log calls that take error numbers This change has two benefits: - The format string %m will now resolve to the specified error (or to errno if the specified error is 0. This allows getting rid of a ton of strerror() invocations, a function that is not thread-safe. - The specified error can be passed to the journal in the ERRNO= field. Now of course, we just need somebody to convert all cases of this: log_error("Something happened: %s", strerror(-r)); into thus: log_error_errno(-r, "Something happened: %m");
* networkd: link - split out ipv4ll handlingTom Gundersen2014-08-121-0/+248