• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/wpa/src/drivers/

Lines Matching defs:custom

1244 				       char *custom, char *end)
1247 wpa_printf(MSG_DEBUG, "Custom wireless event: '%s'", custom);
1249 if (os_strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) {
1252 pos = os_strstr(custom, "addr=");
1272 } else if (strncmp(custom, "STA-TRAFFIC-STAT", 16) == 0) {
1275 key = custom;
1296 } else if (os_strncmp(custom, "PUSH-BUTTON.indication", 22) == 0) {
1302 } else if (os_strncmp(custom, "Manage.prob_req ", 16) == 0) {
1305 * binary data in the custom wireless event. The old way (using
1309 int len = atoi(custom + 16);
1310 if (len < 0 || MGMT_FRAM_TAG_SIZE + len > end - custom) {
1316 (u8 *) custom + MGMT_FRAM_TAG_SIZE, len);
1319 } else if (os_strncmp(custom, "Manage.assoc_req ", 17) == 0) {
1322 int len = atoi(custom + 17);
1323 if (len < 0 || MGMT_FRAM_TAG_SIZE + len > end - custom) {
1330 (u8 *) custom + MGMT_FRAM_TAG_SIZE, len);
1331 } else if (os_strncmp(custom, "Manage.auth ", 12) == 0) {
1333 int len = atoi(custom + 12);
1335 MGMT_FRAM_TAG_SIZE + len > end - custom) {
1341 (u8 *) custom + MGMT_FRAM_TAG_SIZE, len);
1344 } else if (os_strncmp(custom, "Manage.action ", 14) == 0) {
1347 int len = atoi(custom + 14);
1348 if (len < 0 || MGMT_FRAM_TAG_SIZE + len > end - custom) {
1355 (u8 *) custom + MGMT_FRAM_TAG_SIZE, len);
1395 * Handle size of data problem. WEXT only allows data of 256 bytes for custom
1494 char *pos, *end, *custom, *buf;
1508 custom = pos + IW_EV_POINT_LEN;
1520 custom += IW_EV_POINT_OFF;
1537 if (iwe->u.data.length > end - custom)
1542 os_memcpy(buf, custom, iwe->u.data.length);