Device Emulation (contd.): If vlan tag count is zero, clear vlan encap
This commit is contained in:
parent
db8ad92738
commit
065698369f
@ -286,7 +286,7 @@ void DeviceGroupDialog::loadDeviceGroup()
|
||||
void DeviceGroupDialog::storeDeviceGroup()
|
||||
{
|
||||
OstProto::DeviceGroup *devGrp = port_->deviceGroupByIndex(index_);
|
||||
int tagCount = 0;
|
||||
int tagCount = vlanTagCount->value();
|
||||
|
||||
Q_ASSERT(devGrp);
|
||||
|
||||
@ -295,7 +295,6 @@ void DeviceGroupDialog::storeDeviceGroup()
|
||||
OstEmul::VlanEmulation *vlan = devGrp->mutable_encap()
|
||||
->MutableExtension(OstEmul::vlan);
|
||||
vlan->clear_stack();
|
||||
tagCount = vlanTagCount->value();
|
||||
for (int i = 0; i < tagCount; i++) {
|
||||
OstEmul::VlanEmulation::Vlan *v = vlan->add_stack();
|
||||
v->set_vlan_tag(
|
||||
@ -307,6 +306,9 @@ void DeviceGroupDialog::storeDeviceGroup()
|
||||
v->set_tpid(vlans->item(i, kVlanTpid)->text().toUInt(NULL, 16));
|
||||
}
|
||||
|
||||
if (!tagCount)
|
||||
devGrp->clear_encap();
|
||||
|
||||
devGrp->set_device_count(devicePerVlanCount->value());
|
||||
|
||||
OstEmul::MacEmulation *mac = devGrp->MutableExtension(OstEmul::mac);
|
||||
|
Loading…
Reference in New Issue
Block a user