aboutsummaryrefslogtreecommitdiff
path: root/libraries/WiFi/utility/wl_definitions.h
diff options
context:
space:
mode:
authorFede85 <f.vanzati@gmail.com>2013-07-19 16:20:34 +0200
committerFede85 <f.vanzati@gmail.com>2013-07-19 16:20:34 +0200
commit5527c44aa443b20d63cf7a276180a36695233924 (patch)
tree3eb20251dba2f0785dfdf91431d2153d87f1086d /libraries/WiFi/utility/wl_definitions.h
parentf84a4ae1cdfbe46e72a1c99175f04eab1a1df046 (diff)
WiFi library to the new format
Diffstat (limited to 'libraries/WiFi/utility/wl_definitions.h')
-rw-r--r--libraries/WiFi/utility/wl_definitions.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/libraries/WiFi/utility/wl_definitions.h b/libraries/WiFi/utility/wl_definitions.h
deleted file mode 100644
index 1ec8e71..0000000
--- a/libraries/WiFi/utility/wl_definitions.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * wl_definitions.h
- *
- * Created on: Mar 6, 2011
- * Author: dlafauci
- */
-
-#ifndef WL_DEFINITIONS_H_
-#define WL_DEFINITIONS_H_
-
-// Maximum size of a SSID
-#define WL_SSID_MAX_LENGTH 32
-// Length of passphrase. Valid lengths are 8-63.
-#define WL_WPA_KEY_MAX_LENGTH 63
-// Length of key in bytes. Valid values are 5 and 13.
-#define WL_WEP_KEY_MAX_LENGTH 13
-// Size of a MAC-address or BSSID
-#define WL_MAC_ADDR_LENGTH 6
-// Size of a MAC-address or BSSID
-#define WL_IPV4_LENGTH 4
-// Maximum size of a SSID list
-#define WL_NETWORKS_LIST_MAXNUM 10
-// Maxmium number of socket
-#define MAX_SOCK_NUM 4
-// Default state value for Wifi state field
-#define NA_STATE -1
-//Maximum number of attempts to establish wifi connection
-#define WL_MAX_ATTEMPT_CONNECTION 10
-
-typedef enum {
- WL_NO_SHIELD = 255,
- WL_IDLE_STATUS = 0,
- WL_NO_SSID_AVAIL,
- WL_SCAN_COMPLETED,
- WL_CONNECTED,
- WL_CONNECT_FAILED,
- WL_CONNECTION_LOST,
- WL_DISCONNECTED
-} wl_status_t;
-
-/* Encryption modes */
-enum wl_enc_type { /* Values map to 802.11 encryption suites... */
- ENC_TYPE_WEP = 5,
- ENC_TYPE_TKIP = 2,
- ENC_TYPE_CCMP = 4,
- /* ... except these two, 7 and 8 are reserved in 802.11-2007 */
- ENC_TYPE_NONE = 7,
- ENC_TYPE_AUTO = 8
-};
-
-
-#endif /* WL_DEFINITIONS_H_ */