2
* lxc: linux Container library
4
* (C) Copyright IBM Corp. 2007, 2008
7
* Daniel Lezcano <dlezcano at fr.ibm.com>
9
* This library is free software; you can redistribute it and/or
10
* modify it under the terms of the GNU Lesser General Public
11
* License as published by the Free Software Foundation; either
12
* version 2.1 of the License, or (at your option) any later version.
14
* This library is distributed in the hope that it will be useful,
15
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
* Lesser General Public License for more details.
19
* You should have received a copy of the GNU Lesser General Public
20
* License along with this library; if not, write to the Free Software
21
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27
* Convert a string mac address to a socket structure
29
extern int lxc_convert_mac(char *macaddr, struct sockaddr *sockaddr);
32
* Move a device between namespaces
34
extern int lxc_device_move(const char *name, pid_t pid);
37
* Delete a network device
39
extern int lxc_device_delete(const char *name);
42
* Set the device network up
44
extern int lxc_device_up(const char *name);
47
* Set the device network down
49
extern int lxc_device_down(const char *name);
52
* Change the device name
54
extern int lxc_device_rename(const char *oldname, const char *newname);
57
* Change the mtu size for the specified device
59
extern int lxc_device_set_mtu(const char *name, int mtu);
62
* Create a veth network device
64
extern int lxc_veth_create(const char *name1, const char *name2);
67
* Create a macvlan network device
69
extern int lxc_macvlan_create(const char *master, const char *name);
74
extern int lxc_ip_forward_on(const char *name, int family);
79
extern int lxc_ip_forward_off(const char *name, int family);
84
extern int lxc_ip_addr_add(const char *ifname, const char *addr,
85
int prefix, const char *bcast);
87
extern int lxc_ip6_addr_add(const char *ifname, const char *addr,
88
int prefix, const char *bcast);
91
* Attach an interface to the bridge
93
extern int lxc_bridge_attach(const char *bridge, const char *ifname);
96
* Detach an interface from the bridge
98
extern int lxc_bridge_detach(const char *bridge, const char *ifname);
101
* Create default gateway
103
extern int lxc_route_create_default(const char *addr, const char *ifname,
107
* Delete default gateway
109
extern int lxc_route_delete_default(const char *addr, const char *ifname,
113
* Activate neighbor proxying
115
extern int lxc_neigh_proxy_on(const char *name, int family);
118
* Disable neighbor proxying
120
extern int lxc_neigh_proxy_off(const char *name, int family);