]> git.ipfire.org Git - people/ms/network.git/blob - src/networkd/links.h
Makefile: Fix typo in localstatedir
[people/ms/network.git] / src / networkd / links.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_LINKS_H
22 #define NETWORKD_LINKS_H
23
24 #include "daemon.h"
25 #include "link.h"
26
27 typedef struct nw_links nw_links;
28
29 int nw_links_create(nw_links** links, nw_daemon* daemon);
30
31 nw_links* nw_links_ref(nw_links* links);
32 nw_links* nw_links_unref(nw_links* links);
33
34 int nw_links_add_link(nw_links* links, nw_link* link);
35 void nw_links_drop_link(nw_links* links, nw_link* link);
36
37 int nw_links_enumerate(nw_links* links);
38
39 nw_link* nw_links_get_by_ifindex(nw_links* links, int ifindex);
40 nw_link* nw_links_get_by_name(nw_links* links, const char* name);
41
42 #endif /* NETWORKD_LINKS_H */