#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/socket.h>
#include <sys/un.h>
#include "common.h"
#include "driver.h"
#include "wpa_supplicant.h"
#include "l2_packet.h"
#include "eloop.h"
#include "sha1.h"
#include "wpa.h"
Include dependency graph for driver_test.c:

Go to the source code of this file.
Variables | |
| const struct wpa_driver_ops | wpa_driver_test_ops |
Alternatively, this software may be distributed under the terms of BSD license.
See README and COPYING for more details.
Definition in file driver_test.c.
|
|
Initial value: {
.name = "test",
.desc = "wpa_supplicant test driver",
.init = wpa_driver_test_init,
.deinit = wpa_driver_test_deinit,
.set_param = wpa_driver_test_set_param,
.set_wpa = wpa_driver_test_set_wpa,
.scan = wpa_driver_test_scan,
.get_scan_results = wpa_driver_test_get_scan_results,
.set_key = wpa_driver_test_set_key,
.associate = wpa_driver_test_associate,
.get_bssid = wpa_driver_test_get_bssid,
.get_ssid = wpa_driver_test_get_ssid,
.get_mac_addr = wpa_driver_test_get_mac_addr,
.send_eapol = wpa_driver_test_send_eapol,
.deauthenticate = wpa_driver_test_deauthenticate,
.disassociate = wpa_driver_test_disassociate,
.get_capa = wpa_driver_test_get_capa,
}
Definition at line 582 of file driver_test.c. |
1.4.2