wpa_supplicant / hostapd  2.5
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Macros | Functions
ctrl_iface_ap.c File Reference

Control interface for shared AP commands. More...

#include "utils/includes.h"
#include "utils/common.h"
#include "common/ieee802_11_defs.h"
#include "common/sae.h"
#include "eapol_auth/eapol_auth_sm.h"
#include "fst/fst_ctrl_iface.h"
#include "hostapd.h"
#include "ieee802_1x.h"
#include "wpa_auth.h"
#include "ieee802_11.h"
#include "sta_info.h"
#include "wps_hostapd.h"
#include "p2p_hostapd.h"
#include "ctrl_iface_ap.h"
#include "ap_drv_ops.h"

Macros

#define SET_CSA_SETTING(str)
 

Functions

int hostapd_ctrl_iface_sta_first (struct hostapd_data *hapd, char *buf, size_t buflen)
 
int hostapd_ctrl_iface_sta (struct hostapd_data *hapd, const char *txtaddr, char *buf, size_t buflen)
 
int hostapd_ctrl_iface_sta_next (struct hostapd_data *hapd, const char *txtaddr, char *buf, size_t buflen)
 
int hostapd_ctrl_iface_deauthenticate (struct hostapd_data *hapd, const char *txtaddr)
 
int hostapd_ctrl_iface_disassociate (struct hostapd_data *hapd, const char *txtaddr)
 
int hostapd_ctrl_iface_status (struct hostapd_data *hapd, char *buf, size_t buflen)
 
int hostapd_parse_csa_settings (const char *pos, struct csa_settings *settings)
 
int hostapd_ctrl_iface_stop_ap (struct hostapd_data *hapd)
 

Detailed Description

Control interface for shared AP commands.

Macro Definition Documentation

#define SET_CSA_SETTING (   str)
Value:
do { \
const char *pos2 = os_strstr(pos, " " #str "="); \
if (pos2) { \
pos2 += sizeof(" " #str "=") - 1; \
settings->freq_params.str = atoi(pos2); \
} \
} while (0)