Ignore:
Timestamp:
2015-04-10T13:52:11Z (9 years ago)
Author:
Jan Kolarik <kolarik@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a931b7b
Parents:
d7dadcb4
Message:

Locking, correctly disconnecting device, sending DHCP address discover after connecting to WiFi network

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ieee80211/include/ieee80211.h

    rd7dadcb4 r053fc2b  
    6060#define IEEE80211_MAX_AMPDU_FACTOR 13
    6161
    62 /* Max passphrase length in WPA/WPA2 protocols. */
    63 #define IEEE80211_WPA_MAX_PASSWORD_LENGTH 64
     62/* Max authentication password length. */
     63#define IEEE80211_MAX_PASSW_LEN 64
    6464
    6565/** IEEE 802.11 b/g supported data rates in units of 500 kb/s. */
     
    139139         *
    140140         * @param ieee80211_dev Pointer to IEEE 802.11 device structure.
    141          *
    142          * @return EOK if succeed, negative error code otherwise.
    143          */
    144         int (*bssid_change)(struct ieee80211_dev *);
     141         * @param connected True if connected to new BSSID, otherwise false.
     142         *
     143         * @return EOK if succeed, negative error code otherwise.
     144         */
     145        int (*bssid_change)(struct ieee80211_dev *, bool);
    145146       
    146147        /**
     
    181182        uint16_t freq);
    182183extern uint16_t ieee80211_get_aid(ieee80211_dev_t* ieee80211_dev);
    183 extern int ieee80211_get_security_suite(ieee80211_dev_t* ieee80211_dev);
     184extern int ieee80211_get_pairwise_security(ieee80211_dev_t* ieee80211_dev);
    184185extern bool ieee80211_is_ready(ieee80211_dev_t* ieee80211_dev);
    185186extern void ieee80211_set_ready(ieee80211_dev_t* ieee80211_dev, bool ready);
Note: See TracChangeset for help on using the changeset viewer.