Changeset 1dcc0b9 in mainline for uspace/lib/drv/include/ops/ieee80211.h
- Timestamp:
- 2015-04-06T10:47:51Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d7dadcb4
- Parents:
- 59fa7ab
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/include/ops/ieee80211.h
r59fa7ab r1dcc0b9 47 47 * @param fun IEEE 802.11 function. 48 48 * @param results Structure where to put scan results. 49 * @param now Whether to initiate scan immediately. 49 50 * 50 51 * @return EOK if succeed, negative error code otherwise. 51 52 */ 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); 53 54 54 55 /** 55 56 * Connect IEEE 802.11 device to specified network. 57 * 56 58 * @param fun IEEE 802.11 function. 57 59 * @param ssid Network SSID. … … 61 63 */ 62 64 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 *); 63 74 } ieee80211_iface_t; 64 75
Note:
See TracChangeset
for help on using the changeset viewer.