blob: ccd2d9da7c9c930d0a6dce1d87f6b4da6c0b75e3 [file] [log] [blame]
/*
* Driver interface for RADIUS server or WPS ER only (no driver)
* Copyright (c) 2008, Atheros Communications
*
* This software may be distributed under the terms of the BSD license.
* See README for more details.
*/
#include "includes.h"
#include "common.h"
#include "driver.h"
struct none_driver_data {
struct hostapd_data *hapd;
void *ctx;
};
static void * none_driver_hapd_init(struct hostapd_data *hapd,
struct wpa_init_params *params)
{
struct none_driver_data *drv;
drv = os_zalloc(sizeof(struct none_driver_data));
if (drv == NULL) {
wpa_printf(MSG_ERROR, "Could not allocate memory for none "
"driver data");
return NULL;
}
drv->hapd = hapd;
return drv;
}
static void none_driver_hapd_deinit(void *priv)
{
struct none_driver_data *drv = priv;
os_free(drv);
}
static void * none_driver_init(void *ctx, const char *ifname)
{
struct none_driver_data *drv;
drv = os_zalloc(sizeof(struct none_driver_data));
if (drv == NULL) {
wpa_printf(MSG_ERROR, "Could not allocate memory for none "
"driver data");
return NULL;
}
drv->ctx = ctx;
return drv;
}
static void none_driver_deinit(void *priv)
{
struct none_driver_data *drv = priv;
os_free(drv);
}
const struct wpa_driver_ops wpa_driver_none_ops = {
.name = "none",
.desc = "no driver (RADIUS server/WPS ER)",
.hapd_init = none_driver_hapd_init,
.hapd_deinit = none_driver_hapd_deinit,
.init = none_driver_init,
.deinit = none_driver_deinit,
};