⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hostapd.h

📁 一个Linux下无线网卡的设置工具
💻 H
字号:
#ifndef HOSTAPD_H#define HOSTAPD_H/* * Minimal version of hostapd header files for eapol_test to build * radiusclient.c. */#include "common.h"void hostapd_logger(void *ctx, const u8 *addr, unsigned int module, int level,		    char *fmt, ...) __attribute__ ((format (printf, 5, 6)));struct hostapd_ip_addr;const char * hostapd_ip_txt(const struct hostapd_ip_addr *addr, char *buf,			    size_t buflen);;enum {	HOSTAPD_LEVEL_DEBUG_VERBOSE = 0,	HOSTAPD_LEVEL_DEBUG = 1,	HOSTAPD_LEVEL_INFO = 2,	HOSTAPD_LEVEL_NOTICE = 3,	HOSTAPD_LEVEL_WARNING = 4};#ifndef BIT#define BIT(n) (1 << (n))#endif#define HOSTAPD_MODULE_IEEE80211 BIT(0)#define HOSTAPD_MODULE_IEEE8021X BIT(1)#define HOSTAPD_MODULE_RADIUS BIT(2)#define HOSTAPD_MODULE_WPA BIT(3)#define HOSTAPD_MODULE_DRIVER BIT(4)#define HOSTAPD_MODULE_IAPP BIT(5)#endif /* HOSTAPD_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -