aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorMladen Horvat <acidburn@opendreambox.org>2008-11-05 20:22:38 +0100
committerAndreas Oberritter <obi@saftware.de>2008-11-06 01:47:05 +0100
commit040e658a3f89783e0030392110e87cc992264cdd (patch)
treef009273fd7fa368a621e6916f5f7edbec0a79a52 /lib/python/Components
parentd14da9c99de7d25b8811292e53cc745e30594234 (diff)
downloadenigma2-040e658a3f89783e0030392110e87cc992264cdd.tar.gz
enigma2-040e658a3f89783e0030392110e87cc992264cdd.zip
some fixes
B A A
Diffstat (limited to 'lib/python/Components')
-rwxr-xr-xlib/python/Components/Network.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py
index e10c6a0e..8e9fc120 100755
--- a/lib/python/Components/Network.py
+++ b/lib/python/Components/Network.py
@@ -20,6 +20,7 @@ class Network:
self.deactivateConsole = Console()
self.activateConsole = Console()
self.resetNetworkConsole = Console()
+ self.DnsConsole = Console()
self.getInterfaces()
def getInterfaces(self, callback = None):
@@ -445,6 +446,10 @@ class Network:
if self.LinkConsole is not None:
self.LinkConsole = None
+ def stopDNSConsole(self):
+ if self.DnsConsole is not None:
+ self.DnsConsole = None
+
def stopRestartConsole(self):
if self.restartConsole is not None:
self.restartConsole = None