mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-17 11:31:01 +02:00
wpa2 enterprise: update wifi lib and add wpa2_printf
This commit is contained in:
Submodule components/esp32/lib updated: 60ae2940df...1ef5197246
@@ -78,6 +78,15 @@ int wpa_printf(const char* format, ...)
|
|||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int wpa2_printf(const char* format, ...)
|
||||||
|
{
|
||||||
|
va_list arg;
|
||||||
|
va_start(arg, format);
|
||||||
|
int res = lib_printf("wpa2", format, arg);
|
||||||
|
va_end(arg);
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
int wps_printf(const char* format, ...)
|
int wps_printf(const char* format, ...)
|
||||||
{
|
{
|
||||||
va_list arg;
|
va_list arg;
|
||||||
|
Reference in New Issue
Block a user