wpa_supplicant: Add WPS registrar support for softAP mode

This commit is contained in:
Kapil Gupta
2022-05-13 13:32:24 +05:30
parent df1a15e918
commit a6811adac7
37 changed files with 1812 additions and 1740 deletions

View File

@@ -65,14 +65,6 @@ void wpa_debug_print_timestamp(void);
#define wpa_dbg(ctx, level, fmt, args...) wpa_printf(level, fmt, ##args)
void wpa_dump_mem(char* desc, uint8_t *addr, uint16_t len);
static inline void wpa_hexdump_ascii(int level, const char *title, const void *buf, size_t len)
{
}
static inline void wpa_hexdump_ascii_key(int level, const char *title, const void *buf, size_t len)
{
}
/**
* wpa_hexdump - conditional hex dump
@@ -87,6 +79,16 @@ static inline void wpa_hexdump_ascii_key(int level, const char *title, const voi
*/
void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len);
static inline void wpa_hexdump_ascii(int level, const char *title, const void *buf, size_t len)
{
wpa_hexdump(level, title, buf, len);
}
static inline void wpa_hexdump_ascii_key(int level, const char *title, const void *buf, size_t len)
{
wpa_hexdump(level, title, buf, len);
}
static inline void wpa_hexdump_buf(int level, const char *title,
const struct wpabuf *buf)
{
@@ -108,7 +110,6 @@ static inline void wpa_hexdump_buf(int level, const char *title,
*/
void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len);
static inline void wpa_hexdump_buf_key(int level, const char *title,
const struct wpabuf *buf)
{