mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
wpa2 enterprise: update wifi lib and add wpa2_printf
This commit is contained in:
parent
0dbc11e37d
commit
1818af1c3e
@ -1 +1 @@
|
|||||||
Subproject commit 60ae2940dfdca8c8279128bee8bf7716356d864b
|
Subproject commit 1ef5197246db363681ca78c1e3edc2d2cca92bbe
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user