diff options
Diffstat (limited to 'src/lxc/conf.h')
-rw-r--r-- | src/lxc/conf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lxc/conf.h b/src/lxc/conf.h index 0b8d732..bb38206 100644 --- a/src/lxc/conf.h +++ b/src/lxc/conf.h @@ -73,6 +73,7 @@ struct lxc_route6 { * Defines a structure to configure a network device * @link : lxc.network.link, name of bridge or host iface to attach if any * @name : lxc.network.name, name of iface on the container side + * @pair : lxc.network.pair, name of host-side iface in case of veth etc * @flags : flag of the network device (IFF_UP, ... ) * @ipv4 : a list of ipv4 addresses to be set on the network device * @ipv6 : a list of ipv6 addresses to be set on the network device @@ -83,6 +84,7 @@ struct lxc_netdev { int ifindex; char *link; char *name; + char *pair; char *hwaddr; char *mtu; struct lxc_list ipv4; |