From 675174d4ba255383b213437e29b617d8f55dbc69 Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Mon, 11 Oct 2021 12:01:31 +0200 Subject: conf, tap: Split netlink and pasta functions, allow interface configuration Move netlink routines to their own file, and use netlink to configure or fetch all the information we need, except for the TUNSETIFF ioctl. Move pasta-specific functions to their own file as well, add parameters and calls to configure the tap interface in the namespace. Signed-off-by: Stefano Brivio --- netlink.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 netlink.h (limited to 'netlink.h') diff --git a/netlink.h b/netlink.h new file mode 100644 index 0000000..654e17e --- /dev/null +++ b/netlink.h @@ -0,0 +1,6 @@ +int nl_sock_init(struct ctx *c); +unsigned int nl_get_ext_if(int *v4, int *v6); +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, + void *addr, int prefix_len, void *addr_l); +void nl_link(int ns, unsigned int ifi, void *mac, int up); -- cgit v1.2.3