libnl  3.3.0
nl-link-release.c
1 /*
2  * src/nl-link-release.c release a link
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation version 2.1
7  * of the License.
8  *
9  * Copyright (c) 2011 Thomas Graf <tgraf@suug.ch>
10  */
11 
12 #include <netlink/cli/utils.h>
13 #include <netlink/cli/link.h>
14 #include <netlink/route/link/bonding.h>
15 
16 #include <linux/netlink.h>
17 
18 int main(int argc, char *argv[])
19 {
20  struct nl_sock *sock;
21  struct nl_cache *link_cache;
22  struct rtnl_link *slave;
23  int err;
24 
25  if (argc < 2) {
26  fprintf(stderr, "Usage: nl-link-release slave\n");
27  return 1;
28  }
29 
30  sock = nl_cli_alloc_socket();
31  nl_cli_connect(sock, NETLINK_ROUTE);
32  link_cache = nl_cli_link_alloc_cache(sock);
33 
34  if (!(slave = rtnl_link_get_by_name(link_cache, argv[1]))) {
35  fprintf(stderr, "Unknown link: %s\n", argv[1]);
36  return 1;
37  }
38 
39  if ((err = rtnl_link_bond_release(sock, slave)) < 0) {
40  fprintf(stderr, "Unable to release slave %s: %s\n",
41  argv[1], nl_geterror(err));
42  return 1;
43  }
44 
45  return 0;
46 }
47 
int rtnl_link_bond_release(struct nl_sock *sock, struct rtnl_link *slave)
Release a link from a bond.
Definition: bonding.c:208