Browse Source

WPS: Change listen time to match nfcpy default (250 ms)

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen 12 years ago
parent
commit
bd692a8b0e
2 changed files with 2 additions and 2 deletions
  1. 1 1
      hostapd/wps-ap-nfc.py
  2. 1 1
      wpa_supplicant/examples/wps-nfc.py

+ 1 - 1
hostapd/wps-ap-nfc.py

@@ -204,7 +204,7 @@ def find_peer(clf):
         if nfc.llcp.connected():
             print "LLCP connected"
         general_bytes = nfc.llcp.startup({})
-        peer = clf.listen(ord(os.urandom(1)) + 200, general_bytes)
+        peer = clf.listen(ord(os.urandom(1)) + 250, general_bytes)
         if isinstance(peer, nfc.DEP):
             print "listen -> DEP";
             if peer.general_bytes.startswith("Ffm"):

+ 1 - 1
wpa_supplicant/examples/wps-nfc.py

@@ -165,7 +165,7 @@ def find_peer(clf):
         if nfc.llcp.connected():
             print "LLCP connected"
         general_bytes = nfc.llcp.startup({})
-        peer = clf.listen(ord(os.urandom(1)) + 200, general_bytes)
+        peer = clf.listen(ord(os.urandom(1)) + 250, general_bytes)
         if isinstance(peer, nfc.DEP):
             print "listen -> DEP";
             if peer.general_bytes.startswith("Ffm"):