Lines Matching refs:queue
1327 struct hostapd_tx_queue_params *queue; in hostapd_config_tx_queue() local
1350 queue = &tx_queue[num]; in hostapd_config_tx_queue()
1353 queue->aifs = atoi(val); in hostapd_config_tx_queue()
1354 if (queue->aifs < 0 || queue->aifs > 255) { in hostapd_config_tx_queue()
1356 queue->aifs); in hostapd_config_tx_queue()
1360 queue->cwmin = atoi(val); in hostapd_config_tx_queue()
1361 if (!valid_cw(queue->cwmin)) { in hostapd_config_tx_queue()
1363 queue->cwmin); in hostapd_config_tx_queue()
1367 queue->cwmax = atoi(val); in hostapd_config_tx_queue()
1368 if (!valid_cw(queue->cwmax)) { in hostapd_config_tx_queue()
1370 queue->cwmax); in hostapd_config_tx_queue()
1374 queue->burst = hostapd_config_read_int10(val); in hostapd_config_tx_queue()