2021-10-19 10:43:28 +00:00
|
|
|
/* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
* Copyright (c) 2021 Red Hat GmbH
|
|
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2022-03-25 23:05:31 +00:00
|
|
|
#ifndef NETLINK_H
|
|
|
|
#define NETLINK_H
|
|
|
|
|
2022-03-26 06:23:21 +00:00
|
|
|
int nl_sock_init(const struct ctx *c);
|
2022-07-22 05:31:13 +00:00
|
|
|
unsigned int nl_get_ext_if(sa_family_t af);
|
2021-10-11 10:01:31 +00:00
|
|
|
void nl_route(int ns, unsigned int ifi, sa_family_t af, void *gw);
|
|
|
|
void nl_addr(int ns, unsigned int ifi, sa_family_t af,
|
2021-10-19 07:01:27 +00:00
|
|
|
void *addr, int *prefix_len, void *addr_l);
|
2021-10-14 11:05:56 +00:00
|
|
|
void nl_link(int ns, unsigned int ifi, void *mac, int up, int mtu);
|
2022-03-25 23:05:31 +00:00
|
|
|
|
|
|
|
#endif /* NETLINK_H */
|