summaryrefslogtreecommitdiff
path: root/src/network/networkd-address-label.h
blob: 0f975454d9939208d22b742e0e69951227b9596f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once

#include <inttypes.h>

#include "conf-parser.h"
#include "in-addr-util.h"
#include "networkd-util.h"

typedef struct Link Link;
typedef struct Network Network;
typedef struct Request Request;

typedef struct AddressLabel {
        Network *network;
        NetworkConfigSection *section;

        uint32_t label;
        struct in6_addr prefix;
        unsigned char prefixlen;
        bool prefix_set;
} AddressLabel;

AddressLabel *address_label_free(AddressLabel *label);

void network_drop_invalid_address_labels(Network *network);

int link_request_static_address_labels(Link *link);
int request_process_address_label(Request *req);

CONFIG_PARSER_PROTOTYPE(config_parse_address_label);
CONFIG_PARSER_PROTOTYPE(config_parse_address_label_prefix);