offchannel.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * wpa_supplicant - Off-channel Action frame TX/RX
  3. * Copyright (c) 2009-2010, Atheros Communications
  4. * Copyright (c) 2011, Qualcomm Atheros
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Alternatively, this software may be distributed under the terms of BSD
  11. * license.
  12. *
  13. * See README and COPYING for more details.
  14. */
  15. #ifndef OFFCHANNEL_H
  16. #define OFFCHANNEL_H
  17. int offchannel_send_action(struct wpa_supplicant *wpa_s, unsigned int freq,
  18. const u8 *dst, const u8 *src, const u8 *bssid,
  19. const u8 *buf, size_t len, unsigned int wait_time,
  20. void (*tx_cb)(struct wpa_supplicant *wpa_s,
  21. unsigned int freq, const u8 *dst,
  22. const u8 *src, const u8 *bssid,
  23. const u8 *data, size_t data_len,
  24. enum offchannel_send_action_result
  25. result));
  26. void offchannel_send_action_done(struct wpa_supplicant *wpa_s);
  27. void offchannel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  28. unsigned int freq, unsigned int duration);
  29. void offchannel_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  30. unsigned int freq);
  31. void offchannel_deinit(struct wpa_supplicant *wpa_s);
  32. void offchannel_send_action_tx_status(
  33. struct wpa_supplicant *wpa_s, const u8 *dst, const u8 *data,
  34. size_t data_len, enum offchannel_send_action_result result);
  35. #endif /* OFFCHANNEL_H */