您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

wpas_glue.h 733B

1234567891011121314151617181920212223
  1. /*
  2. * WPA Supplicant - Glue code to setup EAPOL and RSN modules
  3. * Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi>
  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. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #ifndef WPAS_GLUE_H
  15. #define WPAS_GLUE_H
  16. int wpa_supplicant_init_eapol(struct wpa_supplicant *wpa_s);
  17. int wpa_supplicant_init_wpa(struct wpa_supplicant *wpa_s);
  18. void wpa_supplicant_rsn_supp_set_config(struct wpa_supplicant *wpa_s,
  19. struct wpa_ssid *ssid);
  20. #endif /* WPAS_GLUE_H */