Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching refs:sddl

26 /* mingw-w32api v3.1 does not yet include sddl.h, so define needed parts here
44 #include <sddl.h>
392 const char *sddl = NULL;
395 if (os_strncmp(params, "SDDL=", 5) == 0)
396 sddl = params + 5;
397 if (!sddl) {
398 sddl = os_strstr(params, " SDDL=");
399 if (sddl)
400 sddl += 6;
403 if (!sddl)
406 wpa_printf(MSG_DEBUG, "CTRL: SDDL='%s'", sddl);
410 t_sddl = wpa_strdup_tchar(sddl);
418 wpa_printf(MSG_ERROR, "CTRL: SDDL='%s' - could not convert to "
420 sddl, (int) GetLastError());