From 8231ce54c3953186f07f9aaebfd6986a303005aa Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Thu, 15 Aug 2024 00:01:53 +0200 Subject: netlink, pasta: Split MTU setting functionality out of nl_link_up() As we'll use nl_link_up() for more than just bringing up devices, it will become awkward to carry empty MTU values around whenever we call it. Signed-off-by: Stefano Brivio Reviewed-by: David Gibson --- netlink.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'netlink.h') diff --git a/netlink.h b/netlink.h index 3a1f0de..87d27ae 100644 --- a/netlink.h +++ b/netlink.h @@ -23,6 +23,7 @@ int nl_addr_dup(int s_src, unsigned int ifi_src, int s_dst, unsigned int ifi_dst, sa_family_t af); int nl_link_get_mac(int s, unsigned int ifi, void *mac); int nl_link_set_mac(int s, unsigned int ifi, const void *mac); -int nl_link_up(int s, unsigned int ifi, int mtu); +int nl_link_set_mtu(int s, unsigned int ifi, int mtu); +int nl_link_up(int s, unsigned int ifi); #endif /* NETLINK_H */ -- cgit v1.2.3