Ignore:
Timestamp:
2015-04-06T10:47:51Z (10 years ago)
Author:
Jan Kolarik <kolarik@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d7dadcb4
Parents:
59fa7ab
Message:

Scanning whole 2.4GHz spectrum, created supplicant for managing connection between device STA and AP, finished association process between STA and AP, handling 4way handshake protocol used for key management, written needed cryptographic algorithms (AES, SHA1, HMAC, PBKDF2) for CCMP protocol, data communication on OPEN/CCMP networks.

File:
1 edited

Legend:

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

    r59fa7ab r1dcc0b9  
    4747         * @param fun IEEE 802.11 function.
    4848         * @param results Structure where to put scan results.
     49         * @param now Whether to initiate scan immediately.
    4950         *
    5051         * @return EOK if succeed, negative error code otherwise.
    5152         */
    52         int (*get_scan_results)(ddf_fun_t *, ieee80211_scan_results_t *);
     53        int (*get_scan_results)(ddf_fun_t *, ieee80211_scan_results_t *, bool);
    5354       
    5455        /**
    5556         * Connect IEEE 802.11 device to specified network.
     57         *
    5658         * @param fun IEEE 802.11 function.
    5759         * @param ssid Network SSID.
     
    6163         */
    6264        int (*connect)(ddf_fun_t *, char *, char *);
     65       
     66        /**
     67         * Disconnect IEEE 802.11 device from network.
     68         *
     69         * @param fun IEEE 802.11 function.
     70         *
     71         * @return EOK if succeed, negative error code otherwise.
     72         */
     73        int (*disconnect)(ddf_fun_t *);
    6374} ieee80211_iface_t;
    6475
Note: See TracChangeset for help on using the changeset viewer.