Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | sd-dhcp6-client: add missing message types | Yu Watanabe | 2021-10-12 | 1 | -1/+1 |
| | | | | This also changes the prefix: DHCP6_ -> DHCP6_MESSAGE_. | ||||
* | sd-lldp-rx: rename sd_lldp -> sd_lldp_rx | Yu Watanabe | 2021-09-27 | 1 | -2/+2 |
| | |||||
* | sd-lldp: rename sd-lldp.[ch] -> sd-lldp-rx.[ch] | Yu Watanabe | 2021-09-27 | 1 | -1/+1 |
| | |||||
* | sd-netlink: drop sd_genl_family_t and introduce GenericNetlinkFamily | Yu Watanabe | 2021-08-29 | 1 | -1/+0 |
| | | | | | | | | | | | Kernel manages each genl family by its name, e.g. "nlctrl" or WG_GENL_NAME, and its ID (used for nlmsg_type) is determined dynamically when the corresponding module is loaded. This commit makes sd-netlink follow the same way; now, sd_genl_family_t is dropped, and sd_genl_message_new() takes a genl family name. Each genl family is resolved when it is used first time, and its information is stored in GenericNetlinkFamily. | ||||
* | sd-netlink: split netlink-types.[ch] into small files | Yu Watanabe | 2021-08-29 | 1 | -2/+0 |
| | | | | Also renames several files. | ||||
* | udev: make WakeOnLan= take multiple features | Yu Watanabe | 2021-06-08 | 1 | -1/+0 |
| | | | | WAKE_XXX are flag, not enum. | ||||
* | network: suffix types with _t in public headers | Lennart Poettering | 2021-02-18 | 1 | -4/+4 |
| | | | | | | | | | | | | Apparently, in our current public headers (i.e. those called sd-*.h) we suffixed typedefs that we use as values with _t, but we didn't do this for enum typedefs. Fix that while this stuff is not actually public yet. With this scheme "value typedefs" now end systematically in _t, and "object typedefs" (i.e. structures that are typically passed around via pointers and not values) do not. No code changes, just some renaming. | ||||
* | network: make use of SD_ENUM_FORCE_S64() for all public enums | Lennart Poettering | 2021-02-16 | 1 | -0/+6 |
| | |||||
* | license: LGPL-2.1+ -> LGPL-2.1-or-later | Yu Watanabe | 2020-11-09 | 1 | -1/+1 |
| | |||||
* | tree-wide: use the usual SPDX header for our own files | Zbigniew Jędrzejewski-Szmek | 2020-10-29 | 1 | -0/+2 |
| | |||||
* | network: cleanup header inclusion | Yu Watanabe | 2019-10-30 | 1 | -4/+4 |
| | |||||
* | network: rename AddressFamilyBoolean -> AddressFamily | Yu Watanabe | 2019-08-16 | 1 | -1/+1 |
| | | | | We usually do not call an extended boolean as XxxBoolean. | ||||
* | networkd: Option to use LinkLocalAddressing only when DHCP fails | Susant Sahani | 2019-05-04 | 1 | -1/+1 |
| | | | | | | | When LinkLocalAddressing=fallback or LinkLocalAddressing=ipv4-fallback then IPv4LL will be started only when DHCP fails. Closes #9648. | ||||
* | test: add tests for string tables for lldp and ndisc events | Yu Watanabe | 2018-11-06 | 1 | -0/+4 |
| | |||||
* | test: add test for radv_prefix_delegation_{from,to}_string() | Yu Watanabe | 2018-11-03 | 1 | -0/+1 |
| | |||||
* | test-network-tables: remove duplicate line | Zbigniew Jędrzejewski-Szmek | 2018-10-28 | 1 | -1/+0 |
| | |||||
* | test-network-tables: add dhcp6_message_type to test | Zbigniew Jędrzejewski-Szmek | 2018-07-24 | 1 | -1/+1 |
| | | | | Follow-up for e91c99059b0d111bd681ea9077d014bd3b6a1f97. | ||||
* | test: add comment in test-network-tables.c | Yu Watanabe | 2018-07-23 | 1 | -0/+1 |
| | |||||
* | test-tables,test-network-tables: add a few more tests | Zbigniew Jędrzejewski-Szmek | 2018-05-28 | 1 | -0/+14 |
| | |||||
* | test-tables*: sort | Zbigniew Jędrzejewski-Szmek | 2018-05-28 | 1 | -8/+8 |
| | |||||
* | networkd: clean up main header file a bit | Tom Gundersen | 2016-11-14 | 1 | -1/+3 |
| | | | | | Rename networkd.h to networkd-manager.h, to more accurately describe what it contains. | ||||
* | networkd: netdev - move to separate subdirectory | Tom Gundersen | 2016-11-13 | 1 | -2/+2 |
| | | | | | This could (and should) be made into a separate daemon, at least move the sourcefiles out for now. | ||||
* | tree-wide: use mdash instead of a two minuses | Zbigniew Jędrzejewski-Szmek | 2016-04-22 | 1 | -1/+1 |
| | |||||
* | tree-wide: sort includes | Thomas Hindoe Paaboel Andersen | 2015-11-16 | 1 | -5/+4 |
| | | | | Sort the includes accoding to the new coding style. | ||||
* | sd-netlink: rename from sd-rtnl | Tom Gundersen | 2015-06-13 | 1 | -1/+1 |
| | |||||
* | remove unused includes | Thomas Hindoe Paaboel Andersen | 2015-02-23 | 1 | -1/+0 |
| | | | | | | This patch removes includes that are not used. The removals were found with include-what-you-use which checks if any of the symbols from a header is in use. | ||||
* | networkd: netdev - add ipvlan support | Tom Gundersen | 2015-01-19 | 1 | -0/+1 |
| | |||||
* | networkd: introduce an AddressFamilyBoolean enum type | Lennart Poettering | 2015-01-13 | 1 | -1/+1 |
| | | | | | | This introduces am AddressFamilyBoolean type that works more or less like a booleaan, but can optionally turn on/off things for ipv4 and ipv6 independently. THis also ports the DHCP field over to it. | ||||
* | networkd: split out networkd-link.h | Tom Gundersen | 2014-08-12 | 1 | -0/+1 |
| | |||||
* | test-tables: add new entries | Zbigniew Jędrzejewski-Szmek | 2014-07-17 | 1 | -0/+26 |
One missing string found. A few things had to be moved around to make it possible to test them. |