Browse Source

wpaspy: Fix tracking of attached status

The attached variable was initialized and checked, but never updated.
Fix that by updating it on successful ATTACH/DETACH command.

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen 11 years ago
parent
commit
b44db5f6d6
1 changed files with 7 additions and 1 deletions
  1. 7 1
      wpaspy/wpaspy.py

+ 7 - 1
wpaspy/wpaspy.py

@@ -30,7 +30,11 @@ class Ctrl:
 
     def close(self):
         if self.attached:
-            self.detach()
+            try:
+                self.detach()
+            except Exception, e:
+                # Need to ignore this allow the socket to be closed
+                pass
         if self.started:
             self.s.close()
             os.unlink(self.local)
@@ -48,6 +52,7 @@ class Ctrl:
             return None
         res = self.request("ATTACH")
         if "OK" in res:
+            self.attached = True
             return None
         raise Exception("ATTACH failed")
 
@@ -56,6 +61,7 @@ class Ctrl:
             return None
         res = self.request("DETACH")
         if "OK" in res:
+            self.attached = False
             return None
         raise Exception("DETACH failed")