From 7aac1fff44aaa62fe0b34d95f124971cb27fa2b6 Mon Sep 17 00:00:00 2001 From: Dimi Lee Date: Mon, 21 Apr 2014 11:03:59 +0800 Subject: [PATCH] Bug 997066 - Add MozWifiNetwork parameter to Webidl. r=mrbkap --- dom/webidl/MozWifiManager.webidl | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/dom/webidl/MozWifiManager.webidl b/dom/webidl/MozWifiManager.webidl index ba2c47de982..0791beabbbf 100644 --- a/dom/webidl/MozWifiManager.webidl +++ b/dom/webidl/MozWifiManager.webidl @@ -36,9 +36,18 @@ dictionary NetworkProperties { DOMString signalStrength; long relSignalStrength; DOMString psk; + DOMString wep; + DOMString wep_key0; + DOMString wep_key1; + DOMString wep_key2; + DOMString wep_key3; + long wep_tx_keyidx; + long priority; + long scan_ssid; DOMString keyManagement; DOMString identity; DOMString password; + DOMString auth_alg; DOMString phase1; DOMString phase2; DOMString eap; @@ -61,9 +70,18 @@ interface MozWifiNetwork { attribute DOMString? signalStrength; attribute long? relSignalStrength; attribute DOMString? psk; + attribute DOMString? wep; + attribute DOMString? wep_key0; + attribute DOMString? wep_key1; + attribute DOMString? wep_key2; + attribute DOMString? wep_key3; + attribute long? wep_tx_keyidx; + attribute long? priority; + attribute long? scan_ssid; attribute DOMString? keyManagement; attribute DOMString? identity; attribute DOMString? password; + attribute DOMString? auth_alg; attribute DOMString? phase1; attribute DOMString? phase2; attribute DOMString? eap;