From c96a27f7393fe12f50c8e1c71cc59242e85b085f Mon Sep 17 00:00:00 2001 From: Thomas Parrott Date: Wed, 3 Jun 2020 11:08:19 +0100 Subject: [PATCH] network: Adds veth vlan_id, vlan_id_set and vlan_tagged_ids Signed-off-by: Thomas Parrott --- src/lxc/network.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lxc/network.h b/src/lxc/network.h index 696380c90..cd4fde323 100644 --- a/src/lxc/network.h +++ b/src/lxc/network.h @@ -79,6 +79,9 @@ struct ifla_veth { struct lxc_list ipv4_routes; struct lxc_list ipv6_routes; int mode; /* bridge, router */ + short vlan_id; + bool vlan_id_set; + struct lxc_list vlan_tagged_ids; }; struct ifla_vlan { -- 2.47.2