Return flag for special interface that you can use in the cloud

Fix https://github.com/GNS3/gns3-gui/issues/1509
This commit is contained in:
Julien Duponchelle
2016-09-14 17:15:06 +02:00
parent 803064d5cf
commit 84a2f8b4a3
4 changed files with 20 additions and 3 deletions

View File

@ -55,7 +55,8 @@ class Cloud(BaseNode):
network_interfaces = interfaces()
for interface in network_interfaces:
host_interfaces.append({"name": interface["name"],
"type": interface["type"]})
"type": interface["type"],
"special": interface["special"]})
return {"name": self.name,
"node_id": self.id,