summaryrefslogtreecommitdiffstats
path: root/src/network/networkd-dhcp-prefix-delegation.h
blob: e591b8ae2e0947587abcbeb9ea3d83ee1f3a6a37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once

#include <stdbool.h>

#include "sd-dhcp-lease.h"
#include "sd-dhcp6-lease.h"

#include "conf-parser.h"

typedef struct Link Link;

bool link_dhcp_pd_is_enabled(Link *link);
bool dhcp_pd_is_uplink(Link *link, Link *target, bool accept_auto);
int dhcp_pd_find_uplink(Link *link, Link **ret);
int dhcp_pd_remove(Link *link, bool only_marked);
int dhcp_request_prefix_delegation(Link *link);
int dhcp4_pd_prefix_acquired(Link *uplink);
int dhcp6_pd_prefix_acquired(Link *uplink);
void dhcp_pd_prefix_lost(Link *uplink);
void dhcp4_pd_prefix_lost(Link *uplink);

CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_pd_subnet_id);