Lines Matching full:uuid
13 #include "utils/uuid.h"
174 char uuid[40], txt[400];
177 if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
179 wpa_printf(MSG_DEBUG, "WPS: PIN needed for E-UUID %s", uuid);
182 uuid, MAC2STR(dev->mac_addr), dev->device_name,
199 t.sec, uuid, MAC2STR(dev->mac_addr), dev->device_name,
231 char uuid[40];
233 if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
236 MAC2STR(mac_addr), uuid);
256 char uuid[40];
258 if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
264 MAC2STR(addr), uuid,
898 const u8 **uuid = ctx;
906 !is_nil_uuid(hapd->wps->uuid)) {
907 *uuid = hapd->wps->uuid;
918 const u8 *uuid;
922 uuid = NULL;
924 &uuid);
925 return uuid;
997 if (is_nil_uuid(hapd->conf->uuid)) {
998 const u8 *uuid;
999 uuid = get_own_uuid(hapd->iface);
1000 if (uuid && !conf->wps_independent) {
1001 os_memcpy(wps->uuid, uuid, UUID_LEN);
1002 wpa_hexdump(MSG_DEBUG, "WPS: Clone UUID from another "
1003 "interface", wps->uuid, UUID_LEN);
1005 uuid_gen_mac_addr(hapd->own_addr, wps->uuid);
1006 wpa_hexdump(MSG_DEBUG, "WPS: UUID based on MAC "
1007 "address", wps->uuid, UUID_LEN);
1010 os_memcpy(wps->uuid, hapd->conf->uuid, UUID_LEN);
1011 wpa_hexdump(MSG_DEBUG, "WPS: Use configured UUID",
1012 wps->uuid, UUID_LEN);
1271 const u8 *uuid;
1287 data->uuid, data->pin, data->pin_len,
1296 const char *uuid, const char *pin, int timeout)
1302 data.uuid = u;
1308 if (os_strcmp(uuid, "any") == 0)
1309 data.uuid = NULL;
1311 if (uuid_str2bin(uuid, u))
1313 data.uuid = u;