3 * WPA supplicant library with GLib integration
5 * Copyright (C) 2012-2013 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #ifndef __G_SUPPLICANT_H
22 #define __G_SUPPLICANT_H
28 #define G_SUPPLICANT_EAP_METHOD_MD5 (1 << 0)
29 #define G_SUPPLICANT_EAP_METHOD_TLS (1 << 1)
30 #define G_SUPPLICANT_EAP_METHOD_MSCHAPV2 (1 << 2)
31 #define G_SUPPLICANT_EAP_METHOD_PEAP (1 << 3)
32 #define G_SUPPLICANT_EAP_METHOD_TTLS (1 << 4)
33 #define G_SUPPLICANT_EAP_METHOD_GTC (1 << 5)
34 #define G_SUPPLICANT_EAP_METHOD_OTP (1 << 6)
35 #define G_SUPPLICANT_EAP_METHOD_LEAP (1 << 7)
36 #define G_SUPPLICANT_EAP_METHOD_WSC (1 << 8)
38 #define G_SUPPLICANT_CAPABILITY_AUTHALG_OPEN (1 << 0)
39 #define G_SUPPLICANT_CAPABILITY_AUTHALG_SHARED (1 << 1)
40 #define G_SUPPLICANT_CAPABILITY_AUTHALG_LEAP (1 << 2)
42 #define G_SUPPLICANT_CAPABILITY_PROTO_WPA (1 << 0)
43 #define G_SUPPLICANT_CAPABILITY_PROTO_RSN (1 << 1)
45 #define G_SUPPLICANT_CAPABILITY_SCAN_ACTIVE (1 << 0)
46 #define G_SUPPLICANT_CAPABILITY_SCAN_PASSIVE (1 << 1)
47 #define G_SUPPLICANT_CAPABILITY_SCAN_SSID (1 << 2)
49 #define G_SUPPLICANT_CAPABILITY_MODE_INFRA (1 << 0)
50 #define G_SUPPLICANT_CAPABILITY_MODE_IBSS (1 << 1)
51 #define G_SUPPLICANT_CAPABILITY_MODE_AP (1 << 2)
52 #define G_SUPPLICANT_CAPABILITY_MODE_P2P (1 << 3)
53 #if defined TIZEN_EXT_WIFI_MESH
54 #define G_SUPPLICANT_CAPABILITY_MODE_MESH (1 << 4)
57 #define G_SUPPLICANT_KEYMGMT_NONE (1 << 0)
58 #define G_SUPPLICANT_KEYMGMT_IEEE8021X (1 << 1)
59 #define G_SUPPLICANT_KEYMGMT_WPA_NONE (1 << 2)
60 #define G_SUPPLICANT_KEYMGMT_WPA_PSK (1 << 3)
61 #define G_SUPPLICANT_KEYMGMT_WPA_PSK_256 (1 << 4)
63 #define G_SUPPLICANT_KEYMGMT_WPA_FT_EAP (1 << 5)
64 #define G_SUPPLICANT_KEYMGMT_WPA_FT_PSK (1 << 6)
66 #define G_SUPPLICANT_KEYMGMT_WPA_FT_PSK (1 << 5)
67 #define G_SUPPLICANT_KEYMGMT_WPA_FT_EAP (1 << 6)
69 #define G_SUPPLICANT_KEYMGMT_WPA_EAP (1 << 7)
70 #define G_SUPPLICANT_KEYMGMT_WPA_EAP_256 (1 << 8)
71 #define G_SUPPLICANT_KEYMGMT_WPS (1 << 9)
73 #define G_SUPPLICANT_KEYMGMT_SAE (1 << 10)
74 #define G_SUPPLICANT_KEYMGMT_OWE (1 << 22)
75 #define G_SUPPLICANT_KEYMGMT_DPP (1 << 23)
78 #define G_SUPPLICANT_PROTO_WPA (1 << 0)
79 #define G_SUPPLICANT_PROTO_RSN (1 << 1)
81 #define G_SUPPLICANT_GROUP_WEP40 (1 << 0)
82 #define G_SUPPLICANT_GROUP_WEP104 (1 << 1)
83 #define G_SUPPLICANT_GROUP_TKIP (1 << 2)
84 #define G_SUPPLICANT_GROUP_CCMP (1 << 3)
86 #define G_SUPPLICANT_PAIRWISE_NONE (1 << 0)
87 #define G_SUPPLICANT_PAIRWISE_TKIP (1 << 1)
88 #define G_SUPPLICANT_PAIRWISE_CCMP (1 << 2)
90 #define G_SUPPLICANT_WPS_CONFIGURED (1 << 0)
91 #define G_SUPPLICANT_WPS_PBC (1 << 1)
92 #define G_SUPPLICANT_WPS_PIN (1 << 2)
93 #define G_SUPPLICANT_WPS_REGISTRAR (1 << 3)
95 #define G_SUPPLICANT_WPS_CONFIG_PBC 0x0080
97 #define G_SUPPLICANT_GROUP_ROLE_CLIENT (1 << 0)
98 #define G_SUPPLICANT_GROUP_ROLE_GO (1 << 1)
101 G_SUPPLICANT_MODE_UNKNOWN,
102 G_SUPPLICANT_MODE_INFRA,
103 G_SUPPLICANT_MODE_IBSS,
104 G_SUPPLICANT_MODE_MASTER,
105 #if defined TIZEN_EXT_WIFI_MESH
106 G_SUPPLICANT_MODE_MESH,
110 #if defined TIZEN_EXT_WIFI_MESH
112 G_SUPPLICANT_IEEE80211W_UNKNOWN,
113 G_SUPPLICANT_IEEE80211W_OPTIONAL,
114 G_SUPPLICANT_IEEE80211W_REQUIRED,
119 G_SUPPLICANT_SECURITY_UNKNOWN,
120 G_SUPPLICANT_SECURITY_NONE,
121 G_SUPPLICANT_SECURITY_WEP,
122 G_SUPPLICANT_SECURITY_PSK,
123 G_SUPPLICANT_SECURITY_IEEE8021X,
124 #if defined TIZEN_EXT
125 G_SUPPLICANT_SECURITY_FT_PSK,
126 G_SUPPLICANT_SECURITY_FT_IEEE8021X,
127 G_SUPPLICANT_SECURITY_SAE,
128 G_SUPPLICANT_SECURITY_OWE,
129 G_SUPPLICANT_SECURITY_DPP,
131 } GSupplicantSecurity;
133 #if defined TIZEN_EXT
135 G_SUPPLICANT_EAP_KEYMGMT_NONE,
136 G_SUPPLICANT_EAP_KEYMGMT_FT,
137 G_SUPPLICANT_EAP_KEYMGMT_CCKM,
138 G_SUPPLICANT_EAP_KEYMGMT_OKC,
139 } GSupplicantEapKeymgmt;
142 G_SUPPLICANT_MODE_IEEE80211_UNKNOWN,
143 G_SUPPLICANT_MODE_IEEE80211B,
144 G_SUPPLICANT_MODE_IEEE80211BG,
145 G_SUPPLICANT_MODE_IEEE80211BGN,
146 G_SUPPLICANT_MODE_IEEE80211A,
147 G_SUPPLICANT_MODE_IEEE80211AN,
148 G_SUPPLICANT_MODE_IEEE80211ANAC,
149 } GSupplicantPhy_mode;
153 G_SUPPLICANT_STATE_UNKNOWN,
154 G_SUPPLICANT_STATE_DISABLED,
155 G_SUPPLICANT_STATE_DISCONNECTED,
156 G_SUPPLICANT_STATE_INACTIVE,
157 G_SUPPLICANT_STATE_SCANNING,
158 G_SUPPLICANT_STATE_AUTHENTICATING,
159 G_SUPPLICANT_STATE_ASSOCIATING,
160 G_SUPPLICANT_STATE_ASSOCIATED,
161 G_SUPPLICANT_STATE_4WAY_HANDSHAKE,
162 G_SUPPLICANT_STATE_GROUP_HANDSHAKE,
163 G_SUPPLICANT_STATE_COMPLETED,
167 G_SUPPLICANT_WPS_STATE_UNKNOWN,
168 G_SUPPLICANT_WPS_STATE_SUCCESS,
169 G_SUPPLICANT_WPS_STATE_FAIL,
170 } GSupplicantWpsState;
173 G_SUPPLICANT_PEER_SERVICES_CHANGED,
174 G_SUPPLICANT_PEER_GROUP_CHANGED,
175 G_SUPPLICANT_PEER_GROUP_STARTED,
176 G_SUPPLICANT_PEER_GROUP_FINISHED,
177 G_SUPPLICANT_PEER_GROUP_JOINED,
178 G_SUPPLICANT_PEER_GROUP_DISCONNECTED,
179 G_SUPPLICANT_PEER_GROUP_FAILED,
180 } GSupplicantPeerState;
182 #if defined TIZEN_EXT
184 G_SUPPLICANT_INS_PREFERRED_FREQ_UNKNOWN,
185 G_SUPPLICANT_INS_PREFERRED_FREQ_24GHZ,
186 G_SUPPLICANT_INS_PREFERRED_FREQ_5GHZ,
187 } GSupplicantINSPreferredFreq;
190 struct _GSupplicantSSID {
191 #if defined TIZEN_EXT
196 unsigned int ssid_len;
197 unsigned int scan_ssid;
198 GSupplicantMode mode;
199 GSupplicantSecurity security;
200 unsigned int protocol;
201 unsigned int pairwise_cipher;
202 unsigned int group_cipher;
205 const char *passphrase;
206 const char *identity;
207 const char *anonymous_identity;
208 const char *ca_cert_path;
209 const char *subject_match;
210 const char *altsubject_match;
211 const char *domain_suffix_match;
212 const char *domain_match;
213 const char *client_cert_path;
214 const char *private_key_path;
215 const char *private_key_passphrase;
216 const char *phase2_auth;
220 #if defined TIZEN_EXT
221 unsigned char *bssid;
222 unsigned int bssid_for_connect_len;
223 unsigned char bssid_for_connect[6];
224 GSupplicantEapKeymgmt eap_keymgmt;
226 const char *pac_file;
228 unsigned int keymgmt;
229 const char *connector;
230 const char *c_sign_key;
231 const char *net_access_key;
235 typedef struct _GSupplicantSSID GSupplicantSSID;
238 * Max number of SSIDs that can be scanned.
239 * In wpa_s 0.7x the limit is 4.
240 * In wps_s 0.8 or later it is 16.
241 * The value is only used if wpa_supplicant does not return any max limit
242 * for number of scannable SSIDs.
244 #define WPAS_MAX_SCAN_SSIDS 4
247 unsigned char ssid[32];
251 struct _GSupplicantScanParams {
260 typedef struct _GSupplicantScanParams GSupplicantScanParams;
262 struct _GSupplicantPeerParams {
268 typedef struct _GSupplicantPeerParams GSupplicantPeerParams;
270 struct _GSupplicantP2PServiceParams {
273 unsigned char *query;
275 unsigned char *response;
277 unsigned char *wfd_ies;
281 typedef struct _GSupplicantP2PServiceParams GSupplicantP2PServiceParams;
284 typedef void (*GSupplicantCountryCallback) (int result,
288 int g_supplicant_set_country(const char *alpha2,
289 GSupplicantCountryCallback callback,
290 const void *user_data);
293 struct _GSupplicantInterface;
294 struct _GSupplicantPeer;
296 typedef struct _GSupplicantInterface GSupplicantInterface;
297 typedef struct _GSupplicantPeer GSupplicantPeer;
298 #if defined TIZEN_EXT_WIFI_MESH
299 typedef struct _GSupplicantMeshPeer GSupplicantMeshPeer;
302 typedef void (*GSupplicantInterfaceCallback) (int result,
303 GSupplicantInterface *interface,
306 #if defined TIZEN_EXT
307 typedef void (*GSupplicantMaxSpeedCallback) (int result, int maxspeed,
308 int strength, int snr, void *user_data);
311 void g_supplicant_interface_cancel(GSupplicantInterface *interface);
313 int g_supplicant_interface_create(const char *ifname, const char *driver,
316 unsigned int mac_policy,
317 unsigned int preassoc_mac_policy,
318 unsigned int random_mac_lifetime,
319 #endif /* TIZEN_EXT */
320 GSupplicantInterfaceCallback callback,
322 int g_supplicant_interface_remove(GSupplicantInterface *interface,
323 GSupplicantInterfaceCallback callback,
325 int g_supplicant_interface_scan(GSupplicantInterface *interface,
326 GSupplicantScanParams *scan_data,
327 GSupplicantInterfaceCallback callback,
330 #if defined TIZEN_EXT
331 int g_supplicant_interface_signalpoll(GSupplicantInterface *interface,
332 GSupplicantMaxSpeedCallback callback,
336 int g_supplicant_interface_p2p_find(GSupplicantInterface *interface,
337 GSupplicantInterfaceCallback callback,
340 int g_supplicant_interface_p2p_stop_find(GSupplicantInterface *interface);
342 int g_supplicant_interface_p2p_connect(GSupplicantInterface *interface,
343 GSupplicantPeerParams *peer_params,
344 GSupplicantInterfaceCallback callback,
347 int g_supplicant_interface_p2p_disconnect(GSupplicantInterface *interface,
348 GSupplicantPeerParams *peer_params);
350 int g_supplicant_interface_p2p_listen(GSupplicantInterface *interface,
351 int period, int interval);
353 int g_supplicant_interface_p2p_add_service(GSupplicantInterface *interface,
354 GSupplicantInterfaceCallback callback,
355 GSupplicantP2PServiceParams *p2p_service_params,
358 int g_supplicant_interface_p2p_del_service(GSupplicantInterface *interface,
359 GSupplicantP2PServiceParams *p2p_service_params);
361 int g_supplicant_set_widi_ies(GSupplicantP2PServiceParams *p2p_service_params,
362 GSupplicantInterfaceCallback callback,
365 int g_supplicant_interface_connect(GSupplicantInterface *interface,
366 GSupplicantSSID *ssid,
367 GSupplicantInterfaceCallback callback,
370 int g_supplicant_interface_disconnect(GSupplicantInterface *interface,
371 GSupplicantInterfaceCallback callback,
374 int g_supplicant_interface_set_bss_expiration_age(GSupplicantInterface *interface,
375 unsigned int bss_expiration_age);
377 int g_supplicant_interface_set_apscan(GSupplicantInterface *interface,
378 unsigned int ap_scan);
380 void g_supplicant_interface_set_data(GSupplicantInterface *interface,
382 void *g_supplicant_interface_get_data(GSupplicantInterface *interface);
383 const char *g_supplicant_interface_get_ifname(GSupplicantInterface *interface);
384 #if defined TIZEN_EXT
385 bool g_supplicant_interface_get_is_5_0_ghz_supported(GSupplicantInterface *interface);
387 typedef void (*GSupplicantMacPolicyCallback) (int result, unsigned int policy, void *user_data);
388 int g_supplicant_interface_set_mac_policy(GSupplicantInterface *interface,
389 GSupplicantMacPolicyCallback callback,
393 int g_supplicant_interface_set_preassoc_mac_policy(GSupplicantInterface *interface,
394 GSupplicantMacPolicyCallback callback,
398 typedef void (*GSupplicantRandomMaclifetimeCallback) (int result, unsigned int lifetime, void *user_data);
399 int g_supplicant_interface_set_random_mac_lifetime(GSupplicantInterface *interface,
400 GSupplicantRandomMaclifetimeCallback callback,
401 unsigned int lifetime,
404 const char *g_supplicant_interface_get_driver(GSupplicantInterface *interface);
405 GSupplicantState g_supplicant_interface_get_state(GSupplicantInterface *interface);
406 const char *g_supplicant_interface_get_wps_key(GSupplicantInterface *interface);
407 const void *g_supplicant_interface_get_wps_ssid(GSupplicantInterface *interface,
408 unsigned int *ssid_len);
409 GSupplicantWpsState g_supplicant_interface_get_wps_state(GSupplicantInterface *interface);
410 unsigned int g_supplicant_interface_get_mode(GSupplicantInterface *interface);
411 dbus_bool_t g_supplicant_interface_get_ready(GSupplicantInterface *interface);
412 unsigned int g_supplicant_interface_get_max_scan_ssids(
413 GSupplicantInterface *interface);
415 int g_supplicant_interface_enable_selected_network(GSupplicantInterface *interface,
417 int g_supplicant_interface_set_country(GSupplicantInterface *interface,
418 GSupplicantCountryCallback callback,
421 bool g_supplicant_interface_has_p2p(GSupplicantInterface *interface);
422 int g_supplicant_interface_set_p2p_device_config(GSupplicantInterface *interface,
423 const char *device_name,
424 const char *primary_dev_type);
425 GSupplicantPeer *g_supplicant_interface_peer_lookup(GSupplicantInterface *interface,
426 const char *identifier);
427 bool g_supplicant_interface_is_p2p_finding(GSupplicantInterface *interface);
429 #if defined TIZEN_EXT_WIFI_MESH
430 bool g_supplicant_interface_has_mesh(GSupplicantInterface *interface);
431 int g_supplicant_mesh_interface_create(const char *ifname, const char *driver,
432 const char *bridge, const char *parent_ifname,
433 GSupplicantInterfaceCallback callback, void *user_data);
434 const void *g_supplicant_interface_get_mesh_group_ssid(
435 GSupplicantInterface *interface,
436 unsigned int *ssid_len);
437 int g_supplicant_mesh_get_disconnect_reason(GSupplicantInterface *interface);
438 const char *g_supplicant_mesh_peer_get_address(GSupplicantMeshPeer *mesh_peer);
439 int g_supplicant_mesh_peer_get_disconnect_reason(
440 GSupplicantMeshPeer *mesh_peer);
441 int g_supplicant_interface_abort_scan(GSupplicantInterface *interface,
442 GSupplicantInterfaceCallback callback, void *user_data);
443 int g_supplicant_interface_mesh_peer_change_status(
444 GSupplicantInterface *interface,
445 GSupplicantInterfaceCallback callback, const char *peer_address,
446 const char *method, void *user_data);
449 /* Network and Peer API */
450 struct _GSupplicantNetwork;
451 struct _GSupplicantGroup;
453 typedef struct _GSupplicantNetwork GSupplicantNetwork;
454 typedef struct _GSupplicantGroup GSupplicantGroup;
456 GSupplicantInterface *g_supplicant_network_get_interface(GSupplicantNetwork *network);
457 const char *g_supplicant_network_get_name(GSupplicantNetwork *network);
458 const char *g_supplicant_network_get_identifier(GSupplicantNetwork *network);
459 const char *g_supplicant_network_get_path(GSupplicantNetwork *network);
460 const void *g_supplicant_network_get_ssid(GSupplicantNetwork *network,
461 unsigned int *ssid_len);
462 const char *g_supplicant_network_get_mode(GSupplicantNetwork *network);
463 const char *g_supplicant_network_get_security(GSupplicantNetwork *network);
464 dbus_int16_t g_supplicant_network_get_signal(GSupplicantNetwork *network);
465 dbus_uint16_t g_supplicant_network_get_frequency(GSupplicantNetwork *network);
466 dbus_bool_t g_supplicant_network_get_wps(GSupplicantNetwork *network);
467 dbus_bool_t g_supplicant_network_is_wps_active(GSupplicantNetwork *network);
468 dbus_bool_t g_supplicant_network_is_wps_pbc(GSupplicantNetwork *network);
469 dbus_bool_t g_supplicant_network_is_wps_advertizing(GSupplicantNetwork *network);
471 GSupplicantInterface *g_supplicant_peer_get_interface(GSupplicantPeer *peer);
472 const char *g_supplicant_peer_get_path(GSupplicantPeer *peer);
473 const char *g_supplicant_peer_get_identifier(GSupplicantPeer *peer);
474 const void *g_supplicant_peer_get_device_address(GSupplicantPeer *peer);
475 const void *g_supplicant_peer_get_iface_address(GSupplicantPeer *peer);
476 const char *g_supplicant_peer_get_name(GSupplicantPeer *peer);
477 const unsigned char *g_supplicant_peer_get_widi_ies(GSupplicantPeer *peer,
479 bool g_supplicant_peer_is_wps_pbc(GSupplicantPeer *peer);
480 bool g_supplicant_peer_is_wps_pin(GSupplicantPeer *peer);
481 bool g_supplicant_peer_is_in_a_group(GSupplicantPeer *peer);
482 GSupplicantInterface *g_supplicant_peer_get_group_interface(GSupplicantPeer *peer);
483 bool g_supplicant_peer_is_client(GSupplicantPeer *peer);
484 bool g_supplicant_peer_has_requested_connection(GSupplicantPeer *peer);
486 #if defined TIZEN_EXT
488 * Description: Network client requires additional wifi specific info
490 const unsigned char *g_supplicant_network_get_bssid(
491 GSupplicantNetwork *network);
492 unsigned int g_supplicant_network_get_maxrate(GSupplicantNetwork *network);
493 const char *g_supplicant_network_get_enc_mode(GSupplicantNetwork *network);
494 bool g_supplicant_network_get_rsn_mode(GSupplicantNetwork *network);
495 bool g_supplicant_network_is_hs20AP(GSupplicantNetwork *network);
496 const char *g_supplicant_network_get_eap(GSupplicantNetwork *network);
497 const char *g_supplicant_network_get_identity(GSupplicantNetwork *network);
498 const char *g_supplicant_network_get_phase2(GSupplicantNetwork *network);
499 unsigned int g_supplicant_network_get_keymgmt(GSupplicantNetwork *network);
500 dbus_bool_t g_supplicant_network_get_privacy(GSupplicantNetwork *network);
501 void *g_supplicant_network_get_wifi_vsie(GSupplicantNetwork *network);
502 const unsigned char *g_supplicant_network_get_countrycode(GSupplicantNetwork
504 void *g_supplicant_network_get_bssid_list(GSupplicantNetwork *network);
505 GSupplicantPhy_mode g_supplicant_network_get_phy_mode(GSupplicantNetwork *network);
506 dbus_bool_t g_supplicant_network_get_transition_mode(GSupplicantNetwork *network);
507 const unsigned char *g_supplicant_network_get_transition_mode_bssid(GSupplicantNetwork *network);
508 const void *g_supplicant_network_get_transition_mode_ssid(GSupplicantNetwork *network,
509 unsigned int *transition_mode_ssid_len);
512 #if defined TIZEN_EXT
513 void g_supplicant_network_set_last_connected_bssid(GSupplicantNetwork *network, const unsigned char *bssid);
514 const unsigned char *g_supplicant_network_get_last_connected_bssid(GSupplicantNetwork *network);
515 void g_supplicant_network_update_assoc_reject(GSupplicantInterface *interface,
516 GSupplicantNetwork *network);
517 GHashTable *g_supplicant_network_get_assoc_reject_table(GSupplicantNetwork *network);
518 GSupplicantNetwork *g_supplicant_interface_get_network(GSupplicantInterface *interface,
522 #if defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET
523 typedef void (*g_supplicant_eap_callback)(GSupplicantInterface *interface, bool status);
524 #endif /* defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET */
526 struct _GSupplicantCallbacks {
527 void (*system_ready) (void);
528 void (*system_killed) (void);
529 void (*interface_added) (GSupplicantInterface *interface);
530 void (*interface_state) (GSupplicantInterface *interface);
531 void (*interface_removed) (GSupplicantInterface *interface);
532 void (*p2p_support) (GSupplicantInterface *interface);
533 void (*scan_started) (GSupplicantInterface *interface);
534 void (*scan_finished) (GSupplicantInterface *interface);
535 void (*ap_create_fail) (GSupplicantInterface *interface);
536 void (*network_added) (GSupplicantNetwork *network);
537 void (*network_removed) (GSupplicantNetwork *network);
538 #if defined TIZEN_EXT
539 void (*network_merged) (GSupplicantNetwork *network);
541 void (*network_changed) (GSupplicantNetwork *network,
542 const char *property);
543 void (*network_associated) (GSupplicantNetwork *network);
544 #if defined TIZEN_EXT
545 void (*system_power_off) (void);
546 void (*assoc_failed) (void *user_data);
547 void (*scan_done) (GSupplicantInterface *interface);
549 void (*sta_authorized) (GSupplicantInterface *interface,
551 void (*sta_deauthorized) (GSupplicantInterface *interface,
553 void (*peer_found) (GSupplicantPeer *peer);
554 void (*peer_lost) (GSupplicantPeer *peer);
555 void (*peer_changed) (GSupplicantPeer *peer,
556 GSupplicantPeerState state);
557 void (*peer_request) (GSupplicantPeer *peer);
558 void (*debug) (const char *str);
559 void (*disconnect_reasoncode)(GSupplicantInterface *interface,
561 void (*assoc_status_code)(GSupplicantInterface *interface,
563 #if defined TIZEN_EXT_WIFI_MESH
564 void (*mesh_support) (GSupplicantInterface *interface);
565 void (*mesh_group_started) (GSupplicantInterface *interface);
566 void (*mesh_group_removed) (GSupplicantInterface *interface);
567 void (*mesh_peer_connected) (GSupplicantMeshPeer *mesh_peer);
568 void (*mesh_peer_disconnected) (GSupplicantMeshPeer *mesh_peer);
571 #if defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET
572 g_supplicant_eap_callback eap;
573 #endif /* defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET */
576 typedef struct _GSupplicantCallbacks GSupplicantCallbacks;
578 #if defined TIZEN_EXT && defined TIZEN_EXT_INS
579 void g_supplicant_set_ins_settings(GSupplicantINSPreferredFreq preferred_freq_bssid,
580 bool last_connected_bssid, bool assoc_reject, bool signal_bssid,
581 unsigned int preferred_freq_bssid_score, unsigned int last_connected_bssid_score,
582 unsigned int assoc_reject_score, int signal_level3_5ghz, int signal_level3_24ghz);
583 #endif /* defined TIZEN_EXT && defined TIZEN_EXT_INS */
585 #if defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET
586 void g_supplicant_replace_config_file(const char *ifname, const char *config_file);
587 void g_supplicant_register_eap_callback(g_supplicant_eap_callback cb);
588 void g_supplicant_unregister_eap_callback(void);
589 #endif /* defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET */
591 #if defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET
592 int g_supplicant_register(GSupplicantCallbacks *callbacks);
593 #else /* defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET */
594 int g_supplicant_register(const GSupplicantCallbacks *callbacks);
595 #endif /* defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET */
596 void g_supplicant_unregister(const GSupplicantCallbacks *callbacks);
599 void g_supplicant_free_scan_params(GSupplicantScanParams *scan_params)
601 g_slist_free_full(scan_params->ssids, g_free);
602 g_free(scan_params->freqs);
610 #endif /* __G_SUPPLICANT_H */