summaryrefslogtreecommitdiff
path: root/src/network/networkd-dhcp6.c
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2022-02-26 15:56:39 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2022-03-11 14:16:41 +0900
commitff51134c93a748524b75b4fd492f9c03cb02f65c (patch)
treeaa4dd86f335acceeecb3de90f3ae9fb2f466892d /src/network/networkd-dhcp6.c
parent54ff39f7aecbefeb6f480ea61fbacc4ee554dacc (diff)
downloadsystemd-ff51134c93a748524b75b4fd492f9c03cb02f65c.tar.gz
network: make request_process_address() and friends take Link and corresponding object
This also renames e.g. request_process_address() -> address_process_request(). Also, this drops type checks such as `assert(req->type == REQUEST_TYPE_ADDRESS)`, as in the later commits, the function of processing request, e.g. `address_process_request()`, will be assigned to the Request object when it is created. And the request type will be used to distinguish and to avoid deduplicating requests which do not have any assigned objects, like REQUEST_TYPE_DHCP4_CLIENT. Hence, the type checks in process functions are mostly not necessary and redundant. This is mostly cleanups and preparation for later commits, and should not change any behavior.
Diffstat (limited to 'src/network/networkd-dhcp6.c')
-rw-r--r--src/network/networkd-dhcp6.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/network/networkd-dhcp6.c b/src/network/networkd-dhcp6.c
index 244c3a2a4d..3bb013ebaf 100644
--- a/src/network/networkd-dhcp6.c
+++ b/src/network/networkd-dhcp6.c
@@ -715,15 +715,10 @@ int dhcp6_update_mac(Link *link) {
return 0;
}
-int request_process_dhcp6_client(Request *req) {
- Link *link;
+int dhcp6_process_request(Request *req, Link *link, void *userdata) {
int r;
- assert(req);
- assert(req->link);
- assert(req->type == REQUEST_TYPE_DHCP6_CLIENT);
-
- link = req->link;
+ assert(link);
if (!IN_SET(link->state, LINK_STATE_CONFIGURING, LINK_STATE_CONFIGURED))
return 0;
@@ -751,7 +746,6 @@ int request_process_dhcp6_client(Request *req) {
log_link_debug(link, "DHCPv6 client is configured%s.",
r > 0 ? ", acquiring DHCPv6 lease" : "");
-
return 1;
}