mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-01-03 19:02:34 +01:00
eapol: Make global variables static
This commit is contained in:
parent
884dcbab92
commit
f41d85112e
12
src/eapol.c
12
src/eapol.c
@ -41,15 +41,15 @@
|
|||||||
#include "src/watchlist.h"
|
#include "src/watchlist.h"
|
||||||
#include "src/erp.h"
|
#include "src/erp.h"
|
||||||
|
|
||||||
struct l_queue *state_machines;
|
static struct l_queue *state_machines;
|
||||||
struct l_queue *preauths;
|
static struct l_queue *preauths;
|
||||||
struct watchlist frame_watches;
|
static struct watchlist frame_watches;
|
||||||
static uint32_t eapol_4way_handshake_time = 2;
|
static uint32_t eapol_4way_handshake_time = 2;
|
||||||
|
|
||||||
eapol_rekey_offload_func_t rekey_offload = NULL;
|
static eapol_rekey_offload_func_t rekey_offload = NULL;
|
||||||
|
|
||||||
eapol_tx_packet_func_t tx_packet = NULL;
|
static eapol_tx_packet_func_t tx_packet = NULL;
|
||||||
void *tx_user_data;
|
static void *tx_user_data;
|
||||||
|
|
||||||
#define VERIFY_IS_ZERO(field) \
|
#define VERIFY_IS_ZERO(field) \
|
||||||
do { \
|
do { \
|
||||||
|
Loading…
Reference in New Issue
Block a user