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