Searched refs:COOKIE_LEN (Results 1 - 2 of 2) sorted by relevance

/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface_udp.c20 #define COOKIE_LEN 8 macro
48 u8 cookie[COOKIE_LEN];
54 u8 cookie[COOKIE_LEN];
202 reply = os_malloc(7 + 2 * COOKIE_LEN + 1);
209 wpa_snprintf_hex(reply + 7, 2 * COOKIE_LEN + 1,
210 priv->cookie, COOKIE_LEN);
212 *reply_len = 7 + 2 * COOKIE_LEN;
236 u8 cookie[COOKIE_LEN];
288 if (hexstr2bin(buf + 7, cookie, COOKIE_LEN) < 0) {
294 if (os_memcmp(cookie, priv->cookie, COOKIE_LEN) !
[all...]
/external/wpa_supplicant_8/hostapd/
H A Dctrl_iface.c60 #define COOKIE_LEN 8 macro
61 static unsigned char cookie[COOKIE_LEN];
62 static unsigned char gcookie[COOKIE_LEN];
2342 unsigned char lcookie[COOKIE_LEN];
2367 wpa_snprintf_hex(reply + 7, 2 * COOKIE_LEN + 1,
2368 cookie, COOKIE_LEN);
2369 reply_len = 7 + 2 * COOKIE_LEN;
2374 hexstr2bin(buf + 7, lcookie, COOKIE_LEN) < 0) {
2381 if (os_memcmp(cookie, lcookie, COOKIE_LEN) != 0) {
2388 pos = buf + 7 + 2 * COOKIE_LEN;
[all...]

Completed in 54 milliseconds