2014-06-21 13:41:40 +02:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-2014 Intel Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2015-09-29 02:44:26 +02:00
|
|
|
struct netdev;
|
2016-06-14 18:17:43 +02:00
|
|
|
struct scan_bss;
|
|
|
|
struct eapol_sm *sm;
|
|
|
|
|
|
|
|
enum netdev_result {
|
|
|
|
NETDEV_RESULT_OK,
|
|
|
|
NETDEV_RESULT_AUTHENTICATION_FAILED,
|
|
|
|
NETDEV_RESULT_ASSOCIATION_FAILED,
|
|
|
|
NETDEV_RESULT_HANDSHAKE_FAILED,
|
|
|
|
NETDEV_RESULT_KEY_SETTING_FAILED,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum netdev_event {
|
|
|
|
NETDEV_EVENT_AUTHENTICATING,
|
|
|
|
NETDEV_EVENT_ASSOCIATING,
|
|
|
|
NETDEV_EVENT_4WAY_HANDSHAKE,
|
|
|
|
NETDEV_EVENT_SETTING_KEYS,
|
|
|
|
NETDEV_EVENT_LOST_BEACON,
|
2016-06-16 18:21:12 +02:00
|
|
|
NETDEV_EVENT_DISCONNECT_BY_AP,
|
2016-06-14 18:17:43 +02:00
|
|
|
};
|
2015-09-29 02:44:26 +02:00
|
|
|
|
2015-03-27 08:54:24 +01:00
|
|
|
typedef void (*netdev_command_func_t) (bool result, void *user_data);
|
2016-06-14 18:17:43 +02:00
|
|
|
typedef void (*netdev_connect_cb_t)(struct netdev *netdev,
|
|
|
|
enum netdev_result result,
|
|
|
|
void *user_data);
|
|
|
|
typedef void (*netdev_event_func_t)(struct netdev *netdev,
|
|
|
|
enum netdev_event event,
|
|
|
|
void *user_data);
|
2016-06-14 19:15:18 +02:00
|
|
|
typedef void (*netdev_disconnect_cb_t)(struct netdev *netdev, bool result,
|
|
|
|
void *user_data);
|
2016-06-20 12:42:04 +02:00
|
|
|
typedef void (*netdev_watch_func_t)(struct netdev *netdev, bool up,
|
|
|
|
void *user_data);
|
2015-03-27 08:54:24 +01:00
|
|
|
|
2016-06-01 22:27:39 +02:00
|
|
|
const uint8_t *netdev_get_address(struct netdev *netdev);
|
2016-06-01 22:27:05 +02:00
|
|
|
uint32_t netdev_get_ifindex(struct netdev *netdev);
|
2016-06-02 00:04:10 +02:00
|
|
|
uint32_t netdev_get_iftype(struct netdev *netdev);
|
2016-06-02 00:05:56 +02:00
|
|
|
const char *netdev_get_name(struct netdev *netdev);
|
2016-06-20 12:42:03 +02:00
|
|
|
bool netdev_get_is_up(struct netdev *netdev);
|
2016-06-01 22:27:05 +02:00
|
|
|
|
2016-06-14 18:17:43 +02:00
|
|
|
int netdev_connect(struct netdev *netdev, struct scan_bss *bss,
|
|
|
|
struct eapol_sm *sm,
|
|
|
|
netdev_event_func_t event_filter,
|
|
|
|
netdev_connect_cb_t cb, void *user_data);
|
2016-06-14 19:15:18 +02:00
|
|
|
int netdev_disconnect(struct netdev *netdev,
|
|
|
|
netdev_disconnect_cb_t cb, void *user_data);
|
2016-06-14 18:17:43 +02:00
|
|
|
|
2016-06-01 22:35:26 +02:00
|
|
|
struct netdev *netdev_find(int ifindex);
|
|
|
|
|
2016-06-20 12:42:04 +02:00
|
|
|
uint32_t netdev_watch_add(struct netdev *netdev, netdev_watch_func_t func,
|
|
|
|
void *user_data);
|
|
|
|
bool netdev_watch_remove(struct netdev *netdev, uint32_t id);
|
|
|
|
|
2016-06-01 21:58:51 +02:00
|
|
|
bool netdev_init(struct l_genl_family *in);
|
2014-06-21 13:41:40 +02:00
|
|
|
bool netdev_exit(void);
|