]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/networkd-fdb.h
network: drop sections contain invalid settings in network_verify()
[thirdparty/systemd.git] / src / network / networkd-fdb.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 Copyright © 2014 Intel Corporation. All rights reserved.
6 ***/
7
8 #include "conf-parser.h"
9 #include "list.h"
10 #include "macro.h"
11 #include "networkd-util.h"
12
13 typedef struct Network Network;
14 typedef struct FdbEntry FdbEntry;
15 typedef struct Link Link;
16 typedef struct NetworkConfigSection NetworkConfigSection;
17
18 struct FdbEntry {
19 Network *network;
20 NetworkConfigSection *section;
21
22 struct ether_addr *mac_addr;
23 uint16_t vlan_id;
24
25 LIST_FIELDS(FdbEntry, static_fdb_entries);
26 };
27
28 void fdb_entry_free(FdbEntry *fdb_entry);
29 int fdb_entry_configure(Link *link, FdbEntry *fdb_entry);
30
31 DEFINE_NETWORK_SECTION_FUNCTIONS(FdbEntry, fdb_entry_free);
32
33 CONFIG_PARSER_PROTOTYPE(config_parse_fdb_hwaddr);
34 CONFIG_PARSER_PROTOTYPE(config_parse_fdb_vlan_id);