ap.h 622 B

12345678910111213141516171819202122
  1. /*
  2. * WPA Supplicant - Basic AP mode support routines
  3. * Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi>
  4. * Copyright (c) 2009, Atheros Communications
  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 AP_H
  16. #define AP_H
  17. void wpa_supplicant_create_ap(struct wpa_supplicant *wpa_s,
  18. struct wpa_ssid *ssid);
  19. #endif /* AP_H */