/hostap-latest/wpa_supplicant/ |
D | ctrl_iface_udp.c | 47 u8 cookie[COOKIE_LEN]; member 53 u8 cookie[COOKIE_LEN]; member 209 priv->cookie, COOKIE_LEN); 235 u8 cookie[COOKIE_LEN]; local 300 if (hexstr2bin(buf + 7, cookie, COOKIE_LEN) < 0) { 307 if (os_memcmp(cookie, priv->cookie, COOKIE_LEN) != 0) { 413 os_get_random(priv->cookie, COOKIE_LEN); 611 priv->cookie, COOKIE_LEN); 636 u8 cookie[COOKIE_LEN]; local 694 if (hexstr2bin(buf + 7, cookie, COOKIE_LEN) < 0) { [all …]
|
/hostap-latest/src/wps/ |
D | httpread.c | 53 void (*cb)(struct httpread *handle, void *cookie, 55 void *cookie; /* pass to callback */ member 149 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_TIMEOUT); in httpread_timeout_handler() 687 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_ERROR); in httpread_read_handler() 712 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_FILE_READY); in httpread_read_handler() 731 void (*cb)(struct httpread *handle, void *cookie, in httpread_create() argument 733 void *cookie, /* pass to callback */ in httpread_create() 745 h->cookie = cookie; in httpread_create()
|
D | httpread.h | 71 void (*cb)(struct httpread *handle, void *cookie, 73 void *cookie, /* pass to callback */
|
D | http_client.c | 44 static void http_client_got_response(struct httpread *handle, void *cookie, in http_client_got_response() argument 47 struct http_client *c = cookie; in http_client_got_response() 50 "e=%d", handle, cookie, e); in http_client_got_response()
|
D | http_server.c | 41 static void http_request_cb(struct httpread *handle, void *cookie, in http_request_cb() argument 44 struct http_request *req = cookie; in http_request_cb()
|
/hostap-latest/src/common/ |
D | wpa_ctrl.c | 68 char *cookie; member 454 ctrl->cookie = os_strdup(buf); in wpa_ctrl_open() 479 os_free(ctrl->cookie); in wpa_ctrl_close() 502 if (ctrl->cookie) { in wpa_ctrl_request() 504 _cmd_len = os_strlen(ctrl->cookie) + 1 + cmd_len; in wpa_ctrl_request() 510 os_strlcpy(pos, ctrl->cookie, _cmd_len); in wpa_ctrl_request() 511 pos += os_strlen(ctrl->cookie); in wpa_ctrl_request()
|
/hostap-latest/src/drivers/ |
D | driver_nl80211_event.c | 27 struct nlattr *ack, struct nlattr *cookie); 1384 struct nlattr *cookie, const u8 *frame, in mlme_event_mgmt_tx_status() argument 1393 if (cookie) in mlme_event_mgmt_tx_status() 1394 cookie_val = nla_get_u64(cookie); in mlme_event_mgmt_tx_status() 1401 cookie ? "" : "(N/A)", ack != NULL); in mlme_event_mgmt_tx_status() 1409 cookie); in mlme_event_mgmt_tx_status() 1418 if (!cookie) in mlme_event_mgmt_tx_status() 1648 struct nlattr *cookie, struct nlattr *sig, in mlme_event() argument 1752 mlme_event_mgmt_tx_status(bss, cookie, nla_data(frame), in mlme_event() 1844 u64 cookie; in mlme_event_remain_on_channel() local [all …]
|
D | driver_nl80211_scan.c | 1110 u64 *cookie = arg; in scan_cookie_handler() local 1123 *cookie = nla_get_u64( in scan_cookie_handler() 1146 u64 cookie = 0; in wpa_driver_nl80211_vendor_scan() local 1280 ret = send_and_recv_resp(drv, msg, scan_cookie_handler, &cookie); in wpa_driver_nl80211_vendor_scan() 1289 drv->vendor_scan_cookie = cookie; in wpa_driver_nl80211_vendor_scan() 1292 params->scan_cookie = cookie; in wpa_driver_nl80211_vendor_scan() 1296 ret, (long long unsigned int) cookie); in wpa_driver_nl80211_vendor_scan()
|
D | driver_zephyr.h | 294 int cookie);
|
D | driver_nl80211.c | 311 u64 *cookie = ext_arg->ext_data; in ack_handler_cookie() local 331 *cookie = nla_get_u64(tb[NLMSGERR_ATTR_COOKIE]); in ack_handler_cookie() 6198 u64 cookie = 0; in nl80211_tx_control_port() local 6220 ext_arg.ext_data = &cookie; in nl80211_tx_control_port() 6232 (long long unsigned int) cookie); in nl80211_tx_control_port() 6233 drv->eapol_tx_cookie = cookie; in nl80211_tx_control_port() 9079 u64 *cookie = arg; in cookie_handler() local 9083 *cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]); in cookie_handler() 9097 u64 cookie; in nl80211_send_frame_cmd() local 9120 cookie = 0; in nl80211_send_frame_cmd() [all …]
|
D | driver_wired.c | 74 u_int32_t cookie; member
|
/hostap-latest/tests/hwsim/ |
D | test_cfg80211.py | 58 def nl80211_frame_wait_cancel(dev, ifindex, cookie): argument 60 attrs += build_nl80211_attr('COOKIE', cookie)
|
/hostap-latest/wpaspy/ |
D | wpaspy.py | 57 self.cookie = reply 91 self.s.sendto(self.cookie + cmd, self.sockaddr)
|