Parcourir la source

wpaspy: Add optional timeout argument for pending()

This can be used to wait for up to the specified limit on new event
messages.

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen il y a 11 ans
Parent
commit
606110e647
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      wpaspy/wpaspy.py

+ 2 - 2
wpaspy/wpaspy.py

@@ -70,8 +70,8 @@ class Ctrl:
             return None
         raise Exception("DETACH failed")
 
-    def pending(self):
-        [r, w, e] = select.select([self.s], [], [], 0)
+    def pending(self, timeout=0):
+        [r, w, e] = select.select([self.s], [], [], timeout)
         if r:
             return True
         return False