changes on behalf of acid-burn
authorAndreas Frisch <andreas.frisch@multimedia-labs.de>
Mon, 27 Oct 2008 09:21:56 +0000 (09:21 +0000)
committerAndreas Frisch <andreas.frisch@multimedia-labs.de>
Mon, 27 Oct 2008 09:21:56 +0000 (09:21 +0000)
lib/python/Components/Network.py

index c28710b7b129ddb3479c2c60d50f2584c3fe9327..56506a50b725217bd03389cde93f15c221199a3a 100644 (file)
@@ -88,9 +88,9 @@ class Network:
                                data['mac'] = mac
                if not data.has_key('ip'):
                        data['dhcp'] = True
                                data['mac'] = mac
                if not data.has_key('ip'):
                        data['dhcp'] = True
-                       data['ip'] = [192, 168, 1, 2]
-                       data['netmask'] = [255, 255, 255, 0]
-                       data['gateway'] = [192, 168, 1, 1]
+                       data['ip'] = [0, 0, 0, 0]
+                       data['netmask'] = [0, 0, 0, 0]
+                       data['gateway'] = [0, 0, 0, 0]
                        
                fp = popen("route -n | grep  " + iface)
                result = fp.readlines()
                        
                fp = popen("route -n | grep  " + iface)
                result = fp.readlines()
@@ -177,9 +177,11 @@ class Network:
                                                if self.ifaces[currif]["gateway"] != ifaces[currif]["gateway"] and ifaces[currif]["dhcp"] == False:
                                                        self.ifaces[currif]["gateway"] = map(int, split[1].split('.'))                                  
                                if (split[0] == "pre-up"):
                                                if self.ifaces[currif]["gateway"] != ifaces[currif]["gateway"] and ifaces[currif]["dhcp"] == False:
                                                        self.ifaces[currif]["gateway"] = map(int, split[1].split('.'))                                  
                                if (split[0] == "pre-up"):
-                                       self.ifaces[currif]["preup"] = i
+                                       if self.ifaces[currif].has_key("preup"):
+                                               self.ifaces[currif]["preup"] = i
                                if (split[0] == "post-down"):
                                if (split[0] == "post-down"):
-                                       self.ifaces[currif]["postdown"] = i
+                                       if self.ifaces[currif].has_key("postdown"):
+                                               self.ifaces[currif]["postdown"] = i
 
                print "read interfaces:", ifaces
                for ifacename, iface in ifaces.items():
 
                print "read interfaces:", ifaces
                for ifacename, iface in ifaces.items():
@@ -332,6 +334,12 @@ class Network:
                self.container.appClosed.get().remove(self.cmdFinished)
                self.container.dataAvail.get().remove(self.dataAvail)
 
                self.container.appClosed.get().remove(self.cmdFinished)
                self.container.dataAvail.get().remove(self.dataAvail)
 
+       def stopContainer(self):
+               self.container.kill()
+               
+       def ContainerRunning(self):
+               return self.container.running()
+
        def checkforInterface(self,iface):
                if self.getAdapterAttribute(iface, 'up') is True:
                        return True
        def checkforInterface(self,iface):
                if self.getAdapterAttribute(iface, 'up') is True:
                        return True