Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching full:sddl

20 /* mingw-w32api v3.1 does not yet include sddl.h, so define needed parts here
38 #include <sddl.h>
386 const char *sddl = NULL;
389 if (os_strncmp(params, "SDDL=", 5) == 0)
390 sddl = params + 5;
391 if (!sddl) {
392 sddl = os_strstr(params, " SDDL=");
393 if (sddl)
394 sddl += 6;
397 if (!sddl)
400 wpa_printf(MSG_DEBUG, "CTRL: SDDL='%s'", sddl);
404 t_sddl = wpa_strdup_tchar(sddl);
413 wpa_printf(MSG_ERROR, "CTRL: SDDL='%s' - could not convert to "
415 sddl, (int) GetLastError());