diff options
author | Patrik Flykt <patrik.flykt@linux.intel.com> | 2011-12-02 16:18:31 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-12-12 10:44:40 +0100 |
commit | bcb3b14998f3e65680560da0cda2170f72aea342 (patch) | |
tree | 18f425d5790fbe70ef11e930cf300b9b424b0ae4 /include | |
parent | 7715d128662e76e731ed4819e1cd99733d22808a (diff) | |
download | connman-bcb3b14998f3e65680560da0cda2170f72aea342.tar.gz connman-bcb3b14998f3e65680560da0cda2170f72aea342.tar.bz2 connman-bcb3b14998f3e65680560da0cda2170f72aea342.zip |
device: Introduce hidden SSID scan function
Diffstat (limited to 'include')
-rw-r--r-- | include/device.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/device.h b/include/device.h index 3749a202..c1abe89a 100644 --- a/include/device.h +++ b/include/device.h @@ -109,6 +109,9 @@ struct connman_device_driver { int (*disable) (struct connman_device *device); int (*scan) (struct connman_device *device); int (*scan_fast) (struct connman_device *device); + int (*scan_hidden)(struct connman_device *device, + const char *ssid, unsigned int ssid_len, + const char *identity, const char* passphrase); }; int connman_device_driver_register(struct connman_device_driver *driver); |