]> git.ipfire.org Git - network.git/blob - src/networkd/port-vlan.h
ports: Move VLAN settings into its own header file
[network.git] / src / networkd / port-vlan.h
1 /*#############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2023 IPFire Network Development Team #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 #############################################################################*/
20
21 #ifndef NETWORKD_PORT_VLAN_H
22 #define NETWORKD_PORT_VLAN_H
23
24 #include "port.h"
25
26 struct nw_port_vlan {
27 nw_port* parent;
28
29 // The VLAN ID
30 int id;
31
32 // If the parent has not been read from the configuration we will
33 // save the name and try to find it later.
34 char __parent_name[IF_NAMESIZE];
35 };
36
37 extern const nw_port_info_t nw_port_info_vlan;
38
39 // ID
40 int nw_port_get_vlan_id(nw_port* port);
41 int nw_port_set_vlan_id(nw_port* port, int id);
42
43 // Parent Port
44 nw_port* nw_port_get_vlan_parent(nw_port* port);
45 int nw_port_set_vlan_parent(nw_port* port, nw_port* parent);
46
47 #endif /* NETWORKD_PORT_VLAN_H */