Lines Matching full:beacon

180 			/* Process beacon frames also in kernel driver to  in libipw_rx_frame_mgmt()
831 * Make the structure we read from the beacon packet to have
1264 *beacon, in libipw_network_init()
1274 memcpy(network->bssid, beacon->header.addr3, ETH_ALEN); in libipw_network_init()
1275 network->capability = le16_to_cpu(beacon->capability); in libipw_network_init()
1277 network->time_stamp[0] = le32_to_cpu(beacon->time_stamp[0]); in libipw_network_init()
1278 network->time_stamp[1] = le32_to_cpu(beacon->time_stamp[1]); in libipw_network_init()
1279 network->beacon_interval = le16_to_cpu(beacon->beacon_interval); in libipw_network_init()
1280 /* Where to pull this? beacon->listen_interval; */ in libipw_network_init()
1299 if (libipw_parse_info_param((void *)beacon->variable, in libipw_network_init()
1300 stats->len - sizeof(*beacon), network)) in libipw_network_init()
1412 *beacon, struct libipw_rx_stats in libipw_process_probe_response()
1420 struct libipw_info_element *info_element = (void *)beacon->variable; in libipw_process_probe_response()
1426 beacon->header.addr3, in libipw_process_probe_response()
1427 (beacon->capability & cpu_to_le16(1 << 0xf)) ? '1' : '0', in libipw_process_probe_response()
1428 (beacon->capability & cpu_to_le16(1 << 0xe)) ? '1' : '0', in libipw_process_probe_response()
1429 (beacon->capability & cpu_to_le16(1 << 0xd)) ? '1' : '0', in libipw_process_probe_response()
1430 (beacon->capability & cpu_to_le16(1 << 0xc)) ? '1' : '0', in libipw_process_probe_response()
1431 (beacon->capability & cpu_to_le16(1 << 0xb)) ? '1' : '0', in libipw_process_probe_response()
1432 (beacon->capability & cpu_to_le16(1 << 0xa)) ? '1' : '0', in libipw_process_probe_response()
1433 (beacon->capability & cpu_to_le16(1 << 0x9)) ? '1' : '0', in libipw_process_probe_response()
1434 (beacon->capability & cpu_to_le16(1 << 0x8)) ? '1' : '0', in libipw_process_probe_response()
1435 (beacon->capability & cpu_to_le16(1 << 0x7)) ? '1' : '0', in libipw_process_probe_response()
1436 (beacon->capability & cpu_to_le16(1 << 0x6)) ? '1' : '0', in libipw_process_probe_response()
1437 (beacon->capability & cpu_to_le16(1 << 0x5)) ? '1' : '0', in libipw_process_probe_response()
1438 (beacon->capability & cpu_to_le16(1 << 0x4)) ? '1' : '0', in libipw_process_probe_response()
1439 (beacon->capability & cpu_to_le16(1 << 0x3)) ? '1' : '0', in libipw_process_probe_response()
1440 (beacon->capability & cpu_to_le16(1 << 0x2)) ? '1' : '0', in libipw_process_probe_response()
1441 (beacon->capability & cpu_to_le16(1 << 0x1)) ? '1' : '0', in libipw_process_probe_response()
1442 (beacon->capability & cpu_to_le16(1 << 0x0)) ? '1' : '0'); in libipw_process_probe_response()
1444 if (libipw_network_init(ieee, beacon, &network, stats)) { in libipw_process_probe_response()
1447 beacon->header.addr3, in libipw_process_probe_response()
1448 is_beacon(beacon->header.frame_ctl) ? in libipw_process_probe_response()
1449 "BEACON" : "PROBE RESPONSE"); in libipw_process_probe_response()
1475 * with this beacon's information */ in libipw_process_probe_response()
1495 is_beacon(beacon->header.frame_ctl) ? in libipw_process_probe_response()
1496 "BEACON" : "PROBE RESPONSE"); in libipw_process_probe_response()
1504 is_beacon(beacon->header.frame_ctl) ? in libipw_process_probe_response()
1505 "BEACON" : "PROBE RESPONSE"); in libipw_process_probe_response()
1511 if (is_beacon(beacon->header.frame_ctl)) { in libipw_process_probe_response()
1513 ieee->handle_beacon(dev, beacon, target); in libipw_process_probe_response()
1516 ieee->handle_probe_response(dev, beacon, target); in libipw_process_probe_response()
1564 LIBIPW_DEBUG_MGMT("received BEACON (%d)\n", in libipw_rx_mgt()
1567 LIBIPW_DEBUG_SCAN("Beacon\n"); in libipw_rx_mgt()