DA: Skip initializing failed_bssids list when eapol failure case
[platform/upstream/connman.git] / include / technology.h
old mode 100644 (file)
new mode 100755 (executable)
index b13d4ec..d47f566
@@ -34,18 +34,37 @@ extern "C" {
  * @short_description: Functions for handling technology details
  */
 
-struct connman_technology;
+#if defined TIZEN_EXT
+typedef enum {
+       CONNMAN_MULTI_SCAN_SSID = 0x01,
+       CONNMAN_MULTI_SCAN_FREQ,
+       CONNMAN_MULTI_SCAN_SSID_FREQ,
+} connman_multi_scan_type_e;
+
+typedef enum {
+       CONNMAN_SCAN_TYPE_FULL_CHANNEL = 0x00,
+       CONNMAN_SCAN_TYPE_SPECIFIC_AP,
+       CONNMAN_SCAN_TYPE_MULTI_AP,
+       CONNMAN_SCAN_TYPE_WPA_SUPPLICANT,
+       CONNMAN_SCAN_TYPE_UNKNOWN,
+} connman_scan_type_e;
+
+typedef struct {
+       char str[128];
+       gboolean flag;
+} connman_multi_scan_ap_s;
+#endif
 
-int connman_technology_tethering_add_station(enum connman_service_type type,
-                                             const char *mac);
-int connman_technology_tethering_remove_station(const char *mac);
+struct connman_technology;
 
-void connman_technology_tethering_notify(struct connman_technology *technology,
+int connman_technology_tethering_notify(struct connman_technology *technology,
                                                        bool enabled);
 int connman_technology_set_regdom(const char *alpha2);
 void connman_technology_regdom_notify(struct connman_technology *technology,
                                                        const char *alpha2);
 
+enum connman_service_type connman_technology_get_type
+                               (struct connman_technology *technology);
 bool connman_technology_get_wifi_tethering(const char **ssid,
                                                        const char **psk);
 bool connman_technology_is_tethering_allowed(enum connman_service_type type);
@@ -70,6 +89,14 @@ struct connman_technology_driver {
 
 int connman_technology_driver_register(struct connman_technology_driver *driver);
 void connman_technology_driver_unregister(struct connman_technology_driver *driver);
+#if defined TIZEN_EXT
+const char *connman_techonology_get_path(enum connman_service_type type);
+void __connman_technology_notify_scan_done(const char *ifname, int val);
+void __connman_technology_append_interfaces(DBusMessageIter *array,
+                               enum connman_service_type type, const char *ifname);
+void __connman_technology_notify_roaming_state(const char *ifname,
+               const char *state, const char *cur_bssid, const char *dst_bssid);
+#endif
 
 #ifdef __cplusplus
 }