diff options
| author | Yoggzo <yogg@epsina.com> | 2016-04-21 21:51:46 +0200 |
|---|---|---|
| committer | Yoggzo <yogg@epsina.com> | 2016-04-21 21:51:46 +0200 |
| commit | 3f6af0b6446725462362de94f09daf9a723b130d (patch) | |
| tree | 2cae5a13c6bd98a236ac147d5e8c7572017af27f /server/core/Automating.php | |
| parent | 94ce37f5175eb6f528d5ad29a446c04d981628f1 (diff) | |
modification in structure for ip and routers
Diffstat (limited to 'server/core/Automating.php')
| -rwxr-xr-x | server/core/Automating.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/core/Automating.php b/server/core/Automating.php index 69a2773..4e212e7 100755 --- a/server/core/Automating.php +++ b/server/core/Automating.php @@ -14,6 +14,7 @@ include("CoreInterface.php"); include("Image.php"); include("Network.php"); include("Compute.php"); +include("NetworkLayer3"); class automating implements Core{ @@ -22,7 +23,7 @@ class automating implements Core{ protected $appImage; protected $appNetwork; protected $appIdentity; - protected $appFloatingIp; + protected $appNetworkLayer3; protected $app; /** @@ -40,7 +41,7 @@ class automating implements Core{ $this->appImage = $appImage; $this->appNetwork = $appNetwork; $this->appIdentity = $appIdentity; - $this->appFloatingIp = $appFloatingIp; + $this->appNetworkLayer3 = $appNetworkLayer3; $this->app = $app; } |
