]> git.ipfire.org Git - people/ms/network.git/blame - src/networkd/link.h
ports: Add link stuff to JSON output
[people/ms/network.git] / src / networkd / link.h
CommitLineData
87a1e1e0
MT
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_LINK_H
22#define NETWORKD_LINK_H
23
15240e08
MT
24#include <linux/if_link.h>
25
2361667e 26typedef struct nw_link nw_link;
87a1e1e0 27
30d4ab67 28#include "daemon.h"
69467266 29#include "json.h"
30d4ab67 30
2361667e 31int nw_link_create(nw_link** link, nw_daemon* daemon, int ifindex);
87a1e1e0 32
2361667e
MT
33nw_link* nw_link_ref(nw_link* link);
34nw_link* nw_link_unref(nw_link* link);
87a1e1e0 35
2361667e 36int nw_link_ifindex(nw_link* link);
207abe4e 37const char* nw_link_ifname(nw_link* link);
766f08ca 38
15240e08
MT
39// Stats
40const struct rtnl_link_stats64* nw_link_get_stats64(nw_link* link);
41int nw_link_update_stats(nw_link* link);
42
dfd49c2c
MT
43int nw_link_has_carrier(nw_link* link);
44
eaf649ee
MT
45int nw_link_process(sd_netlink* rtnl, sd_netlink_message* message, void* data);
46
371b836a
MT
47int nw_link_destroy(nw_link* link);
48
69467266
MT
49// JSON
50int nw_link_to_json(nw_link* link, struct json_object* o);
51
87a1e1e0 52#endif /* NETWORKD_LINK_H */