summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMayank Haarit <mayank.h@samsung.com>2018-04-20 20:57:32 +0530
committerMayank Haarit <mayank.h@samsung.com>2018-04-20 15:39:29 +0000
commit6c73f51b34fa18a1a9b4582f0e1dfcaee8f2fa5e (patch)
treec1df62ff68b833ec3a00f05617bb77cbdf85c588 /include
parentdce2054780e8142aebe5a7d11c4751040437f7ec (diff)
downloadconnman-6c73f51b34fa18a1a9b4582f0e1dfcaee8f2fa5e.tar.gz
connman-6c73f51b34fa18a1a9b4582f0e1dfcaee8f2fa5e.tar.bz2
connman-6c73f51b34fa18a1a9b4582f0e1dfcaee8f2fa5e.zip
Add BSSID , signal strength and frequency list of the APssubmit/tizen/20180424.084858accepted/tizen/unified/20180425.062309
This patch sends the list of BSSID, signal strength and frequency of an APs having same SSID and Security type. Change-Id: I368d37de310687ca173418dfad91fae7082b2357 Signed-off-by: Mayank Haarit <mayank.h@samsung.com>
Diffstat (limited to 'include')
-rwxr-xr-xinclude/network.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/network.h b/include/network.h
index 63c4e44d..98fa7d7a 100755
--- a/include/network.h
+++ b/include/network.h
@@ -62,6 +62,14 @@ enum connman_network_error {
};
+#if defined TIZEN_EXT
+struct connman_bssids {
+ char bssid[18];
+ uint16_t strength;
+ uint16_t frequency;
+};
+#endif
+
#define CONNMAN_NETWORK_PRIORITY_LOW -100
#define CONNMAN_NETWORK_PRIORITY_DEFAULT 0
#define CONNMAN_NETWORK_PRIORITY_HIGH 100
@@ -160,6 +168,9 @@ int connman_network_set_assoc_status_code(struct connman_network *network,
int connman_network_set_countrycode(struct connman_network *network, const
unsigned char *country_code);
unsigned char *connman_network_get_countrycode(struct connman_network *network);
+int connman_network_set_bssid_list(struct connman_network *network,
+ GSList *bssids);
+void *connman_network_get_bssid_list(struct connman_network *network);
#endif
int connman_network_set_name(struct connman_network *network,