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

/freebsd-11-stable/contrib/wpa/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...]
/freebsd-11-stable/contrib/wpa/hostapd/
H A Dctrl_iface.c68 #define COOKIE_LEN 8 macro
69 static unsigned char cookie[COOKIE_LEN];
70 static unsigned char gcookie[COOKIE_LEN];
3403 unsigned char lcookie[COOKIE_LEN];
3428 wpa_snprintf_hex(reply + 7, 2 * COOKIE_LEN + 1,
3429 cookie, COOKIE_LEN);
3430 reply_len = 7 + 2 * COOKIE_LEN;
3435 hexstr2bin(buf + 7, lcookie, COOKIE_LEN) < 0) {
3442 if (os_memcmp(cookie, lcookie, COOKIE_LEN) != 0) {
3449 pos = buf + 7 + 2 * COOKIE_LEN;
[all...]

Completed in 113 milliseconds