ar6kap_common.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //------------------------------------------------------------------------------
  2. // <copyright file="ar6kap_common.h" company="Atheros">
  3. // Copyright (c) 2004-2007 Atheros Corporation. All rights reserved.
  4. //
  5. // This program is free software; you can redistribute it and/or modify
  6. // it under the terms of the GNU General Public License version 2 as
  7. // published by the Free Software Foundation;
  8. //
  9. // Software distributed under the License is distributed on an "AS
  10. // IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11. // implied. See the License for the specific language governing
  12. // rights and limitations under the License.
  13. //
  14. //
  15. //------------------------------------------------------------------------------
  16. //==============================================================================
  17. // This file contains the definitions of common AP mode data structures.
  18. //
  19. // Author(s): ="Atheros"
  20. //==============================================================================
  21. #ifndef _AR6KAP_COMMON_H_
  22. #define _AR6KAP_COMMON_H_
  23. /*
  24. * Used with AR6000_XIOCTL_AP_GET_STA_LIST
  25. */
  26. typedef struct {
  27. A_UINT8 mac[ATH_MAC_LEN];
  28. A_UINT8 aid;
  29. } station_t;
  30. typedef struct {
  31. station_t sta[AP_MAX_NUM_STA];
  32. } ap_get_sta_t;
  33. #endif /* _AR6KAP_COMMON_H_ */