diff options
author | Mohamed Abbas <mohamed.abbas@intel.com> | 2011-09-13 09:55:14 +0300 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-09-13 10:53:33 +0200 |
commit | ff76ad35726a05cd5bf66ab09c2681f3bee8912d (patch) | |
tree | f9c9622cadc47fa832a390dcdb3596d074d1b0f0 /include/device.h | |
parent | f5af5715d88a0525e6bc6323d196bd78680e67d1 (diff) | |
download | connman-ff76ad35726a05cd5bf66ab09c2681f3bee8912d.tar.gz connman-ff76ad35726a05cd5bf66ab09c2681f3bee8912d.tar.bz2 connman-ff76ad35726a05cd5bf66ab09c2681f3bee8912d.zip |
wifi: Add support to multi scan type
Allow multi scan type for fast connect.
Scanning request removed from interface_added() because it is already
called in connman_device_set_powered() so no need to call it again
immediately (fix by Jukka Rissanen <jukka.rissanen@linux.intel.com>)
Diffstat (limited to 'include/device.h')
-rw-r--r-- | include/device.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/device.h b/include/device.h index d4f54ece..3749a202 100644 --- a/include/device.h +++ b/include/device.h @@ -108,6 +108,7 @@ struct connman_device_driver { int (*enable) (struct connman_device *device); int (*disable) (struct connman_device *device); int (*scan) (struct connman_device *device); + int (*scan_fast) (struct connman_device *device); }; int connman_device_driver_register(struct connman_device_driver *driver); |