#include "includes.h"
#include "common.h"
#include "driver.h"
Go to the source code of this file.
Classes | |
struct | none_driver_data |
Functions | |
static void | none_driver_deinit (void *priv) |
static void | none_driver_hapd_deinit (void *priv) |
static void * | none_driver_hapd_init (struct hostapd_data *hapd, struct wpa_init_params *params) |
static void * | none_driver_init (void *ctx, const char *ifname) |
static int | none_driver_send_eapol (void *priv, const u8 *dest, u16 proto, const u8 *data, size_t data_len) |
static int | none_driver_send_ether (void *priv, const u8 *dst, const u8 *src, u16 proto, const u8 *data, size_t data_len) |
Variables | |
struct wpa_driver_ops | wpa_driver_none_ops |
static void none_driver_deinit | ( | void * | priv | ) | [static] |
Definition at line 75 of file driver_none.c.
static void none_driver_hapd_deinit | ( | void * | priv | ) | [static] |
Definition at line 44 of file driver_none.c.
static void* none_driver_hapd_init | ( | struct hostapd_data * | hapd, | |
struct wpa_init_params * | params | |||
) | [static] |
Definition at line 27 of file driver_none.c.
static void* none_driver_init | ( | void * | ctx, | |
const char * | ifname | |||
) | [static] |
Definition at line 59 of file driver_none.c.
static int none_driver_send_eapol | ( | void * | priv, | |
const u8 * | dest, | |||
u16 | proto, | |||
const u8 * | data, | |||
size_t | data_len | |||
) | [static] |
Definition at line 83 of file driver_none.c.
static int none_driver_send_ether | ( | void * | priv, | |
const u8 * | dst, | |||
const u8 * | src, | |||
u16 | proto, | |||
const u8 * | data, | |||
size_t | data_len | |||
) | [static] |
Definition at line 52 of file driver_none.c.
{ .name = "none", .desc = "no driver (RADIUS server/WPS ER)", .hapd_init = none_driver_hapd_init, .hapd_deinit = none_driver_hapd_deinit, .send_ether = none_driver_send_ether, .init = none_driver_init, .deinit = none_driver_deinit, .send_eapol = none_driver_send_eapol, }
Definition at line 90 of file driver_none.c.