aboutsummaryrefslogtreecommitdiffstats
path: root/wpa_supplicant/gas_query.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove the GPL notification from files contributed by AtherosJouni Malinen2012-02-111-8/+2
| | | | | | | Remove the GPL notification text from files that were initially contributed by Atheros Communications or Qualcomm Atheros. Signed-hostap: Jouni Malinen <j@w1.fi>
* Add no_cck parameter for send_action() driver_opsJouni Malinen2011-10-291-1/+1
| | | | | | | | | This can be used to apply the no-CCK rule conditionally depending on which frame is being sent. The no-CCK rule applies only for P2P management frames while SA Query and FT use cases do not have similar restrictions. Signed-hostap: Jouni Malinen <j@w1.fi>
* Convert signed bit field to unsigned oneJouni Malinen2011-10-161-2/+2
| | | | It's cleaner to use unsigned bit field with one bit values.
* GAS: Use off-channel operations for requestsJouni Malinen2011-09-291-4/+13
| | | | | This separates off-channel Action frame TX/RX from P2P into a generic implementation that can now be used both for P2P and GAS needs.
* GAS: Add a generic GAS query moduleJouni Malinen2011-09-291-0/+472
This implements GAS request mechanism that is aimed at being used to replace use case specific GAS/ANQP implementations in the future. Compared to the earlier implementation in P2P SD, this implementation includes support for multiple concurrent requests and more thorough validation of frames against the pending query data. GAS header processing, including comeback and reassembly, are handled within gas_query.c and the users of this module will only need to provide the Query Request and process the (possibly reassembled) Query Response.